diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-10-30 23:50:56 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-10-30 23:50:57 +0100 |
commit | 42350e689d9dba0c9385f15e7d4c4da0a71f200c (patch) | |
tree | fb8033b1dd06ccd9ac3166e8502a7d12c9f12b5b | |
parent | 87b0d3fe11c1134bf17e1027fda7125f77e09821 (diff) | |
download | PrismLauncher-42350e689d9dba0c9385f15e7d4c4da0a71f200c.tar.gz PrismLauncher-42350e689d9dba0c9385f15e7d4c4da0a71f200c.tar.bz2 PrismLauncher-42350e689d9dba0c9385f15e7d4c4da0a71f200c.zip |
chore: improve display names of certain languages
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r-- | launcher/translations/TranslationsModel.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/launcher/translations/TranslationsModel.cpp b/launcher/translations/TranslationsModel.cpp index 2f57de3a..20aa6d04 100644 --- a/launcher/translations/TranslationsModel.cpp +++ b/launcher/translations/TranslationsModel.cpp @@ -83,6 +83,12 @@ struct Language else if(key == "es_UY") { result = u8"español de Latinoamérica"; } + else if(key == "en@pirate") { + result = u8"Tongue of the High Seas"; + } + else if(key == "en@uwu") { + result = u8"Cute Engwish"; + } else { result = locale.nativeLanguageName(); } |