-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui_langs.js
More file actions
2292 lines (2258 loc) · 101 KB
/
ui_langs.js
File metadata and controls
2292 lines (2258 loc) · 101 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const uiTranslations = {
"English": {
appTitle: "Indigenous Language Learning",
welcome: "Welcome to the Indigenous Language Learning App",
welcomeMessage: "Discover the Beauty of Indigenous Languages",
welcomeSubtext: "Embark on a journey to preserve and learn languages that connect us to our heritage",
selectLanguage: "Select a language to learn:",
start: "Start Learning",
lesson: "Lesson",
exercise: "Exercise",
check: "Check Answer",
correct: "Correct!",
incorrect: "Try again",
next: "Next",
back: "Back",
settings: "Settings",
interfaceLanguage: "Interface Language:",
about: "About",
progress: "Progress",
vocabulary: "Vocabulary",
phrases: "Common Phrases",
grammar: "Grammar",
quiz: "Quiz",
home: "Home",
matching: "Matching",
multipleChoice: "Multiple Choice",
completed: "Completed",
pronunciation: "Pronunciation",
cultural: "Cultural Notes",
flashcards: "Flashcards",
speakingPractice: "Speaking Practice",
listeningPractice: "Listening Practice",
dictionary: "Dictionary",
favoriteWords: "Favorite Words",
communityForum: "Community Forum",
communityForumHero: "Join Our Language Community",
communityForumSubtext: "Connect with fellow learners, share resources, and discuss indigenous languages",
profile: "Profile",
achievements: "Achievements",
review: "Review",
searchPlaceholder: "Search words or phrases...",
lessonTitle: "Language Lesson",
topicViewTitle: "Topic - Indigenous Language Learning",
loadingTopic: "Loading topic...",
orSignInWith: "Or sign in with:",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "Sign In",
signInTitle: "Sign In - Indigenous Language Learning",
register: "Register",
registerTitle: "Register - Indigenous Language Learning",
email: "Email",
password: "Password",
confirmPassword: "Confirm Password",
username: "Username",
signInButton: "Sign In",
registerButton: "Register",
noAccount: "Don't have an account?",
haveAccount: "Already have an account?",
profile: "Profile",
logout: "Logout",
// Forum
forum: "Forum",
forumTitle: "Community Forum - Indigenous Language Learning",
communityForum: "Community Forum",
newTopic: "New Topic",
categories: "Categories",
generalDiscussion: "General Discussion",
generalDiscussionDesc: "Discuss anything related to indigenous languages",
learningTips: "Learning Tips",
learningTipsDesc: "Share and discover language learning strategies",
resources: "Resources",
resourcesDesc: "Share books, websites, and other learning materials",
events: "Events",
eventsDesc: "Upcoming language events and gatherings",
recentTopics: "Recent Topics",
noTopicsYet: "No topics yet. Be the first to create one!",
createNewTopic: "Create New Topic",
topicTitle: "Title",
category: "Category",
content: "Content",
createTopic: "Create Topic",
backToForum: "← Back to Forum",
replies: "Replies",
noRepliesYet: "No replies yet. Be the first to reply!",
postReply: "Post a Reply",
submitReply: "Submit Reply",
signInToReply: "Please sign in to post a reply."
},
"French": {
appTitle: "Apprentissage des Langues Autochtones",
welcome: "Bienvenue dans l'application d'apprentissage des langues autochtones",
welcomeMessage: "Découvrez la beauté des langues autochtones",
welcomeSubtext: "Embarquez pour un voyage pour préserver et apprendre les langues qui nous relient à notre patrimoine",
selectLanguage: "Sélectionnez une langue à apprendre :",
start: "Commencer l'apprentissage",
lesson: "Leçon",
exercise: "Exercice",
check: "Vérifier la réponse",
correct: "Correct !",
incorrect: "Essayez encore",
next: "Suivant",
back: "Retour",
settings: "Paramètres",
interfaceLanguage: "Langue de l'interface :",
about: "À propos",
progress: "Progrès",
vocabulary: "Vocabulaire",
phrases: "Phrases courantes",
grammar: "Grammaire",
quiz: "Quiz",
home: "Accueil",
matching: "Association",
multipleChoice: "Choix multiple",
completed: "Terminé",
pronunciation: "Prononciation",
cultural: "Notes culturelles",
flashcards: "Cartes mémoire",
speakingPractice: "Pratique orale",
listeningPractice: "Pratique d'écoute",
dictionary: "Dictionnaire",
favoriteWords: "Mots favoris",
communityForum: "Forum communautaire",
communityForumHero: "Rejoignez notre communauté linguistique",
communityForumSubtext: "Connectez-vous avec d'autres apprenants, partagez des ressources et discutez des langues autochtones",
profile: "Profil",
achievements: "Réalisations",
review: "Révision",
searchPlaceholder: "Rechercher des mots ou des phrases...",
lessonTitle: "Leçon de langue",
topicViewTitle: "Sujet - Apprentissage des Langues Autochtones",
loadingTopic: "Chargement du sujet...",
orSignInWith: "Ou connectez-vous avec :",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "Se connecter",
signInTitle: "Se connecter - Apprentissage des Langues Autochtones",
register: "S'inscrire",
registerTitle: "S'inscrire - Apprentissage des Langues Autochtones",
email: "Email",
password: "Mot de passe",
confirmPassword: "Confirmer le mot de passe",
username: "Nom d'utilisateur",
signInButton: "Se connecter",
registerButton: "S'inscrire",
noAccount: "Pas encore de compte ?",
haveAccount: "Déjà un compte ?",
profile: "Profil",
logout: "Se déconnecter",
// Forum
forum: "Forum",
forumTitle: "Forum communautaire - Apprentissage des Langues Autochtones",
communityForum: "Forum communautaire",
newTopic: "Nouveau sujet",
categories: "Catégories",
generalDiscussion: "Discussions générales",
generalDiscussionDesc: "Discutez de tout ce qui concerne les langues autochtones",
learningTips: "Conseils d'apprentissage",
learningTipsDesc: "Partagez et découvrez des stratégies d'apprentissage de la langue",
resources: "Ressources",
resourcesDesc: "Partagez des livres, des sites Web et d'autres matériaux d'apprentissage",
events: "Événements",
eventsDesc: "Événements à venir et rassemblements linguistiques",
recentTopics: "Sujets récents",
noTopicsYet: "Aucun sujet pour le moment. Soyez le premier à en créer un !",
createNewTopic: "Créer un nouveau sujet",
topicTitle: "Titre",
category: "Catégorie",
content: "Contenu",
createTopic: "Créer un sujet",
backToForum: "← Retour au forum",
replies: "Réponses",
noRepliesYet: "Aucune réponse pour le moment. Soyez le premier à répondre !",
postReply: "Poster une réponse",
submitReply: "Soumettre la réponse",
signInToReply: "Veuillez vous connecter pour poster une réponse."
},
"Ukrainian": {
appTitle: "Вивчення корінних мов",
welcome: "Ласкаво просимо до додатку вивчення корінних мов",
welcomeMessage: "Відкрийте для себе красу корінних мов",
welcomeSubtext: "Вирушайте в подорож, щоб зберегти та вивчити мови, які з'єднують нас з нашою спадщиною",
selectLanguage: "Виберіть мову для вивчення:",
start: "Почати навчання",
lesson: "Урок",
exercise: "Вправа",
check: "Перевірити відповідь",
correct: "Правильно!",
incorrect: "Спробуйте ще раз",
next: "Далі",
back: "Назад",
settings: "Налаштування",
interfaceLanguage: "Мова інтерфейсу:",
about: "Про додаток",
progress: "Прогрес",
vocabulary: "Словник",
phrases: "Поширені фрази",
grammar: "Граматика",
quiz: "Тест",
home: "Головна",
matching: "Відповідність",
multipleChoice: "Вибір з варіантів",
completed: "Завершено",
pronunciation: "Вимова",
cultural: "Культурні примітки",
flashcards: "Картки для запам'ятовування",
speakingPractice: "Практика розмови",
listeningPractice: "Практика слухання",
dictionary: "Словник",
favoriteWords: "Улюблені слова",
communityForum: "Форум спільноти",
communityForumHero: "Приєднуйтесь до нашої мовної спільноти",
communityForumSubtext: "Спілкуйтеся з іншими учнями, діліться ресурсами та обговорюйте корінні мови",
profile: "Профіль",
achievements: "Досягнення",
review: "Перегляд",
searchPlaceholder: "Шукати слова або фрази...",
lessonTitle: "Урок мови",
topicViewTitle: "Тема - Вивчення корінних мов",
loadingTopic: "Завантаження теми...",
orSignInWith: "Або увійдіть за допомогою:",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "Увійти",
signInTitle: "Увійти - Вивчення корінних мов",
register: "Зареєструватися",
registerTitle: "Зареєструватися - Вивчення корінних мов",
email: "Електронна пошта",
password: "Пароль",
confirmPassword: "Підтвердіть пароль",
username: "Ім'я користувача",
signInButton: "Увійти",
registerButton: "Зареєструватися",
noAccount: "Не маєте облікового запису?",
haveAccount: "Вже маєте обліковий запис?",
profile: "Профіль",
logout: "Вийти",
// Forum
forum: "Форум",
forumTitle: "Форум спільноти - Вивчення корінних мов",
communityForum: "Форум спільноти",
newTopic: "Нова тема",
categories: "Категорії",
generalDiscussion: "Загальна дискусія",
generalDiscussionDesc: "Обговорюйте все, що стосується корінних мов",
learningTips: "Поради з навчання",
learningTipsDesc: "Поділіться та дізнайтеся про стратегії навчання мови",
resources: "Ресурси",
resourcesDesc: "Поділіться книгами, веб-сайтами та іншими навчальними матеріалами",
events: "Події",
eventsDesc: "Майбутні події та зустрічі з мовою",
recentTopics: "Недавні теми",
noTopicsYet: "Поки що немає тем. Будьте першим, хто створить тему!",
createNewTopic: "Створити нову тему",
topicTitle: "Заголовок",
category: "Категорія",
content: "Вміст",
createTopic: "Створити тему",
backToForum: "← Повернутися до форуму",
replies: "Відповіді",
noRepliesYet: "Поки що немає відповідей. Будьте першим, хто відповість!",
postReply: "Опублікувати відповідь",
submitReply: "Надіслати відповідь",
signInToReply: "Будь ласка, увійдіть, щоб опублікувати відповідь."
},
"Spanish": {
appTitle: "Aprendizaje de Lenguas Indígenas",
welcome: "Bienvenido a la aplicación de aprendizaje de lenguas indígenas",
welcomeMessage: "Descubre la belleza de las lenguas indígenas",
welcomeSubtext: "Embárcate en un viaje para preservar y aprender idiomas que nos conectan con nuestro patrimonio",
selectLanguage: "Selecciona un idioma para aprender:",
start: "Comenzar a aprender",
lesson: "Lección",
exercise: "Ejercicio",
check: "Verificar respuesta",
correct: "¡Correcto!",
incorrect: "Inténtalo de nuevo",
next: "Siguiente",
back: "Atrás",
settings: "Configuración",
interfaceLanguage: "Idioma de la interfaz:",
about: "Acerca de",
progress: "Progreso",
vocabulary: "Vocabulario",
phrases: "Frases comunes",
grammar: "Gramática",
quiz: "Cuestionario",
home: "Inicio",
matching: "Emparejamiento",
multipleChoice: "Opción múltiple",
completed: "Completado",
pronunciation: "Pronunciación",
cultural: "Notas culturales",
flashcards: "Tarjetas de memoria",
speakingPractice: "Práctica de habla",
listeningPractice: "Práctica de escucha",
dictionary: "Diccionario",
favoriteWords: "Palabras favoritas",
communityForum: "Foro comunitario",
communityForumHero: "Únete a nuestra comunidad lingüística",
communityForumSubtext: "Conéctate con otros estudiantes, comparte recursos y discute sobre lenguas indígenas",
profile: "Perfil",
achievements: "Logros",
review: "Revisión",
searchPlaceholder: "Buscar palabras o frases...",
lessonTitle: "Lección de idioma",
topicViewTitle: "Tema - Aprendizaje de Lenguas Indígenas",
loadingTopic: "Cargando tema...",
orSignInWith: "O inicia sesión con:",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "Iniciar sesión",
signInTitle: "Iniciar sesión - Aprendizaje de Lenguas Indígenas",
register: "Registrarse",
registerTitle: "Registrarse - Aprendizaje de Lenguas Indígenas",
email: "Correo electrónico",
password: "Contraseña",
confirmPassword: "Confirmar contraseña",
username: "Nombre de usuario",
signInButton: "Iniciar sesión",
registerButton: "Registrarse",
noAccount: "¿No tienes una cuenta?",
haveAccount: "¿Ya tienes una cuenta?",
profile: "Perfil",
logout: "Cerrar sesión",
// Forum
forum: "Foro",
forumTitle: "Foro comunitario - Aprendizaje de Lenguas Indígenas",
communityForum: "Foro comunitario",
newTopic: "Nuevo tema",
categories: "Categorías",
generalDiscussion: "Discusión general",
generalDiscussionDesc: "Discute cualquier tema relacionado con las lenguas indígenas",
learningTips: "Consejos de aprendizaje",
learningTipsDesc: "Comparte y descubre estrategias de aprendizaje de idiomas",
resources: "Recursos",
resourcesDesc: "Comparte libros, sitios web y otros materiales de aprendizaje",
events: "Eventos",
eventsDesc: "Próximos eventos y reuniones lingüísticas",
recentTopics: "Temas recientes",
noTopicsYet: "Aún no hay temas. ¡Sé el primero en crear uno!",
createNewTopic: "Crear nuevo tema",
topicTitle: "Título",
category: "Categoría",
content: "Contenido",
createTopic: "Crear tema",
backToForum: "← Volver al foro",
replies: "Respuestas",
noRepliesYet: "Aún no hay respuestas. ¡Sé el primero en responder!",
postReply: "Publicar una respuesta",
submitReply: "Enviar respuesta",
signInToReply: "Por favor inicia sesión para publicar una respuesta."
},
"German": {
appTitle: "Lernen indigener Sprachen",
welcome: "Willkommen bei der App zum Erlernen indigener Sprachen",
welcomeMessage: "Entdecken Sie die Schönheit indigener Sprachen",
welcomeSubtext: "Begeben Sie sich auf eine Reise, um Sprachen zu bewahren und zu erlernen, die uns mit unserem Erbe verbinden",
selectLanguage: "Wählen Sie eine Sprache zum Lernen:",
start: "Mit dem Lernen beginnen",
lesson: "Lektion",
exercise: "Übung",
check: "Antwort überprüfen",
correct: "Richtig!",
incorrect: "Versuchen Sie es erneut",
next: "Weiter",
back: "Zurück",
settings: "Einstellungen",
interfaceLanguage: "Oberflächensprache:",
about: "Über",
progress: "Fortschritt",
vocabulary: "Vokabular",
phrases: "Häufige Redewendungen",
grammar: "Grammatik",
quiz: "Quiz",
home: "Startseite",
matching: "Zuordnung",
multipleChoice: "Multiple Choice",
completed: "Abgeschlossen",
pronunciation: "Aussprache",
cultural: "Kulturelle Hinweise",
flashcards: "Karteikarten",
speakingPractice: "Sprechübung",
listeningPractice: "Hörübung",
dictionary: "Wörterbuch",
favoriteWords: "Lieblingswörter",
communityForum: "Community-Forum",
communityForumHero: "Treten Sie unserer Sprachgemeinschaft bei",
communityForumSubtext: "Verbinden Sie sich mit anderen Lernenden, teilen Sie Ressourcen und diskutieren Sie über indigene Sprachen",
profile: "Profil",
achievements: "Erfolge",
review: "Überprüfung",
searchPlaceholder: "Wörter oder Phrasen suchen...",
lessonTitle: "Sprachlektion",
topicViewTitle: "Thema - Lernen indigener Sprachen",
loadingTopic: "Thema wird geladen...",
orSignInWith: "Oder melden Sie sich an mit:",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "Anmelden",
signInTitle: "Anmelden - Lernen indigener Sprachen",
register: "Registrieren",
registerTitle: "Registrieren - Lernen indigener Sprachen",
email: "E-Mail",
password: "Passwort",
confirmPassword: "Passwort bestätigen",
username: "Benutzername",
signInButton: "Anmelden",
registerButton: "Registrieren",
noAccount: "Noch kein Konto?",
haveAccount: "Haben Sie bereits ein Konto?",
profile: "Profil",
logout: "Abmelden",
// Forum
forum: "Forum",
forumTitle: "Community-Forum - Lernen indigener Sprachen",
communityForum: "Community-Forum",
newTopic: "Neues Thema",
categories: "Kategorien",
generalDiscussion: "Allgemeine Diskussion",
generalDiscussionDesc: "Diskutieren Sie alles, was mit indigenen Sprachen zu tun hat",
learningTips: "Lerntipps",
learningTipsDesc: "Teilen und entdecken Sie Strategien zum Sprachenlernen",
resources: "Ressourcen",
resourcesDesc: "Teilen Sie Bücher, Websites und andere Lernmaterialien",
events: "Veranstaltungen",
eventsDesc: "Kommende Sprachveranstaltungen und Treffen",
recentTopics: "Aktuelle Themen",
noTopicsYet: "Noch keine Themen. Seien Sie der Erste, der eines erstellt!",
createNewTopic: "Neues Thema erstellen",
topicTitle: "Titel",
category: "Kategorie",
content: "Inhalt",
createTopic: "Thema erstellen",
backToForum: "← Zurück zum Forum",
replies: "Antworten",
noRepliesYet: "Noch keine Antworten. Seien Sie der Erste, der antwortet!",
postReply: "Antwort veröffentlichen",
submitReply: "Antwort absenden",
signInToReply: "Bitte melden Sie sich an, um eine Antwort zu veröffentlichen."
},
// Japanese translations
"Japanese": {
appTitle: "先住民族言語学習",
welcome: "先住民族言語学習アプリへようこそ",
welcomeMessage: "先住民族言語の美しさを発見しよう",
welcomeSubtext: "私たちの遺産とつながる言語を保存し、学ぶ旅に出かけましょう",
selectLanguage: "学習する言語を選択してください:",
start: "学習を始める",
lesson: "レッスン",
exercise: "練習",
check: "答えを確認",
correct: "正解!",
incorrect: "もう一度試してください",
next: "次へ",
back: "戻る",
settings: "設定",
interfaceLanguage: "インターフェース言語:",
about: "について",
progress: "進捗",
vocabulary: "語彙",
phrases: "一般的なフレーズ",
grammar: "文法",
quiz: "クイズ",
home: "ホーム",
matching: "マッチング",
multipleChoice: "多肢選択",
completed: "完了",
pronunciation: "発音",
cultural: "文化的メモ",
flashcards: "フラッシュカード",
speakingPractice: "会話練習",
listeningPractice: "リスニング練習",
dictionary: "辞書",
favoriteWords: "お気に入りの単語",
communityForum: "コミュニティフォーラム",
communityForumHero: "言語コミュニティに参加しよう",
communityForumSubtext: "他の学習者とつながり、リソースを共有し、先住民族言語について議論しましょう",
profile: "プロフィール",
achievements: "実績",
review: "レビュー",
searchPlaceholder: "単語やフレーズを検索...",
lessonTitle: "言語レッスン",
topicViewTitle: "トピック - 先住民族言語学習",
loadingTopic: "トピックを読み込んでいます...",
orSignInWith: "または次でサインイン:",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "サインイン",
signInTitle: "サインイン - 先住民族言語学習",
register: "登録",
registerTitle: "登録 - 先住民族言語学習",
email: "メールアドレス",
password: "パスワード",
confirmPassword: "パスワードを確認",
username: "ユーザー名",
signInButton: "サインイン",
registerButton: "登録",
noAccount: "アカウントをお持ちでないですか?",
haveAccount: "すでにアカウントをお持ちですか?",
profile: "プロフィール",
logout: "ログアウト",
// Forum
forum: "フォーラム",
forumTitle: "コミュニティフォーラム - 先住民族言語学習",
communityForum: "コミュニティフォーラム",
newTopic: "新しいトピック",
categories: "カテゴリー",
generalDiscussion: "一般的な議論",
generalDiscussionDesc: "先住民族言語に関連するあらゆることについて議論する",
learningTips: "学習のヒント",
learningTipsDesc: "言語学習戦略を共有し発見する",
resources: "リソース",
resourcesDesc: "書籍、ウェブサイト、その他の学習教材を共有する",
events: "イベント",
eventsDesc: "今後の言語イベントや集まり",
recentTopics: "最近のトピック",
noTopicsYet: "まだトピックがありません。最初に作成しましょう!",
createNewTopic: "新しいトピックを作成",
topicTitle: "タイトル",
category: "カテゴリー",
content: "内容",
createTopic: "トピックを作成",
backToForum: "← フォーラムに戻る",
replies: "返信",
noRepliesYet: "まだ返信がありません。最初に返信しましょう!",
postReply: "返信を投稿",
submitReply: "返信を送信",
signInToReply: "返信を投稿するにはサインインしてください。"
},
"Chinese": {
appTitle: "原住民语言学习",
welcome: "欢迎使用原住民语言学习应用",
welcomeMessage: "探索原住民语言的美丽",
welcomeSubtext: "踏上保护和学习连接我们与传统的语言之旅",
selectLanguage: "选择要学习的语言:",
start: "开始学习",
lesson: "课程",
exercise: "练习",
check: "检查答案",
correct: "正确!",
incorrect: "再试一次",
next: "下一个",
back: "返回",
settings: "设置",
interfaceLanguage: "界面语言:",
about: "关于",
progress: "进度",
vocabulary: "词汇",
phrases: "常用短语",
grammar: "语法",
quiz: "测验",
home: "首页",
matching: "匹配",
multipleChoice: "多项选择",
completed: "已完成",
pronunciation: "发音",
cultural: "文化笔记",
flashcards: "抽认卡",
speakingPractice: "口语练习",
listeningPractice: "听力练习",
dictionary: "词典",
favoriteWords: "收藏词汇",
communityForum: "社区论坛",
communityForumHero: "加入我们的语言社区",
communityForumSubtext: "与其他学习者联系,分享资源,讨论原住民语言",
profile: "个人资料",
achievements: "成就",
review: "复习",
searchPlaceholder: "搜索单词或短语...",
lessonTitle: "语言课程",
topicViewTitle: "主题 - 原住民语言学习",
loadingTopic: "正在加载主题...",
orSignInWith: "或使用以下方式登录:",
signInWithGoogle: "谷歌",
signInWithDiscord: "Discord",
signInWithFacebook: "脸书",
// Authentication
signIn: "登录",
signInTitle: "登录 - 原住民语言学习",
register: "注册",
registerTitle: "注册 - 原住民语言学习",
email: "电子邮件",
password: "密码",
confirmPassword: "确认密码",
username: "用户名",
signInButton: "登录",
registerButton: "注册",
noAccount: "还没有账号?",
haveAccount: "已有账号?",
profile: "个人资料",
logout: "退出登录",
// Forum
forum: "论坛",
forumTitle: "社区论坛 - 原住民语言学习",
communityForum: "社区论坛",
newTopic: "新主题",
categories: "分类",
generalDiscussion: "一般讨论",
generalDiscussionDesc: "讨论与原住民语言相关的任何内容",
learningTips: "学习技巧",
learningTipsDesc: "分享和发现语言学习策略",
resources: "资源",
resourcesDesc: "分享书籍、网站和其他学习材料",
events: "活动",
eventsDesc: "即将举行的语言活动和聚会",
recentTopics: "最近的主题",
noTopicsYet: "暂无主题。成为第一个创建主题的人!",
createNewTopic: "创建新主题",
topicTitle: "标题",
category: "分类",
content: "内容",
createTopic: "创建主题",
backToForum: "← 返回论坛",
replies: "回复",
noRepliesYet: "暂无回复。成为第一个回复的人!",
postReply: "发表回复",
submitReply: "提交回复",
signInToReply: "请登录后发表回复。"
},
// Mongolian translations
"Mongolian": {
appTitle: "Уугуул хэл сурах",
welcome: "Уугуул хэл сурах аппликейшнд тавтай морил",
welcomeMessage: "Уугуул хэлний гоо сайхныг нээ",
welcomeSubtext: "Бидний өвийг холбосон хэлийг хадгалж, сурах аялалд гарцгаая",
selectLanguage: "Сурах хэлээ сонгоно уу:",
start: "Суралцаж эхлэх",
lesson: "Хичээл",
exercise: "Дасгал",
check: "Хариултыг шалгах",
correct: "Зөв!",
incorrect: "Дахин оролдоно уу",
next: "Дараах",
back: "Буцах",
settings: "Тохиргоо",
interfaceLanguage: "Интерфейсийн хэл:",
about: "Тухай",
progress: "Ахиц",
vocabulary: "Үгсийн сан",
phrases: "Түгээмэл хэллэгүүд",
grammar: "Хэл зүй",
quiz: "Асуулт",
home: "Нүүр хуудас",
matching: "Тохируулах",
multipleChoice: "Олон сонголт",
completed: "Дууссан",
pronunciation: "Дуудлага",
cultural: "Соёлын тэмдэглэл",
flashcards: "Флаш карт",
speakingPractice: "Ярих дадлага",
listeningPractice: "Сонсох дадлага",
dictionary: "Толь бичиг",
favoriteWords: "Дуртай үгс",
communityForum: "Нийгэмлэгийн форум",
communityForumHero: "Бидний хэлний нийгэмлэгт нэгдээрэй",
communityForumSubtext: "Бусад суралцагчидтай холбогдож, нөөцөө хуваалцаж, уугуул хэлний талаар ярилцаарай",
profile: "Профайл",
achievements: "Амжилтууд",
review: "Дүгнэлт",
searchPlaceholder: "Үг эсвэл хэллэг хайх...",
lessonTitle: "Хэлний хичээл",
topicViewTitle: "Сэдэв - Уугуул хэл сурах",
loadingTopic: "Сэдэв ачаалж байна...",
orSignInWith: "Эсвэл дараахаар нэвтрэх:",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "Нэвтрэх",
signInTitle: "Нэвтрэх - Уугуул хэл сурах",
register: "Бүртгүүлэх",
registerTitle: "Бүртгүүлэх - Уугуул хэл сурах",
email: "Имэйл",
password: "Нууц үг",
confirmPassword: "Нууц үгээ баталгаажуулах",
username: "Хэрэглэгчийн нэр",
signInButton: "Нэвтрэх",
registerButton: "Бүртгүүлэх",
noAccount: "Бүртгэл байхгүй юу?",
haveAccount: "Аль хэдийн бүртгэлтэй юу?",
profile: "Профайл",
logout: "Гарах",
// Forum
forum: "Форум",
forumTitle: "Нийгэмлэгийн форум - Уугуул хэл сурах",
communityForum: "Нийгэмлэгийн форум",
newTopic: "Шинэ сэдэв",
categories: "Ангиллууд",
generalDiscussion: "Ерөнхий хэлэлцүүлэг",
generalDiscussionDesc: "Уугуул хэлтэй холбоотой аливаа зүйлийг хэлэлцэх",
learningTips: "Суралцах зөвлөмжүүд",
learningTipsDesc: "Хэл сурах стратегиудыг хуваалцаж, нээх",
resources: "Нөөц",
resourcesDesc: "Ном, вэбсайт болон бусад сургалтын материалуудыг хуваалцах",
events: "Үйл явдлууд",
eventsDesc: "Ирээдүйн хэлний үйл явдлууд болон цугларалтууд",
recentTopics: "Сүүлийн үеийн сэдвүүд",
noTopicsYet: "Одоогоор сэдэв байхгүй байна. Анхны сэдэв үүсгэгч болоорой!",
createNewTopic: "Шинэ сэдэв үүсгэх",
topicTitle: "Гарчиг",
category: "Ангилал",
content: "Агуулга",
createTopic: "Сэдэв үүсгэх",
backToForum: "← Форум руу буцах",
replies: "Хариултууд",
noRepliesYet: "Одоогоор хариулт байхгүй байна. Анхны хариулт өгөгч болоорой!",
postReply: "Хариулт нийтлэх",
submitReply: "Хариулт илгээх",
signInToReply: "Хариулт нийтлэхийн тулд нэвтэрнэ үү."
},
// Korean translations
"Korean": {
appTitle: "원주민 언어 학습",
welcome: "원주민 언어 학습 앱에 오신 것을 환영합니다",
welcomeMessage: "원주민 언어의 아름다움을 발견하세요",
welcomeSubtext: "우리의 유산과 연결되는 언어를 보존하고 배우는 여정을 시작하세요",
selectLanguage: "학습할 언어 선택:",
start: "학습 시작",
lesson: "수업",
exercise: "연습",
check: "답변 확인",
correct: "정답!",
incorrect: "다시 시도하세요",
next: "다음",
back: "뒤로",
settings: "설정",
interfaceLanguage: "인터페이스 언어:",
about: "소개",
progress: "진행 상황",
vocabulary: "어휘",
phrases: "일반 문구",
grammar: "문법",
quiz: "퀴즈",
home: "홈",
matching: "짝 맞추기",
multipleChoice: "객관식",
completed: "완료됨",
pronunciation: "발음",
cultural: "문화 노트",
flashcards: "플래시카드",
speakingPractice: "말하기 연습",
listeningPractice: "듣기 연습",
dictionary: "사전",
favoriteWords: "즐겨찾는 단어",
communityForum: "커뮤니티 포럼",
communityForumHero: "우리 언어 커뮤니티에 참여하세요",
communityForumSubtext: "다른 학습자와 연결하고, 자원을 공유하고, 원주민 언어에 대해 토론하세요",
profile: "프로필",
achievements: "성취",
review: "복습",
searchPlaceholder: "단어나 문구 검색...",
lessonTitle: "언어 수업",
topicViewTitle: "주제 - 원주민 언어 학습",
loadingTopic: "주제 로딩 중...",
orSignInWith: "또는 다음으로 로그인:",
signInWithGoogle: "구글",
signInWithDiscord: "디스코드",
signInWithFacebook: "페이스북",
// Authentication
signIn: "로그인",
signInTitle: "로그인 - 원주민 언어 학습",
register: "회원가입",
registerTitle: "회원가입 - 원주민 언어 학습",
email: "이메일",
password: "비밀번호",
confirmPassword: "비밀번호 확인",
username: "사용자 이름",
signInButton: "로그인",
registerButton: "회원가입",
noAccount: "계정이 없으신가요?",
haveAccount: "이미 계정이 있으신가요?",
profile: "프로필",
logout: "로그아웃",
// Forum
forum: "포럼",
forumTitle: "커뮤니티 포럼 - 원주민 언어 학습",
communityForum: "커뮤니티 포럼",
newTopic: "새 주제",
categories: "카테고리",
generalDiscussion: "일반 토론",
generalDiscussionDesc: "원주민 언어와 관련된 모든 것에 대해 토론하세요",
learningTips: "학습 팁",
learningTipsDesc: "학습 전략을 공유하고 토론하세요",
resources: "자원",
resourcesDesc: "책, 웹사이트 및 기타 학습 자료 공유",
events: "이벤트",
eventsDesc: "원주민 언어와 관련된 이벤트 및 행사",
recentTopics: "최근 주제",
noTopicsYet: "아직 주제가 없습니다. 첫 번째 주제 작성자가 되세요!",
createNewTopic: "새 주제 만들기",
topicTitle: "제목",
category: "카테고리",
content: "내용",
createTopic: "주제 만들기",
backToForum: "← 포럼으로 돌아가기",
replies: "답글",
noRepliesYet: "아직 답글이 없습니다. 첫 번째 답글 작성자가 되세요!",
postReply: "답글 작성",
submitReply: "답글 제출",
signInToReply: "답글을 작성하려면 로그인하세요."
},
"Italian": {
appTitle: "Apprendimento delle Lingue Indigene",
welcome: "Benvenuto nell'app di apprendimento delle lingue indigene",
welcomeMessage: "Scopri la bellezza delle lingue indigene",
welcomeSubtext: "Intraprendi un viaggio per preservare e imparare le lingue che ci collegano al nostro patrimonio",
selectLanguage: "Seleziona una lingua da imparare:",
start: "Inizia ad imparare",
lesson: "Lezione",
exercise: "Esercizio",
check: "Controlla risposta",
correct: "Corretto!",
incorrect: "Riprova",
next: "Avanti",
back: "Indietro",
settings: "Impostazioni",
interfaceLanguage: "Lingua dell'interfaccia:",
about: "Informazioni",
progress: "Progressi",
vocabulary: "Vocabolario",
phrases: "Frasi comuni",
grammar: "Grammatica",
quiz: "Quiz",
home: "Home",
matching: "Abbinamento",
multipleChoice: "Scelta multipla",
completed: "Completato",
pronunciation: "Pronuncia",
cultural: "Note culturali",
flashcards: "Flashcard",
speakingPractice: "Pratica di conversazione",
listeningPractice: "Pratica di ascolto",
dictionary: "Dizionario",
favoriteWords: "Parole preferite",
communityForum: "Forum della comunità",
communityForumHero: "Unisciti alla nostra comunità linguistica",
communityForumSubtext: "Connettiti con altri studenti, condividi risorse e discuti delle lingue indigene",
profile: "Profilo",
achievements: "Risultati",
review: "Revisione",
searchPlaceholder: "Cerca parole o frasi...",
lessonTitle: "Lezione di lingua",
topicViewTitle: "Argomento - Apprendimento delle Lingue Indigene",
loadingTopic: "Caricamento argomento...",
orSignInWith: "Oppure accedi con:",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "Accedi",
signInTitle: "Accedi - Apprendimento delle Lingue Indigene",
register: "Registrati",
registerTitle: "Registrati - Apprendimento delle Lingue Indigene",
email: "Email",
password: "Password",
confirmPassword: "Conferma password",
username: "Nome utente",
signInButton: "Accedi",
registerButton: "Registrati",
noAccount: "Non hai un account?",
haveAccount: "Hai già un account?",
profile: "Profilo",
logout: "Esci",
// Forum
forum: "Forum",
forumTitle: "Forum della comunità - Apprendimento delle Lingue Indigene",
communityForum: "Forum della comunità",
newTopic: "Nuovo argomento",
categories: "Categorie",
generalDiscussion: "Discussione generale",
generalDiscussionDesc: "Discuti di qualsiasi cosa relativa alle lingue indigene",
learningTips: "Consigli di apprendimento",
learningTipsDesc: "Condividi e scopri strategie di apprendimento linguistico",
resources: "Risorse",
resourcesDesc: "Condividi libri, siti web e altri materiali didattici",
events: "Eventi",
eventsDesc: "Prossimi eventi linguistici e incontri",
recentTopics: "Argomenti recenti",
noTopicsYet: "Ancora nessun argomento. Sii il primo a crearne uno!",
createNewTopic: "Crea nuovo argomento",
topicTitle: "Titolo",
category: "Categoria",
content: "Contenuto",
createTopic: "Crea argomento",
backToForum: "← Torna al forum",
replies: "Risposte",
noRepliesYet: "Ancora nessuna risposta. Sii il primo a rispondere!",
postReply: "Pubblica una risposta",
submitReply: "Invia risposta",
signInToReply: "Accedi per pubblicare una risposta."
},
// Danish translations
"Danish": {
appTitle: "Indfødt Sprogindlæring",
welcome: "Velkommen til appen for indfødt sprogindlæring",
welcomeMessage: "Opdag skønheden i indfødte sprog",
welcomeSubtext: "Begiv dig ud på en rejse for at bevare og lære sprog, der forbinder os med vores arv",
selectLanguage: "Vælg et sprog at lære:",
start: "Start læring",
lesson: "Lektion",
exercise: "Øvelse",
check: "Tjek svar",
correct: "Korrekt!",
incorrect: "Prøv igen",
next: "Næste",
back: "Tilbage",
settings: "Indstillinger",
interfaceLanguage: "Grænsefladesprog:",
about: "Om",
progress: "Fremskridt",
vocabulary: "Ordforråd",
phrases: "Almindelige sætninger",
grammar: "Grammatik",
quiz: "Quiz",
home: "Hjem",
matching: "Matching",
multipleChoice: "Multiple choice",
completed: "Fuldført",
pronunciation: "Udtale",
cultural: "Kulturelle noter",
flashcards: "Flashcards",
speakingPractice: "Taleøvelse",
listeningPractice: "Lytteøvelse",
dictionary: "Ordbog",
favoriteWords: "Favoritord",
communityForum: "Fællesskabsforum",
communityForumHero: "Bliv en del af vores sprogfællesskab",
communityForumSubtext: "Forbind med andre elever, del ressourcer og diskuter indfødte sprog",
profile: "Profil",
achievements: "Præstationer",
review: "Gennemgang",
searchPlaceholder: "Søg efter ord eller sætninger...",
lessonTitle: "Sprogundervisning",
topicViewTitle: "Emne - Indfødt Sprogindlæring",
loadingTopic: "Indlæser emne...",
orSignInWith: "Eller log ind med:",
signInWithGoogle: "Google",
signInWithDiscord: "Discord",
signInWithFacebook: "Facebook",
// Authentication
signIn: "Log ind",
signInTitle: "Log ind - Indfødt Sprogindlæring",
register: "Registrer",
registerTitle: "Registrer - Indfødt Sprogindlæring",
email: "Email",
password: "Adgangskode",
confirmPassword: "Bekræft adgangskode",
username: "Brugernavn",
signInButton: "Log ind",
registerButton: "Registrer",
noAccount: "Har du ikke en konto?",
haveAccount: "Har du allerede en konto?",
profile: "Profil",
logout: "Log ud",
// Forum
forum: "Forum",
forumTitle: "Fællesskabsforum - Indfødt Sprogindlæring",
communityForum: "Fællesskabsforum",
newTopic: "Nyt emne",
categories: "Kategorier",
generalDiscussion: "Generel diskussion",
generalDiscussionDesc: "Diskuter alt relateret til indfødte sprog",
learningTips: "Læringstips",
learningTipsDesc: "Del og opdag strategier for sprogindlæring",
resources: "Ressourcer",
resourcesDesc: "Del bøger, hjemmesider og andre læringsmaterialer",
events: "Begivenheder",
eventsDesc: "Kommende sprogbegivenheder og sammenkomster",
recentTopics: "Seneste emner",
noTopicsYet: "Endnu ingen emner. Vær den første til at oprette et!",
createNewTopic: "Opret nyt emne",
topicTitle: "Titel",
category: "Kategori",
content: "Indhold",
createTopic: "Opret emne",
backToForum: "← Tilbage til forum",
replies: "Svar",
noRepliesYet: "Endnu ingen svar. Vær den første til at svare!",
postReply: "Skriv et svar",
submitReply: "Send svar",
signInToReply: "Log venligst ind for at skrive et svar."