We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc26553 commit 4e9458bCopy full SHA for 4e9458b
1 file changed
src/tcgdexsdk/enums.py
@@ -9,14 +9,36 @@ class Language(Enum):
9
"""English"""
10
FR = "fr"
11
"""French"""
12
- DE = "de"
13
- """German"""
14
ES = "es"
15
"""Spanish"""
+ ES_MX = "es-mx"
+ """Latin Spanish"""
16
IT = "it"
17
"""Italian"""
18
- PT = "pt"
19
- """Portuguese"""
+ PT_BR = "pt-br"
+ """Brazilian Portuguese"""
20
+ PT_PT = "pt-pt"
21
+ """Portugal Portuguese"""
22
+ DE = "de"
23
+ """German"""
24
+ NL = "nl"
25
+ """"""
26
+ PL = "pl"
27
+ """Polish"""
28
+ RU = "ru"
29
+ """Russian"""
30
+ JA = "ja"
31
+ """Japanese"""
32
+ KO = "ko"
33
+ """Korean"""
34
+ zh_TW = "zh-tw"
35
+ """Chinese"""
36
+ ID = "id"
37
+ """Indonesian"""
38
+ TH = "th"
39
+ """Thai"""
40
+ ZH_CN = "zh-cn"
41
42
43
def __str__(self):
44
return self.name.lower()
0 commit comments