From c6d9edb78f3bb6772667d02c0713adcdcaf89e8b Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Fri, 18 Nov 2022 22:21:55 +0100 Subject: [PATCH] chore: improve display names of more languages Signed-off-by: Sefa Eyeoglu --- launcher/translations/TranslationsModel.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/launcher/translations/TranslationsModel.cpp b/launcher/translations/TranslationsModel.cpp index 20aa6d04..84778d32 100644 --- a/launcher/translations/TranslationsModel.cpp +++ b/launcher/translations/TranslationsModel.cpp @@ -89,6 +89,12 @@ struct Language else if(key == "en@uwu") { result = u8"Cute Engwish"; } + else if(key == "tok") { + result = u8"toki pona"; + } + else if(key == "nan") { + result = u8"閩南語"; // Using traditional Chinese script. Not sure if we should use simplified instead? + } else { result = locale.nativeLanguageName(); }