fix(i18n): guard locale key parity and finish the OAuth consent page strings

Every non-en locale now exposes the exact same flat key set as en. Keys that
had drifted out of sync are backfilled with the English source value (tagged
en-fallback) so t() resolves a real string instead of relying on the silent
runtime fallback; no existing translation was touched and no key was removed.

Add a parity test that imports each aggregated locale bundle and asserts its
key set matches en, with a diagnostic listing of any missing/extra keys. This
complements the file-level check in shared/scripts by guarding the merged
export the app actually serves.

Finish internationalising OAuthAuthorizePage: the ~15 remaining hardcoded
English chrome strings now go through oauth.authorize.* keys (English source
in en, en-fallback placeholders elsewhere). Markup and behaviour are unchanged.
This commit is contained in:
Maurice
2026-05-31 16:08:08 +02:00
parent eed9e8ce7c
commit e63a7799fb
57 changed files with 948 additions and 17 deletions
+24
View File
@@ -95,5 +95,29 @@ const oauth: TranslationStrings = {
'oauth.scope.journey:share.label': 'Manage journey links',
'oauth.scope.journey:share.description':
'Create, update, and revoke public share links for journeys',
'oauth.authorize.authorizing': 'Authorizing…',
'oauth.authorize.loading': 'Loading…',
'oauth.authorize.errorTitle': 'Authorization Error',
'oauth.authorize.loginTitle': 'Sign in to continue',
'oauth.authorize.loginDescription':
'{client} wants access to your TREK account. Please sign in first.',
'oauth.authorize.loginButton': 'Sign in to TREK',
'oauth.authorize.requestLabel': 'Authorization Request',
'oauth.authorize.requestDescription':
'This application is requesting access to your TREK account.',
'oauth.authorize.trustNote':
'Only grant access to applications you trust. Your data stays on your server.',
'oauth.authorize.selectScope': 'Select at least one scope',
'oauth.authorize.approveOneScope': 'Approve ({count} scope)',
'oauth.authorize.approveManyScopes': 'Approve ({count} scopes)',
'oauth.authorize.approveAccess': 'Approve Access',
'oauth.authorize.deny': 'Deny',
'oauth.authorize.choosePermissions': 'Choose which permissions to grant',
'oauth.authorize.permissionsRequested': 'Permissions requested',
'oauth.authorize.alwaysIncluded': 'Always included',
'oauth.authorize.alwaysTool.listTrips':
'List your trips so the AI can discover trip IDs',
'oauth.authorize.alwaysTool.getTripSummary':
'Read a trip overview needed to use any other tool',
};
export default oauth;