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

Added support for simplified Chinese #67

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions KeppyMIDIConverter/Functions/Languages/Languages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static void ChangeLanguage(string selectedlanguage)
}
}

const int LangNum = 3;
const int LangNum = 4;

public static String[] LanguagesAvailable = new String[LangNum] {
// "বাঙালি (Bengali)",
Expand All @@ -122,7 +122,7 @@ public static void ChangeLanguage(string selectedlanguage)
"日本語 (Japanese)",
// "한국어 (Korean)",
// "Pу́сский (Russian)",
// "简化字 (Simplified Chinese, PRC)",
"简体中文 (Simplified Chinese, PRC)",
// "Español (Spanish)",
// "ภาษาไทย (Thai)",
// "廣東話 (Traditional Chinese, Hong Kong)",
Expand All @@ -138,7 +138,7 @@ public static void ChangeLanguage(string selectedlanguage)
Properties.Resources.Japan,
// Properties.Resources.South_Korea,
// Properties.Resources.Russian_Federation,
// Properties.Resources.China,
Properties.Resources.China,
// Properties.Resources.Spain,
// Properties.Resources.Thailand,
// Properties.Resources.China,
Expand All @@ -154,7 +154,7 @@ public static void ChangeLanguage(string selectedlanguage)
"ja-JP",
// "ko-KR",
// "ru-RU",
// "zh-CN",
"zh-CN",
// "es-ES",
// "th-TH",
// "zh-HK",
Expand Down
Loading