mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 16:33:24 +00:00
858760fa28
relocate program language enum test that test case is proper move getcompatible & gettemplate to core remove catch rate changing for pk1 (catchrate editor now used instead)
45 lines
No EOL
743 B
C#
45 lines
No EOL
743 B
C#
namespace PKHeX.WinForms
|
|
{
|
|
public enum ProgramLanguage
|
|
{
|
|
/// <summary>
|
|
/// Japanese
|
|
/// </summary>
|
|
日本語,
|
|
|
|
/// <summary>
|
|
/// English
|
|
/// </summary>
|
|
English,
|
|
|
|
/// <summary>
|
|
/// French
|
|
/// </summary>
|
|
Français,
|
|
|
|
/// <summary>
|
|
/// Italian
|
|
/// </summary>
|
|
Italiano,
|
|
|
|
/// <summary>
|
|
/// German
|
|
/// </summary>
|
|
Deutsch,
|
|
|
|
/// <summary>
|
|
/// Spanish
|
|
/// </summary>
|
|
Español,
|
|
|
|
/// <summary>
|
|
/// Korean
|
|
/// </summary>
|
|
한국어,
|
|
|
|
/// <summary>
|
|
/// Chinese
|
|
/// </summary>
|
|
中文,
|
|
}
|
|
} |