Merge pull request #354 from Scrumplex/translations-maybe

Improve display names of certain languages
This commit is contained in:
DioEgizio 2022-10-31 08:43:43 +01:00 committed by Sefa Eyeoglu
parent 664d4e701e
commit 7a5a4de6ea
No known key found for this signature in database
GPG Key ID: C10411294912A422

View File

@ -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();
}