From ff529cfc2a6bb56f63b85b2a8db4c8f3bde05164 Mon Sep 17 00:00:00 2001 From: MaartenKoller Date: Fri, 30 Jan 2026 11:58:41 +0100 Subject: [PATCH 1/3] Update nl-NL.ts add missing primary button text --- packages/localizations/src/nl-NL.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/localizations/src/nl-NL.ts b/packages/localizations/src/nl-NL.ts index a65897a463b..134bf99e582 100644 --- a/packages/localizations/src/nl-NL.ts +++ b/packages/localizations/src/nl-NL.ts @@ -459,7 +459,7 @@ export const nlNL: LocalizationResource = { headerTitle__general: 'Algemeen', headerTitle__members: 'Leden', profileSection: { - primaryButton: '', + primaryButton: 'Profiel aanpassen', title: 'Organisatieprofiel', uploadAction__title: 'Logo', }, From e480f464f82c487807c02da1aa04a95707cdbf27 Mon Sep 17 00:00:00 2001 From: Maarten Date: Fri, 6 Mar 2026 10:00:46 +0100 Subject: [PATCH 2/3] add missing dutch text on button for editing profile for organisations --- .changeset/free-rivers-cheer.md | 9 +++++++++ packages/localizations/src/nl-NL.ts | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .changeset/free-rivers-cheer.md diff --git a/.changeset/free-rivers-cheer.md b/.changeset/free-rivers-cheer.md new file mode 100644 index 00000000000..76a138835c6 --- /dev/null +++ b/.changeset/free-rivers-cheer.md @@ -0,0 +1,9 @@ +--- +"@clerk/localizations": major +--- + +Add the missing Dutch translation for `organizationProfile.start.profileSection.primaryButton`. + +This updates the value from an empty string to `"Profiel bijwerken"` so the primary button label is shown correctly in the organization profile section. + +No consumer code changes are required. diff --git a/packages/localizations/src/nl-NL.ts b/packages/localizations/src/nl-NL.ts index c2827b6601b..579070d341f 100644 --- a/packages/localizations/src/nl-NL.ts +++ b/packages/localizations/src/nl-NL.ts @@ -459,7 +459,7 @@ export const nlNL: LocalizationResource = { headerTitle__general: 'Algemeen', headerTitle__members: 'Leden', profileSection: { - primaryButton: 'Profiel aanpassen', + primaryButton: 'Profiel bijwerken', title: 'Organisatieprofiel', uploadAction__title: 'Logo', }, From 45013e9a13e1d61659381aa0e10f17bc81ea2bd9 Mon Sep 17 00:00:00 2001 From: Maarten Date: Fri, 6 Mar 2026 10:10:27 +0100 Subject: [PATCH 3/3] auto generated 'major' was overstating the impact --- .changeset/free-rivers-cheer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/free-rivers-cheer.md b/.changeset/free-rivers-cheer.md index 76a138835c6..65a1f0d305a 100644 --- a/.changeset/free-rivers-cheer.md +++ b/.changeset/free-rivers-cheer.md @@ -1,5 +1,5 @@ --- -"@clerk/localizations": major +"@clerk/localizations": patch --- Add the missing Dutch translation for `organizationProfile.start.profileSection.primaryButton`.