Integrate Japanese and Vietnamese translations

This commit is contained in:
Cameron Gutman
2021-05-13 00:24:00 -05:00
parent c55d184195
commit 54bd427f26
5 changed files with 22 additions and 2 deletions
+4
View File
@@ -195,6 +195,10 @@ QString StreamingPreferences::getSuffixFromLanguage(StreamingPreferences::Langua
return "ru";
case LANG_ES:
return "es";
case LANG_JA:
return "ja";
case LANG_VI:
return "vi";
case LANG_AUTO:
default:
return QLocale::system().name();
+3 -1
View File
@@ -72,7 +72,9 @@ public:
LANG_DE,
LANG_NB_NO,
LANG_RU,
LANG_ES
LANG_ES,
LANG_JA,
LANG_VI
};
Q_ENUM(Language);