(lang: str)
| 54 | |
| 55 | |
| 56 | def get_all_paths(lang: str): |
| 57 | res: list[str] = [] |
| 58 | lang_docs_root = Path("docs") / lang / "docs" |
| 59 | for path in iter_all_lang_paths(lang_docs_root): |
| 60 | relpath = path.relative_to(lang_docs_root) |
| 61 | if not str(relpath).startswith(non_translated_sections): |
| 62 | res.append(str(relpath)) |
| 63 | return res |
| 64 | |
| 65 | |
| 66 | def process_one_page(path: Path) -> bool: |
no test coverage detected