i18n(nav): add 'The Bet' translation across all 22 locales#293
Merged
Conversation
Tim 2026-06-05 caught the dev-only next-intl error: > MISSING_MESSAGE: Could not resolve `nav.the_bet` in messages > for locale `en`. The nav entry was wired in PR #284 against the key `nav.the_bet` but the locale catalogues were never updated. `safeT` catches the miss and renders the literal "The Bet" fallback so the page never broke, but in dev mode next-intl throws and the overlay reports the miss every render. Translation spread: * Romance / Germanic / Slavic / Turkic: literal "the bet" in the target language (La Apuesta, Le Pari, Die Wette, La Scommessa, A Aposta x2, De Weddenschap, Vadet, Veddemålet, Sázka, A Fogadás, Bahis, Oklada x2, Garov). * CJK: ja / ko use a brand transliteration (ザ・ベット, 더 베트); zh-CN uses 豪赌 ("big wager") for punch since literal "the bet" reads flat. * RTL: ar / fa use the language's bet/wager noun (الرهان, شرطبندی). * mi: Te Whakapae (the contest / wager). 22 catalogues updated, every existing key preserved (Python JSON round-trip with ensure_ascii=False so non-Latin scripts stay readable in source). Signed-off-by: Tim Thomas <0800tim@gmail.com>
Auto-triage: GREEN — auto-triage clearRisk score: 0/100
No flags raised by the automated scanners. A human reviewer will still take a look. Labels applied: Posted by |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Tim 2026-06-05 caught the dev-only
MISSING_MESSAGE: Could not resolve nav.the_bet in messages for locale ennext-intl error. PR #284 wired the nav entry againstnav.the_betbut never added the catalogue entry.safeTwas catching the miss and rendering the English literal fallback so the page never broke; this just makes the lookup find a real string.22 locales updated. Romance/Germanic/Slavic/Turkic get a literal translation; CJK uses brand transliteration (ja/ko) or 豪赌 "big wager" (zh-CN); RTL uses the language's bet/wager noun.