code_review: PR #623

* keep locales in order
* update README.md

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2024-10-30 09:47:33 +08:00
parent 81f76f0771
commit b175ab3a3e
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@
* Supports Windows/macOS/Linux * Supports Windows/macOS/Linux
* Opensource/Free * Opensource/Free
* Fast * Fast
* English/Français/Deutsch/Português/Русский/简体中文/繁體中文 * English/Español/Français/Deutsch/Português/Русский/简体中文/繁體中文
* Built-in light/dark themes * Built-in light/dark themes
* Customize theme * Customize theme
* Visual commit graph * Visual commit graph

View file

@ -9,13 +9,13 @@ namespace SourceGit.Models
public static readonly List<Locale> Supported = new List<Locale>() { public static readonly List<Locale> Supported = new List<Locale>() {
new Locale("English", "en_US"), new Locale("English", "en_US"),
new Locale("Español", "es_ES"),
new Locale("Deutsch", "de_DE"), new Locale("Deutsch", "de_DE"),
new Locale("Français", "fr_FR"), new Locale("Français", "fr_FR"),
new Locale("Português (Brasil)", "pt_BR"), new Locale("Português (Brasil)", "pt_BR"),
new Locale("Русский", "ru_RU"), new Locale("Русский", "ru_RU"),
new Locale("简体中文", "zh_CN"), new Locale("简体中文", "zh_CN"),
new Locale("繁體中文", "zh_TW"), new Locale("繁體中文", "zh_TW"),
new Locale("Español", "es_ES"),
}; };
public Locale(string name, string key) public Locale(string name, string key)