Structural changes
Some checks failed
Tests / test (3.10) (push) Failing after 1m10s
Tests / test (3.7) (push) Has been cancelled
Tests / test (3.8) (push) Has been cancelled
Tests / test (3.9) (push) Has been cancelled
Tests / test (3.11) (push) Has been cancelled

This commit is contained in:
2023-11-19 22:38:51 +01:00
parent eb9a043c34
commit 9282578788
55 changed files with 144 additions and 150 deletions

41
src/pyrmv/enums/lang.py Normal file
View File

@@ -0,0 +1,41 @@
from enum import auto
from .auto_name import AutoName
class Language(AutoName):
"""Enumeration used to declare locales as ISO-3166 codes (but only available in HAFAS ones)."""
DE = auto()
"German"
DA = auto()
"Danish"
EN = auto()
"English"
ES = auto()
"Spanish"
FR = auto()
"French"
HU = auto()
"Hungarian"
IT = auto()
"Italian"
NL = auto()
"Dutch"
NO = auto()
"Norwegian"
PL = auto()
"Polish"
SV = auto()
"Swedish"
TR = auto()
"Turkish"