Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Ukrainian Translation #870

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions TwitchDownloaderWPF/Services/AvailableCultures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public static class AvailableCultures
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[] All;
Expand All @@ -38,6 +39,7 @@ static AvailableCultures()
Polish = new Culture("pl-PL", "Polski"),
Russian = new Culture("ru-RU", "Русский"),
Turkish = new Culture("tr-TR", "Türkçe"),
Ukrainian = new Culture("uk-ua", "Українська")
MEGATREX4 marked this conversation as resolved.
Show resolved Hide resolved
SimplifiedChinese = new Culture("zh-CN", "简体中文")
};
}
Expand Down
Loading