-
Notifications
You must be signed in to change notification settings - Fork 0
/
locale.go
39 lines (37 loc) · 1.1 KB
/
locale.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package httpcord
type (
Locale string
Dictionary map[Locale]string
)
const (
EnglishUSLocale Locale = "en-US"
EnglishGBLocale Locale = "en-GB"
BulgarianLocale Locale = "bg"
ChineseCNLocale Locale = "zh-CN"
ChineseTWLocale Locale = "zh-TW"
CroatianLocale Locale = "hr"
CzechLocale Locale = "cs"
DanishLocale Locale = "da"
DutchLocale Locale = "nl"
FinnishLocale Locale = "fi"
FrenchLocale Locale = "fr"
GermanLocale Locale = "de"
GreekLocale Locale = "el"
HindiLocale Locale = "hi"
HungarianLocale Locale = "hu"
ItalianLocale Locale = "it"
JapaneseLocale Locale = "ja"
KoreanLocale Locale = "ko"
LithuanianLocale Locale = "lt"
NorwegianLocale Locale = "no"
PolishLocale Locale = "pl"
PortugueseBRLocale Locale = "pt-BR"
RomanianLocale Locale = "ro"
RussianLocale Locale = "ru"
SpanishESLocale Locale = "es-ES"
SwedishLocale Locale = "sv-SE"
ThaiLocale Locale = "th"
TurkishLocale Locale = "tr"
UkrainianLocale Locale = "uk"
VietnameseLocale Locale = "vi"
)