Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for get_lang_paths (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. scripts/translate.py

        print("Done removing all removable paths")
    
    
    @app.command()
    def list_missing(language: str) -> list[Path]:
        missing_paths: list[Path] = []
        en_lang_paths = list(iter_en_paths_to_translate())
        for path in en_lang_paths:
            lang_path = generate_lang_path(lang=language, path=path)
            if not lang_path.exists():
                missing_paths.append(path)
        print(missing_paths)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
Back to Top