Skip to content

Commit f794337

Browse files
committed
chore(i18n): regenerate platform-objects bundles for the new recorded_by help text (#4556)
The `description` added to `sys_metadata_history.recorded_by` lands in the i18n schema as that field's `help` string, which made all four platform-objects locale bundles stale and turned `check-i18n-bundles` (in the required `TypeScript Type Check` job) red. Regenerated with `node scripts/check-i18n-bundles.mjs --write` — merge mode, so every existing translation is preserved. The diff is exactly one added `help` key per locale and nothing else; the non-English locales carry the source string, which is this tool's "awaiting translation" state, not a translation claim. Verified after: `node scripts/check-i18n-bundles.mjs` → OK (9 packages, all bundles in sync); `pnpm check:i18n-coverage` → OK (12 configs, none new). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015Br2xsJsczFsTR9bvbh2Ny
1 parent cfb22aa commit f794337

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

packages/platform-objects/src/apps/translations/en.objects.generated.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2746,7 +2746,8 @@ export const enObjects: NonNullable<TranslationData['objects']> = {
27462746
help: "Organization for multi-tenant isolation."
27472747
},
27482748
recorded_by: {
2749-
label: "Recorded By"
2749+
label: "Recorded By",
2750+
help: "User who made this change. NULL = system-initiated (boot sync, migration, scheduled job) — never a sentinel string."
27502751
},
27512752
recorded_at: {
27522753
label: "Recorded At"

packages/platform-objects/src/apps/translations/es-ES.objects.generated.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2746,7 +2746,8 @@ export const esESObjects: NonNullable<TranslationData['objects']> = {
27462746
help: "Organización para el aislamiento multi-tenant."
27472747
},
27482748
recorded_by: {
2749-
label: "Registrado por"
2749+
label: "Registrado por",
2750+
help: "User who made this change. NULL = system-initiated (boot sync, migration, scheduled job) — never a sentinel string."
27502751
},
27512752
recorded_at: {
27522753
label: "Registrado el"

packages/platform-objects/src/apps/translations/ja-JP.objects.generated.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2746,7 +2746,8 @@ export const jaJPObjects: NonNullable<TranslationData['objects']> = {
27462746
help: "マルチテナント分離のための組織。"
27472747
},
27482748
recorded_by: {
2749-
label: "記録者"
2749+
label: "記録者",
2750+
help: "User who made this change. NULL = system-initiated (boot sync, migration, scheduled job) — never a sentinel string."
27502751
},
27512752
recorded_at: {
27522753
label: "記録日時"

packages/platform-objects/src/apps/translations/zh-CN.objects.generated.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2746,7 +2746,8 @@ export const zhCNObjects: NonNullable<TranslationData['objects']> = {
27462746
help: "用于多租户隔离的组织。"
27472747
},
27482748
recorded_by: {
2749-
label: "记录人"
2749+
label: "记录人",
2750+
help: "User who made this change. NULL = system-initiated (boot sync, migration, scheduled job) — never a sentinel string."
27502751
},
27512752
recorded_at: {
27522753
label: "记录时间"

0 commit comments

Comments
 (0)