File tree 10 files changed +20
-11
lines changed
10 files changed +20
-11
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @clerk/localizations ' : patch
3
+ ' @clerk/types ' : patch
4
+ ---
5
+
6
+ Update ` socialButtonsBlockButtonManyInView ` to only accept ` '${string}{{provider|titleize}}${string}' ` or ` undefined ` .
Original file line number Diff line number Diff line change @@ -547,7 +547,7 @@ export const beBY: LocalizationResource = {
547
547
} ,
548
548
} ,
549
549
socialButtonsBlockButton : 'Працягнуць з дапамогай {{provider|titleize}}' ,
550
- socialButtonsBlockButtonManyInView : 'Увядзіце дадатковыя спосабы ўваходу' ,
550
+ socialButtonsBlockButtonManyInView : undefined ,
551
551
552
552
unstable__errors : {
553
553
already_a_member_in_organization : 'Вы ўжо з’яўляецеся членам гэтай арганізацыі.' ,
Original file line number Diff line number Diff line change @@ -540,7 +540,7 @@ export const csCZ: LocalizationResource = {
540
540
} ,
541
541
} ,
542
542
socialButtonsBlockButton : 'Pokračovat s {{provider|titleize}}' ,
543
- socialButtonsBlockButtonManyInView : 'Máme více možností přihlášení.' ,
543
+ socialButtonsBlockButtonManyInView : undefined ,
544
544
unstable__errors : {
545
545
already_a_member_in_organization : 'Již jste členem organizace.' ,
546
546
captcha_invalid :
Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ export const daDK: LocalizationResource = {
542
542
} ,
543
543
} ,
544
544
socialButtonsBlockButton : 'Forsæt med {{provider|titleize}}' ,
545
- socialButtonsBlockButtonManyInView : 'Vælg en metode til at fortsætte' ,
545
+ socialButtonsBlockButtonManyInView : undefined ,
546
546
unstable__errors : {
547
547
already_a_member_in_organization : undefined ,
548
548
captcha_invalid :
Original file line number Diff line number Diff line change @@ -547,8 +547,7 @@ export const deDE: LocalizationResource = {
547
547
} ,
548
548
} ,
549
549
socialButtonsBlockButton : 'Weiter mit {{provider|titleize}}' ,
550
- socialButtonsBlockButtonManyInView :
551
- 'Zu viele Buttons angezeigt. Reduzieren Sie die Anzahl der Buttons, um fortzufahren.' ,
550
+ socialButtonsBlockButtonManyInView : undefined ,
552
551
unstable__errors : {
553
552
already_a_member_in_organization : 'Sie sind bereits Mitglied in dieser Organisation.' ,
554
553
captcha_invalid :
Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ export const esES: LocalizationResource = {
549
549
} ,
550
550
} ,
551
551
socialButtonsBlockButton : 'Continuar con {{provider|titleize}}' ,
552
- socialButtonsBlockButtonManyInView : 'Demasiados botones sociales visibles. Desplázate para ver más.' ,
552
+ socialButtonsBlockButtonManyInView : undefined ,
553
553
unstable__errors : {
554
554
already_a_member_in_organization : '{{email}} ya es miembro de la organización.' ,
555
555
captcha_invalid :
Original file line number Diff line number Diff line change @@ -548,7 +548,7 @@ export const frFR: LocalizationResource = {
548
548
} ,
549
549
} ,
550
550
socialButtonsBlockButton : 'Continuer avec {{provider|titleize}}' ,
551
- socialButtonsBlockButtonManyInView : 'Afficher plus de boutons sociaux' ,
551
+ socialButtonsBlockButtonManyInView : undefined ,
552
552
unstable__errors : {
553
553
already_a_member_in_organization : 'Vous êtes déjà membre de cette organisation.' ,
554
554
captcha_invalid :
Original file line number Diff line number Diff line change @@ -543,8 +543,7 @@ export const itIT: LocalizationResource = {
543
543
} ,
544
544
} ,
545
545
socialButtonsBlockButton : 'Continua con {{provider|titleize}}' ,
546
- socialButtonsBlockButtonManyInView : 'Continua con uno dei seguenti provider' ,
547
-
546
+ socialButtonsBlockButtonManyInView : undefined ,
548
547
unstable__errors : {
549
548
already_a_member_in_organization : 'Sei già un membro di questa organizzazione.' ,
550
549
captcha_invalid :
Original file line number Diff line number Diff line change @@ -543,7 +543,7 @@ export const ptPT: LocalizationResource = {
543
543
} ,
544
544
} ,
545
545
socialButtonsBlockButton : 'Continuar com {{provider|titleize}}' ,
546
- socialButtonsBlockButtonManyInView : 'Escolha uma das opções abaixo' ,
546
+ socialButtonsBlockButtonManyInView : undefined ,
547
547
unstable__errors : {
548
548
already_a_member_in_organization : 'Já é membro nesta organização.' ,
549
549
captcha_invalid :
Original file line number Diff line number Diff line change @@ -25,7 +25,12 @@ type _LocalizationResource = {
25
25
[ r : string ] : LocalizationValue ;
26
26
} ;
27
27
socialButtonsBlockButton : LocalizationValue ;
28
- socialButtonsBlockButtonManyInView : LocalizationValue ;
28
+ /**
29
+ * It should be used to provide a shorter variation of `socialButtonsBlockButton`.
30
+ * It is explicitly typed, in order to avoid contributions that use LLM tools to generate
31
+ * translations that misinterpret the correct usage of this property.
32
+ */
33
+ socialButtonsBlockButtonManyInView : `${string } {{provider|titleize}}${string } `;
29
34
dividerText : LocalizationValue ;
30
35
formFieldLabel__emailAddress : LocalizationValue ;
31
36
formFieldLabel__emailAddresses : LocalizationValue ;
You can’t perform that action at this time.
0 commit comments