1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-05-14 01:36:08 +03:00

Remove mctaylors' version of the Russian language

This commit is contained in:
Macintxsh 2024-04-01 16:04:03 +03:00
parent 96680d3beb
commit 86ff1da7ec
Signed by: mctaylors
GPG key ID: 7181BEBE676903C1
2 changed files with 1 additions and 686 deletions

View file

@ -11,8 +11,7 @@ public sealed class LanguageOption : Option<CultureInfo>
private static readonly Dictionary<string, CultureInfo> CultureInfoCache = new()
{
{ "en", new CultureInfo("en-US") },
{ "ru", new CultureInfo("ru-RU") },
{ "mctaylors-ru", new CultureInfo("tt-RU") }
{ "ru", new CultureInfo("ru-RU") }
};
public LanguageOption(string name, string defaultValue) : base(name, CultureInfoCache[defaultValue]) { }