Simplify i18n: remove old react-intl artifacts, rename formatMessage to t, replace FormattedMessage with t.rich().

- Rewrite messages.ts to plain string key maps (remove MessageDescriptor)
- Rewrite useMessages hook to expose t from useTranslations() directly
- Rename formatMessage → t across 193 consumer files
- Replace custom FormattedMessage component with next-intl t.rich()
- Update 52 language files to use rich text tags (<b>, <a>)
- Remove all direct imports from @/components/messages in favor of useMessages()

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Mike Cao 2026-02-07 10:10:21 -08:00
parent 80cad6ea65
commit 50edb71687
247 changed files with 1660 additions and 2194 deletions

View file

@ -298,13 +298,13 @@
"bad-request": "Bad request",
"collected-data": "Zebrane dane",
"confirm-delete": "Czy na pewno chcesz usunąć {target}?",
"confirm-leave": "Czy na pewno chcesz opuścić {target}?",
"confirm-remove": "Czy na pewno chcesz usunąć {target}?",
"confirm-leave": "Czy na pewno chcesz opuścić <b>{target}</b>?",
"confirm-remove": "Czy na pewno chcesz usunąć <b>{target}</b>?",
"confirm-reset": "Czy na pewno chcesz zresetować statystyki {target}?",
"delete-team-warning": "Usunięcie zespołu usunie wszystkie jego witryny.",
"delete-website-warning": "Wszystkie powiązane dane również zostaną usunięte.",
"error": "Coś poszło nie tak.",
"event-log": "{event} na {url}",
"event-log": "<b>{event}</b> na <a>{url}</a>",
"forbidden": "Forbidden",
"go-to-settings": "Przejdź do ustawień",
"incorrect-username-password": "Nieprawidłowa nazwa użytkownika lub hasło.",
@ -338,6 +338,6 @@
"unauthorized": "Unauthorized",
"user-deleted": "Użytkownik usunięty.",
"viewed-page": "Obejrzana strona",
"visitor-log": "Odwiedzający z {country} używa {browser} na {os} {device}"
"visitor-log": "Odwiedzający z <b>{country}</b> używa <b>{browser}</b> na <b>{os}</b> <b>{device}</b>"
}
}