Skip to content

Commit

Permalink
Fix pl_PL language
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbreiz committed Jan 18, 2022
1 parent 57b3299 commit f287765
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Aura Operating System/Aura_OS/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ namespace Aura_OS
{
public class VersionInfo
{
public static string revision = "180120220352";
public static string revision = "180120222225";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public static void Init()
case "it_IT":
Sys.KeyboardManager.SetKeyLayout(new Sys.ScanMaps.US_Standard());
break;

case "pl_PL":
Sys.KeyboardManager.SetKeyLayout(new Sys.ScanMaps.US_Standard());
break;
Expand Down
6 changes: 6 additions & 0 deletions Aura Operating System/Aura_OS/System/Users/Setup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,12 @@ public void RegisterLanguage()
FinalLang = "it_IT";
Keyboard.Init();
}
else if ((language.Equals("pl_PL")) || language.Equals("pl-PL"))
{
Global.langSelected = "pl_PL";
FinalLang = "pl_PL";
Keyboard.Init();
}
else
{
RegisterLanguage();
Expand Down

0 comments on commit f287765

Please sign in to comment.