Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

  1. scripts/translate.py

            if not en_path.exists():
                removable_paths.append(path)
        print(removable_paths)
        return removable_paths
    
    
    @app.command()
    def list_all_removable() -> list[Path]:
        all_removable_paths: list[Path] = []
        langs = get_langs()
        for lang in langs:
            if lang == "en":
                continue
            removable_paths = list_removable(lang)
    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