Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for generate_en_path (0.06 seconds)

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

  1. scripts/translate.py

            f"Path must be inside {en_docs_path}"
        )
        lang_docs_path = Path(f"docs/{lang}/docs")
        out_path = Path(str(path).replace(str(en_docs_path), str(lang_docs_path)))
        return out_path
    
    
    def generate_en_path(*, lang: str, path: Path) -> Path:
        en_docs_path = Path("docs/en/docs")
        assert not str(path).startswith(str(en_docs_path)), (
            f"Path must not be inside {en_docs_path}"
        )
    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