toggle_language. Route handler or application helper. This docstring was expanded to make future maintenance easier. Returns: Varies.
()
| 2948 | """Translate only visible text nodes between > and < (best-effort). |
| 2949 | |
| 2950 | Strategy per text node: |
| 2951 | 1) Apply explicit phrase replacements (TRANSLATIONS_EL / TRANSLATIONS_EN) sorted by length. |
| 2952 | 2) Apply fallback word-level mapping (_WORD_MAP_EL / _WORD_MAP_EN). |
| 2953 | """ |
| 2954 | def repl(m): |
| 2955 | """repl. |
| 2956 | |
| 2957 | Route handler or application helper. |
| 2958 | |
| 2959 | This docstring was expanded to make future maintenance easier. |
| 2960 | |
| 2961 | Args: |
| 2962 | m: Parameter. |
| 2963 | |
| 2964 | Returns: |
nothing calls this directly
no test coverage detected