1
0
Fork 0
mirror of https://github.com/bitwarden/android.git synced 2024-12-24 01:48:25 +03:00

Chinese support on iOS

This commit is contained in:
Kyle Spearrin 2016-12-26 13:39:14 -05:00
parent 7728046309
commit b2712119d1

View file

@ -58,6 +58,16 @@ namespace Bit.iOS.Core.Services
Console.WriteLine("iOS Language:" + iOSLanguage);
var netLanguage = iOSLanguage;
if(netLanguage.StartsWith("zh-Hans"))
{
netLanguage = "zh-Hans";
}
else if(netLanguage.StartsWith("zh-Hant"))
{
netLanguage = "zh-Hant";
}
else
{
//certain languages need to be converted to CultureInfo equivalent
switch(iOSLanguage)
{
@ -71,6 +81,7 @@ namespace Bit.iOS.Core.Services
// add more application-specific cases here (if required)
// ONLY use cultures that have been tested and known to work
}
}
Console.WriteLine(".NET Language/Locale:" + netLanguage);
return netLanguage;
@ -83,7 +94,6 @@ namespace Bit.iOS.Core.Services
switch(platCulture.LanguageCode)
{
//
case "pt":
netLanguage = "pt-PT"; // fallback to Portuguese (Portugal)
break;