-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopicSubtopics.ts
70 lines (62 loc) · 2.88 KB
/
topicSubtopics.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
export const topicSubtopics: any = {
"English": {
"About Myself":{
1: ["Name and Nickname", "Country of Origin"],
2: ["Place and Type of Residence", "Rent Costs"],
3: ["Age", "Month of Birth and Birthday Celebrations"],
4: ["Age of Parents", "Siblings"],
5: ["Hobbies", "Soccer Preferences"],
6: ["Occupation and Job Satisfaction", "Spoken Languages"],
7: ["Time with Family", "Frequency of Family Visits"],
8: ["Current Time", "Evening Plans and Bedtime"]
}
},
"Italian": {
"About Myself": {
1: ["Nome e soprannome", "Paese di origine"],
2: ["Luogo e tipo di residenza", "Costi di affitto"],
3: ["Età", "Mese di nascita e festeggiamenti del compleanno"],
4: ["Età dei genitori", "Fratelli"],
5: ["Hobby", "Preferenze Calcio"],
6: ["Occupazione e soddisfazione lavorativa", "Lingue parlate"],
7: ["Tempo con la famiglia", "Frequenza delle visite familiari"],
8: ["Ora attuale", "Programmi serali e ora di andare a dormire"]
}
},
"German": {
"About Myself": {
1: ["Name und Spitzname", "Herkunftsland"],
2: ["Ort und Art des Wohnsitzes", "Mietkosten"],
3: ["Alter", "Geburtsmonat und Geburtstagsfeiern"],
4: ["Alter der Eltern", "Geschwister"],
5: ["Hobbys", "Fußballpräferenzen"],
6: ["Beruf und Arbeitszufriedenheit", "Gesprochene Sprachen"],
7: ["Zeit mit der Familie", "Häufigkeit der Familienbesuche"],
8: ["Aktuelle Zeit", "Abendpläne und Schlafenszeit"]
}
},
"Spanish": {
"About Myself": {
1: ["Nombre y apodo", "País de origen"],
2: ["Lugar y tipo de residencia", "Costos de alquiler"],
3: ["Edad", "Mes de nacimiento y celebraciones de cumpleaños"],
4: ["Edad de los padres", "Hermanos"],
5: ["Aficiones", "Preferencias de fútbol"],
6: ["Ocupación y satisfacción laboral", "Idiomas hablados"],
7: ["Tiempo con la familia", "Frecuencia de visitas familiares"],
8: ["Hora actual", "Planes nocturnos y hora de dormir"]
}
},
"French": {
"About Myself": {
1 : ["Nom et surnom", "Pays d'origine"],
2 : ["Lieu et type de résidence", "Frais de loyer"],
3 : ["Âge", "Mois de naissance et célébrations d'anniversaire"],
4 : ["Âge des parents", "Frères et sœurs"],
5 : ["Loisirs", "Préférences de football"],
6 : ["Profession et satisfaction au travail", "Langues parlées"],
7 : ["Temps passé en famille", "Fréquence des visites familiales"],
8 : ["Heure actuelle", "Projets de soirée et heure du coucher"]
}
}
};