Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN committed Apr 17, 2024
1 parent 0243387 commit b5da287
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions TwitchDownloaderWPF/Services/AvailableCultures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ public static class AvailableCultures
{
// Notes for translators:
//
// Please create a new record for your culture and place it in the 'All' array in English alphabetical order.
// The order of the 'All' array is the order that they will appear in the language dropdown menu.
// Please create a new record for your culture and place it in the 'All' array in alphabetical order according to the culture code.
// The order of the 'All' array is the order that cultures will appear in the language dropdown menu.
//
// If you do not know the code for your culture, you can find it using the Visual Studio ResX Resource Manager extension
// https://marketplace.visualstudio.com/items?itemName=TomEnglert.ResXManager
Expand All @@ -22,14 +22,13 @@ public static class AvailableCultures
public static readonly Culture Spanish;
public static readonly Culture French;
public static readonly Culture Italian;
public static readonly Culture Japanese;
public static readonly Culture Polish;
public static readonly Culture Russian;
public static readonly Culture Turkish;
public static readonly Culture Ukrainian;
public static readonly Culture SimplifiedChinese;

public static readonly Culture Japanese;

public static readonly Culture[] All;

// ReSharper disable StringLiteralTypo
Expand All @@ -41,13 +40,13 @@ static AvailableCultures()
Spanish = new Culture("es-ES", "Español"),
French = new Culture("fr-FR", "Français"),
Italian = new Culture("it-it", "Italiano"),
Japanese = new Culture("ja-JP", "日本語"),
Polish = new Culture("pl-PL", "Polski"),
Polish = new Culture("pt-BR", "Português (Brasil)"),
Russian = new Culture("ru-RU", "Русский"),
Turkish = new Culture("tr-TR", "Türkçe"),
Ukrainian = new Culture("uk-ua", "Українська"),
SimplifiedChinese = new Culture("zh-CN", "简体中文"),
Japanese = new Culture("ja-JP", "日本語")
};
}
// ReSharper enable StringLiteralTypo
Expand Down

0 comments on commit b5da287

Please sign in to comment.