repl. Route handler or application helper. This docstring was expanded to make future maintenance easier. Args: m: Parameter. Returns: Varies.
(m)
| 2738 | "By": "Από", |
| 2739 | "Text": "Κείμενο", |
| 2740 | "Search groups...": "Αναζήτηση ομάδων..." |
| 2741 | }) |
| 2742 | |
| 2743 | # Keep reverse map in sync for EL -> EN toggling |
| 2744 | for _en, _el in TRANSLATIONS_EL.items(): |
| 2745 | TRANSLATIONS_EN.setdefault(_el, _en) |
| 2746 | |
| 2747 | # --- Fallback word-level translation (best-effort) ---------------------------- |
| 2748 | # This helps cover stray UI strings that weren't explicitly listed in TRANSLATIONS_EL. |
| 2749 | # We keep it conservative and only apply it to plain text nodes (between > and <), |
| 2750 | # not inside scripts/styles/attributes. |
| 2751 | |
| 2752 | _WORD_MAP_EL = { |
| 2753 | "Theme": "Θέμα", |
| 2754 | "Language": "Γλώσσα", |
| 2755 | "Back": "Πίσω", |
| 2756 | "Home": "Αρχική", |
| 2757 | "Settings": "Ρυθμίσεις", |
nothing calls this directly
no test coverage detected