remove duplicated key translation

This commit is contained in:
Audric Ackermann 2020-09-01 15:30:15 +10:00
parent 0e75510e5b
commit d670a47d5c
No known key found for this signature in database
GPG key ID: 999F434D76324AD4
4 changed files with 4 additions and 29 deletions

View file

@ -532,7 +532,6 @@
"androidKey": "BucketedThreadMedia_This_month",
"ignoreCase": true,
"sentenceCase": true
},
"voiceMessage": {
"message": "Voice Message",
@ -1893,12 +1892,6 @@
"message": "Password must only contain letters, numbers and symbols",
"description": "Error string shown to the user when password contains an invalid character"
},
"change": {
"message": "Change"
},
"set": {
"message": "Set"
},
"remove": {
"message": "Remove",
"androidKey": "ClearProfileActivity_remove"
@ -2007,15 +2000,9 @@
"message": "Enter a display name",
"androidKey": "activity_display_name_edit_text_hint"
},
"optionalPassword": {
"message": "Verify Password"
},
"enterOptionalPassword": {
"message": "Enter password (optional)"
},
"verifyPassword": {
"message": "Verify Password"
},
"devicePairingHeaderReassure": {
"message": "Linking may take up to one minute to register on your primary device. Please be patient."
},

View file

@ -752,7 +752,7 @@
"description": "Used in alt tag of image attachment"
},
"videoAttachmentAlt": {
"message": "Capture d.écran de la vidéo jointe au message",
"message": "Capture d'écran de la vidéo jointe au message",
"description": "Used in alt tag of video attachment preview"
},
"lightboxImageAlt": {

View file

@ -1715,12 +1715,6 @@
"message": "Password must only contain letters, numbers and symbols",
"description": "Error string shown to the user when password contains an invalid character"
},
"change": {
"message": "Change"
},
"set": {
"message": "Set"
},
"invalidPubkeyFormat": {
"message": "Invalid Pubkey Format",
"description": "Error string shown when user types an invalid pubkey format"
@ -1774,15 +1768,9 @@
"message": "Anonymous",
"description": "The name of currently unidentified users"
},
"optionalPassword": {
"message": "Verify Password"
},
"enterOptionalPassword": {
"message": "Введите пароль (если используется)"
},
"verifyPassword": {
"message": "Verify Password"
},
"devicePairingHeaderReassure": {
"message": "Linking may take up to one minute to register on your primary device. Please be patient."
},

View file

@ -494,7 +494,7 @@ export class RegistrationTabs extends React.Component<{}, State> {
/>
<SessionInput
label={window.i18n('optionalPassword')}
label={window.i18n('confirmPassword')}
error={this.state.passwordErrorString}
type="password"
placeholder={window.i18n('enterOptionalPassword')}
@ -509,10 +509,10 @@ export class RegistrationTabs extends React.Component<{}, State> {
{!!password && (
<SessionInput
label={window.i18n('verifyPassword')}
label={window.i18n('confirmPassword')}
error={passwordsDoNotMatch}
type="password"
placeholder={window.i18n('verifyPassword')}
placeholder={window.i18n('confirmPassword')}
maxLength={window.CONSTANTS.MAX_PASSWORD_LENGTH}
onValueChanged={(val: string) => {
this.onPasswordVerifyChanged(val);