fix(i18n): add the /context catalog block to ar.yaml (missed in the 17-locale sweep)

This commit is contained in:
teknium1 2026-07-26 17:20:20 -07:00 committed by Teknium
parent 07370a9dba
commit a9cc0ac9ff
2 changed files with 19 additions and 2 deletions

View file

@ -1179,11 +1179,10 @@ _SLACK_PRIORITY_ALIASES = ("btw", "bg")
# - init: repo-scan AGENTS.md bootstrap — a cwd-centric dev command that is
# rare from Slack; reachable as /hermes init. Without this entry, adding
# /init clamps /version off the native list and breaks Telegram parity.
_SLACK_VIA_HERMES_ONLY = frozenset({"topup", "moa", "debug", "egress", "init"})
# - version: low-frequency info command; reachable as /hermes version on
# Slack. Demoted when /context claimed a native slot (context is a
# recurring inspection surface; version is a one-off lookup).
_SLACK_VIA_HERMES_ONLY = frozenset({"topup", "moa", "debug", "egress", "version"})
_SLACK_VIA_HERMES_ONLY = frozenset({"topup", "moa", "debug", "egress", "init", "version"})
def _sanitize_slack_name(raw: str) -> str: