mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
28 lines
820 B
C#
28 lines
820 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SourceGit.Models
|
|
{
|
|
public class Locale
|
|
{
|
|
public string Name { get; set; }
|
|
public string Key { get; set; }
|
|
|
|
public static readonly List<Locale> Supported = new List<Locale>() {
|
|
new Locale("Deutsch", "de_DE"),
|
|
new Locale("English", "en_US"),
|
|
new Locale("Español", "es_ES"),
|
|
new Locale("Français", "fr_FR"),
|
|
new Locale("Italiano", "it_IT"),
|
|
new Locale("Português (Brasil)", "pt_BR"),
|
|
new Locale("Русский", "ru_RU"),
|
|
new Locale("简体中文", "zh_CN"),
|
|
new Locale("繁體中文", "zh_TW"),
|
|
};
|
|
|
|
public Locale(string name, string key)
|
|
{
|
|
Name = name;
|
|
Key = key;
|
|
}
|
|
}
|
|
}
|