Skip to content

Commit

Permalink
Merge pull request #134 from lacmus-foundation/dev
Browse files Browse the repository at this point in the history
fix language
  • Loading branch information
gosha20777 authored Feb 13, 2022
2 parents 61aad7b + d402397 commit 75b45df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LacmusApp.Avalonia/ViewModels/LoadingWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ private async void Init()
switch (config.Language)
{
case Language.English:
Properties.Settings.Culture = new CultureInfo("default");
Properties.Settings.Culture = new CultureInfo("en");
break;
case Language.Russian:
Properties.Settings.Culture = new CultureInfo("ru");
break;
default:
Properties.Settings.Culture = new CultureInfo("default");
Properties.Settings.Culture = new CultureInfo("en");
break;
}

Expand Down

0 comments on commit 75b45df

Please sign in to comment.