Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/chatty-fishes-speak.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@clerk/localizations": patch
---

Add legal consent related localization to `ja-JP`
7 changes: 4 additions & 3 deletions packages/localizations/src/ja-JP.ts
Original file line number Diff line number Diff line change
Expand Up @@ -599,9 +599,10 @@ export const jaJP: LocalizationResource = {
},
legalConsent: {
checkbox: {
label__onlyPrivacyPolicy: undefined,
label__onlyTermsOfService: undefined,
label__termsOfServiceAndPrivacyPolicy: undefined,
label__onlyPrivacyPolicy: '{{privacyPolicyLink || link("個人情報保護方針")}}に同意します',
label__onlyTermsOfService: '{{termsOfServiceLink || link("利用規約")}}に同意します',
label__termsOfServiceAndPrivacyPolicy:
'{{termsOfServiceLink || link("利用規約")}}と{{privacyPolicyLink || link("個人情報保護方針")}}に同意します',
},
continue: {
subtitle: undefined,
Expand Down