- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for langs2 (0.04 sec)
-
.github/workflows/translate.yml
type: string required: false default: "" env: UV_SYSTEM_PYTHON: 1 jobs: langs: runs-on: ubuntu-latest outputs: langs: ${{ steps.show-langs.outputs.langs }} commands: ${{ steps.show-langs.outputs.commands }} steps: - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 18:48:45 UTC 2025 - 3.6K bytes - Viewed (0) -
scripts/translate.py
def get_llm_translatable() -> list[str]: translatable_langs = [] langs = get_langs() for lang in langs: if lang == "en": continue lang_prompt_path = Path(f"docs/{lang}/llm-prompt.md") if lang_prompt_path.exists(): translatable_langs.append(lang) return translatable_langs @app.command() def list_llm_translatable() -> list[str]:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 19:05:53 UTC 2025 - 34.1K bytes - Viewed (0)