mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
fd02b97ce1
Allow nickname->species with span add ConstantExpected annotations Correct Gen8b ability set calling CommonEdits instead of direct setter Slightly better perf on gen5/gen8+ location fetch Misc pkm ctor fixes for b2w2 trade & wc3 eggs wurmple evo now has an enum to be more explicit no recursion for gen5 generator fix showdown line length check allowing 86 instead of 80
52 lines
808 B
C#
52 lines
808 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Program Languages supported; mirrors <see cref="GameLanguage.LanguageCodes"/>.
|
|
/// </summary>
|
|
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>
|
|
/// Simplified Chinese
|
|
/// </summary>
|
|
简体中文,
|
|
|
|
/// <summary>
|
|
/// Traditional Chinese
|
|
/// </summary>
|
|
繁體中文,
|
|
}
|