aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjopejoe1 <34899572+jopejoe1@users.noreply.github.com>2022-11-19 16:28:27 +0000
committerGitHub <noreply@github.com>2022-11-19 16:28:27 +0000
commitd1db7a0e23d90546f6b7ee5d1894fb3c60e41ef7 (patch)
tree9a783dfadc2b1dbb6dfb617dfdd562e2c1835ac0
parent20ba787c00a28cf4e53ec0276ac7816c6b79473c (diff)
downloadPrismLauncher-d1db7a0e23d90546f6b7ee5d1894fb3c60e41ef7.tar.gz
PrismLauncher-d1db7a0e23d90546f6b7ee5d1894fb3c60e41ef7.tar.bz2
PrismLauncher-d1db7a0e23d90546f6b7ee5d1894fb3c60e41ef7.zip
Fix New Zealand English display
Signed-off-by: jopejoe1 <34899572+jopejoe1@users.noreply.github.com>
-rw-r--r--launcher/translations/TranslationsModel.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/launcher/translations/TranslationsModel.cpp b/launcher/translations/TranslationsModel.cpp
index 84778d32..38f48296 100644
--- a/launcher/translations/TranslationsModel.cpp
+++ b/launcher/translations/TranslationsModel.cpp
@@ -83,6 +83,9 @@ struct Language
else if(key == "es_UY") {
result = u8"español de Latinoamérica";
}
+ else if(key == "en_NZ") {
+ result = u8"New Zealand English"; // No idea why qt translates this to just english and not to New Zealand English
+ }
else if(key == "en@pirate") {
result = u8"Tongue of the High Seas";
}