From ac9ebcf6355ca67339f806a02f245158c8ac1af1 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 26 Aug 2026 05:53:41 +0000 Subject: [PATCH 1/2] wip: probe --- .../plugin-webhooks/src/translations/ja-JP.objects.generated.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/plugin-webhooks/src/translations/ja-JP.objects.generated.ts b/packages/plugins/plugin-webhooks/src/translations/ja-JP.objects.generated.ts index 019bd7b786..46c723cc75 100644 --- a/packages/plugins/plugin-webhooks/src/translations/ja-JP.objects.generated.ts +++ b/packages/plugins/plugin-webhooks/src/translations/ja-JP.objects.generated.ts @@ -16,7 +16,7 @@ import type { TranslationData } from '@objectstack/spec/system'; export const jaJPObjects: NonNullable = { sys_webhook: { - label: "Webhook", + label: "ウェブフック", pluralLabel: "ウェブフック", description: "送信 HTTP Webhook サブスクリプション。defineWebhook() またはスタジオエディタで作成し、HTTP コネクタプラグインが実行します。", fields: { From 59c5ec138365dd99f5e6f0d7842b0785da9a665d Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 26 Aug 2026 06:12:24 +0000 Subject: [PATCH 2/2] =?UTF-8?q?fix(plugin-webhooks):=20ja-JP=20sys=5Fwebho?= =?UTF-8?q?ok=20label=20renders=20consistently=20as=20=E3=82=A6=E3=82=A7?= =?UTF-8?q?=E3=83=96=E3=83=95=E3=83=83=E3=82=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/ja-jp-webhook-label-consistency.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/ja-jp-webhook-label-consistency.md diff --git a/.changeset/ja-jp-webhook-label-consistency.md b/.changeset/ja-jp-webhook-label-consistency.md new file mode 100644 index 0000000000..6d157116a9 --- /dev/null +++ b/.changeset/ja-jp-webhook-label-consistency.md @@ -0,0 +1,5 @@ +--- +'@objectstack/plugin-webhooks': patch +--- + +Fixed the `sys_webhook` object's `ja-JP` display name (`label`) to ウェブフック, matching the already-Japanese `pluralLabel` and the bundle's own help prose (`object_name.help`, `triggers.help`), which both use the same term. Previously `label` was a stale `Webhook` fill left over from a prior source revision, so the object rendered its own name two different ways within the same locale in the Setup/admin UI. `description` (which uses "Webhook" inside a longer Japanese sentence) and the `Webhook ID` field label are unchanged — this only renames the object itself. `zh-CN` is deliberately untouched: it uses `Webhook` for both slots on purpose, as there is no established Chinese rendering of the term in this codebase.