Skip to content

Commit

Permalink
Fix typo in uk-ua language code
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Jul 12, 2023
1 parent 574e0af commit 37b1140
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lingua_franca/internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@


_SUPPORTED_LANGUAGES = ("az", "ca", "cs", "da", "de", "en", "es", "fr", "hu",
"it", "nl", "pl", "pt", "ru", "sl", "sv", "fa", "eu", "uk")
"it", "nl", "pl", "pt", "ru", "sl", "sv", "fa", "eu",
"uk")

_SUPPORTED_FULL_LOCALIZATIONS = ("az-az", "ca-es", "cs-cz", "da-dk", "de-de",
"en-au", "en-us", "es-es", "fr-fr",
"hu-hu", "it-it", "nl-nl", "pl-pl",
"fa-ir", "pt-pt", "ru-ru", "sl-si",
"sv-se", "tr-tr", "eu-eu", "uk-uk")
"sv-se", "tr-tr", "eu-eu", "uk-ua")

_DEFAULT_FULL_LANG_CODES = {'az': 'az-az',
'ca': 'ca-es',
Expand All @@ -37,7 +38,7 @@
'sl': 'sl-si',
'sv': 'sv-se',
'tr': 'tr-tr',
'uk': 'uk-uk'}
'uk': 'uk-ua'}

__default_lang = None
__active_lang_code = None
Expand Down

0 comments on commit 37b1140

Please sign in to comment.