summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-12-16 17:16:51 +0000
committersr55 <[email protected]>2018-12-16 17:16:51 +0000
commit23bc08b55d58308862e940c97f2d1aeb0f07544b (patch)
tree303c2ab8fcbf5efe266719ab7eeb1c1bddd96a04
parent4add7b2bec6c9d3a916bd103a365631c25b7c2b1 (diff)
WinGui: Where the system language isn't English, allow English language to be used in GUI.1.2.0
-rw-r--r--win/CS/HandBrakeWPF/App.xaml.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/App.xaml.cs b/win/CS/HandBrakeWPF/App.xaml.cs
index 1731dd551..e6b063eac 100644
--- a/win/CS/HandBrakeWPF/App.xaml.cs
+++ b/win/CS/HandBrakeWPF/App.xaml.cs
@@ -104,7 +104,7 @@ namespace HandBrakeWPF
IUserSettingService userSettingService = IoC.Get<IUserSettingService>();
string culture = userSettingService.GetUserSetting<string>(UserSettingConstants.UiLanguage);
- if (!string.IsNullOrEmpty(culture) && !"en".Equals(culture))
+ if (!string.IsNullOrEmpty(culture))
{
InterfaceLanguage language = InterfaceLanguageUtilities.FindInterfaceLanguage(culture);
if (language != null)