(language: str)
| 343 | |
| 344 | @app.command() |
| 345 | def list_missing(language: str) -> list[Path]: |
| 346 | missing_paths: list[Path] = [] |
| 347 | en_lang_paths = list(iter_en_paths_to_translate()) |
| 348 | for path in en_lang_paths: |
| 349 | lang_path = generate_lang_path(lang=language, path=path) |
| 350 | if not lang_path.exists(): |
| 351 | missing_paths.append(path) |
| 352 | print(missing_paths) |
| 353 | return missing_paths |
| 354 | |
| 355 | |
| 356 | @app.command() |
no test coverage detected