10 lines
202 B
Python
10 lines
202 B
Python
|
|
SUPPORTED_LANGUAGES: dict[str, str] = {
|
||
|
|
"en": "English",
|
||
|
|
"fr": "French",
|
||
|
|
"es": "Spanish",
|
||
|
|
"it": "Italian",
|
||
|
|
"de": "German",
|
||
|
|
}
|
||
|
|
|
||
|
|
SUPPORTED_LEVELS = {"A1", "A2", "B1", "B2", "C1", "C2"}
|