mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-25 17:43:59 +08:00
* fix(deps): update dependency weblate-language-data to v2026.7 * chore(deps): update lockfile --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
20 lines
405 B
Python
Executable file
20 lines
405 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# /// script
|
|
# requires-python = ">=3.11"
|
|
# dependencies = [
|
|
# "weblate-language-data==2026.7",
|
|
# ]
|
|
# ///
|
|
|
|
import json
|
|
|
|
from weblate_language_data.docs import DOCUMENTATION_LANGUAGES
|
|
|
|
languages = list(DOCUMENTATION_LANGUAGES.values())
|
|
|
|
print(f"languages={json.dumps(languages)}")
|