Skip to content

Commit

Permalink
Fix 'System default' text not being translated in language selector d…
Browse files Browse the repository at this point in the history
…ropdown
  • Loading branch information
pizzaboxer committed Jul 8, 2024
1 parent c02e3f3 commit de6d3d0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Bloxstrap/Locale.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public static List<string> GetLanguages()

languages.AddRange(SupportedLocales.Values.Take(3));
languages.AddRange(SupportedLocales.Values.Where(x => !languages.Contains(x)).OrderBy(x => x));
languages[0] = Strings.Common_SystemDefault; // set again for any locale changes

return languages;
}
Expand Down

0 comments on commit de6d3d0

Please sign in to comment.