mirror of
https://gh.llkk.cc/https://github.com/WeblateOrg/language-data.git
synced 2025-10-03 15:01:09 +08:00
27 lines
499 B
Python
27 lines
499 B
Python
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# List of Weblate documentation languages
|
|
DOCUMENTATION_LANGUAGES = {
|
|
"de": "de",
|
|
"en": "en",
|
|
"es": "es",
|
|
"fr": "fr",
|
|
"ga": "ga",
|
|
"hu": "hu",
|
|
"ja": "ja",
|
|
"nb": "no",
|
|
"nl": "nl",
|
|
"pl": "pl",
|
|
"pt-br": "pt_BR",
|
|
"pt": "pt",
|
|
"ro": "ro",
|
|
"ru": "ru",
|
|
"sq": "sq",
|
|
"ta": "ta",
|
|
"tr": "tr",
|
|
"uk": "uk",
|
|
"zh-hans": "zh_CN",
|
|
"zh-hant": "zh_TW",
|
|
}
|