The first PR #313 introduced only the da translation for the
'no_xlvask_usage_log_metadata' preview key. The
i18n-v2-integrity.spec.ts test 'da v2 key set should match en v2'
failed because the en (and de, no, sv) locales were missing the
new key, leaving their generated v2 files out of sync.
This commit adds the key to all 4 active locales:
- en: 'No metadata for XL Vask registration.'
- de: 'Keine Metadaten für XL Vask-Registrierung.'
- no: 'Ingen metadata for XL Vask-registrering.'
- sv: 'Ingen metadata för XL Vask-registrering.'
Each locale delegates the registration label to the existing
xlvask_usage_log key (or glossary equivalent). Sources are now
consistent across da, de, en, no, sv.
Resolves the full master CI green-status attempt.
PR #311 (TRU-8 / AUT-4) added a new xlvask_usage_log entry to
src/i18n/source/global/shared/invoice_period/flags.json as a literal
Danish string. The integration test in
tests/e2e/i18n-v2-integrity.spec.ts (added in PR #306 / TRU-9)
asserts that EVERY xlvask_usage_log/xlvask_missing_order_link entry
in the global fallback MUST be a '@:' linked reference, never a
literal value. The literal string broke the test, which is in turn
blocking the develop→master CI gate.
This commit:
- Adds the key to the da source as an actual i18n entry
- Converts the global entry to '@:{'phrases.compat.invoice_period.flags.preview.no_xlvask_usage_log_metadata'}'
- Re-runs i18n:v2:compile to regenerate src/i18n/generated/global-v2.json
Resolves the test failure on master after PR #312.