Skip to content

Commit 23bc08b

Browse files
committed
WinGui: Where the system language isn't English, allow English language to be used in GUI.
1 parent 4add7b2 commit 23bc08b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

win/CS/HandBrakeWPF/App.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ protected override void OnStartup(StartupEventArgs e)
104104

105105
IUserSettingService userSettingService = IoC.Get<IUserSettingService>();
106106
string culture = userSettingService.GetUserSetting<string>(UserSettingConstants.UiLanguage);
107-
if (!string.IsNullOrEmpty(culture) && !"en".Equals(culture))
107+
if (!string.IsNullOrEmpty(culture))
108108
{
109109
InterfaceLanguage language = InterfaceLanguageUtilities.FindInterfaceLanguage(culture);
110110
if (language != null)

0 commit comments

Comments
 (0)