From f63e51c96ea380271ef6fe36c12a5a3e244bba23 Mon Sep 17 00:00:00 2001 From: Jeppe B <2jepp9350@gmail.com> Date: Sun, 9 Aug 2026 18:08:04 +0200 Subject: [PATCH] fix(i18n): expose tables.xlvask.usage_log_empty for view key coverage (#268) XLVaskUsageLog.vue:690 references tables.xlvask.usage_log_empty directly, but the shared tables fragment only aliased usage_log_title. The literal view-key scan in tests/e2e/i18n.views.spec.ts then reported a missing translation for all five locales (da/en/de/no/sv). This adds the missing alias and regenerates the v2 runtime file. Source phrases were already present in all five locale compat files. Linked: keeps Quality-i18n gate green on master. Co-authored-by: Truck Wash Agent --- src/i18n/generated/global-v2.json | 1 + src/i18n/source/global/shared/tables/index.json | 1 + 2 files changed, 2 insertions(+) diff --git a/src/i18n/generated/global-v2.json b/src/i18n/generated/global-v2.json index 5c537aba..f49e35be 100644 --- a/src/i18n/generated/global-v2.json +++ b/src/i18n/generated/global-v2.json @@ -6991,6 +6991,7 @@ "order_id": "@:{'templates.generated.compat.objects.columns.order_id'}", "refresh": "@:{'templates.generated.compat.common.refresh'}", "show": "@:{'templates.generated.compat.common.view'}", + "usage_log_empty": "@:{'templates.generated.compat.tables.xlvask.usage_log_empty'}", "usage_log_title": "@:{'templates.generated.compat.tables.xlvask.usage_log_title'}" } }, diff --git a/src/i18n/source/global/shared/tables/index.json b/src/i18n/source/global/shared/tables/index.json index 80246884..a0a04519 100644 --- a/src/i18n/source/global/shared/tables/index.json +++ b/src/i18n/source/global/shared/tables/index.json @@ -207,6 +207,7 @@ "order_id": "@:{'phrases.compat.objects.columns.order_id'}", "refresh": "@:{'phrases.compat.common.refresh'}", "show": "@:{'phrases.compat.common.view'}", + "usage_log_empty": "@:{'phrases.compat.tables.xlvask.usage_log_empty'}", "usage_log_title": "@:{'phrases.compat.tables.xlvask.usage_log_title'}" } }