|
@ -79,7 +79,6 @@ BABEL_LANGUAGES = OrderedDict(( |
|
|
|
|
|
|
|
|
def lang2babel(lang): |
|
|
def lang2babel(lang): |
|
|
"""Return the language used by babel, corresponding to the language code""" |
|
|
"""Return the language used by babel, corresponding to the language code""" |
|
|
try: |
|
|
|
|
|
# Exact match |
|
|
# Exact match |
|
|
if lang.lower() in BABEL_LANGUAGES: |
|
|
if lang.lower() in BABEL_LANGUAGES: |
|
|
return BABEL_LANGUAGES[lang.lower()] |
|
|
return BABEL_LANGUAGES[lang.lower()] |
|
@ -98,7 +97,7 @@ def lang2babel(lang): |
|
|
) |
|
|
) |
|
|
) |
|
|
) |
|
|
return BABEL_LANGUAGES[babel] |
|
|
return BABEL_LANGUAGES[babel] |
|
|
except KeyError: |
|
|
# Error: no (exact or approximate) match found |
|
|
available = ", ".join(BABEL_LANGUAGES.keys()) |
|
|
available = ", ".join(BABEL_LANGUAGES.keys()) |
|
|
LOGGER.error( |
|
|
LOGGER.error( |
|
|
"Unknown language code '{}' (supported: {}). Using default 'english' instead.".format( |
|
|
"Unknown language code '{}' (supported: {}). Using default 'english' instead.".format( |
|
|