Skip to content

Commit b175ab3

Browse files
committed
code_review: PR #623
* keep locales in order * update README.md Signed-off-by: leo <[email protected]>
1 parent 81f76f0 commit b175ab3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Supports Windows/macOS/Linux
1212
* Opensource/Free
1313
* Fast
14-
* English/Français/Deutsch/Português/Русский/简体中文/繁體中文
14+
* English/Español/Français/Deutsch/Português/Русский/简体中文/繁體中文
1515
* Built-in light/dark themes
1616
* Customize theme
1717
* Visual commit graph

src/Models/Locales.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ public class Locale
99

1010
public static readonly List<Locale> Supported = new List<Locale>() {
1111
new Locale("English", "en_US"),
12+
new Locale("Español", "es_ES"),
1213
new Locale("Deutsch", "de_DE"),
1314
new Locale("Français", "fr_FR"),
1415
new Locale("Português (Brasil)", "pt_BR"),
1516
new Locale("Русский", "ru_RU"),
1617
new Locale("简体中文", "zh_CN"),
1718
new Locale("繁體中文", "zh_TW"),
18-
new Locale("Español", "es_ES"),
1919
};
2020

2121
public Locale(string name, string key)

0 commit comments

Comments
 (0)