fix: use localised strings for qr password toggle button

pull/3083/head
William Grant 11 months ago
parent 67f27636d8
commit 452b1b8539

@ -381,6 +381,7 @@
"orJoinOneOfThese": "Or join one of these...",
"otherPlural": "$number$ others",
"otherSingular": "$number$ other",
"passwordView": "View as Password",
"passwordCharacterError": "Password must only contain letters, numbers and symbols",
"passwordCreate": "Create your password",
"passwordLengthError": "Password must be between 6 and 64 characters long",
@ -406,6 +407,7 @@
"pruneSettingDescription": "Delete messages older than 6 months from Communities that have over 2,000 messages.",
"pruneSettingTitle": "Trim Communities",
"publicChatExists": "You are already connected to this community",
"qrView": "View QR",
"quoteThumbnailAlt": "Thumbnail of image from quoted message",
"rateLimitReactMessage": "Slow down! You've sent too many emoji reacts. Try again soon",
"reactionListCountPlural": "And $otherPlural$ have reacted <span>$emoji$</span> to this message",

@ -151,7 +151,7 @@ export const SettingsCategoryRecoveryPassword = () => {
<SpacerMD />
<SessionIconButton
aria-label={isQRVisible ? 'show password button' : 'show qr code button'}
aria-label={isQRVisible ? 'View as password button' : 'View as QR code button'}
iconType={isQRVisible ? 'password' : 'qr'}
iconSize={isQRVisible ? 48 : 'huge'}
iconColor={'var(--text-primary-color)'}
@ -167,7 +167,7 @@ export const SettingsCategoryRecoveryPassword = () => {
marginLeft: isQRVisible ? '-8px' : undefined,
}}
>
{isQRVisible ? 'View as Password' : 'View QR'}
{isQRVisible ? window.i18n('passwordView') : window.i18n('qrView')}
</SessionIconButton>
</SessionSettingsItemWrapper>
{!hideRecoveryPassword ? (

@ -385,6 +385,7 @@ export type LocalizerKeys =
| 'passwordCreate'
| 'passwordLengthError'
| 'passwordTypeError'
| 'passwordView'
| 'passwordViewTitle'
| 'passwordsDoNotMatch'
| 'permissionsSettingsTitle'
@ -406,6 +407,7 @@ export type LocalizerKeys =
| 'pruneSettingDescription'
| 'pruneSettingTitle'
| 'publicChatExists'
| 'qrView'
| 'quoteThumbnailAlt'
| 'rateLimitReactMessage'
| 'reactionListCountPlural'

Loading…
Cancel
Save