using System;
public class Program
{
public static void Main()
foreach (string name in Enum.GetNames(typeof(Locale)))
Console.WriteLine(name);
}
public enum Locale
UNKNOWN = -1,
enUS = 0,
frFR = 1,
deDE = 2,
koKR = 3,
esES = 4,
esMX = 5,
ruRU = 6,
zhTW = 7,
zhCN = 8,
itIT = 9,
ptBR = 10,
plPL = 11,
jaJP = 12,
thTH = 13,