mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-07-26 14:23:58 +08:00
20 lines
405 B
Python
Executable file
Vendored
20 lines
405 B
Python
Executable file
Vendored
#!/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.8",
|
|
# ]
|
|
# ///
|
|
|
|
import json
|
|
|
|
from weblate_language_data.docs import DOCUMENTATION_LANGUAGES
|
|
|
|
languages = list(DOCUMENTATION_LANGUAGES.values())
|
|
|
|
print(f"languages={json.dumps(languages)}")
|