(value: Any = None)
| 108 | |
| 109 | |
| 110 | def _normalize_response_language(value: Any = None) -> str: |
| 111 | raw = str(value or "").strip().lower().replace("_", "-") |
| 112 | return "en" if raw.startswith("en") or raw == "english" else "zh" |
| 113 | |
| 114 | |
| 115 | MONTH_LABELS = { |
no outgoing calls
no test coverage detected