remove duplicated key translation

pull/1320/head
Audric Ackermann 5 years ago
parent 0e75510e5b
commit d670a47d5c
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

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

@ -752,7 +752,7 @@
"description": "Used in alt tag of image attachment" "description": "Used in alt tag of image attachment"
}, },
"videoAttachmentAlt": { "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" "description": "Used in alt tag of video attachment preview"
}, },
"lightboxImageAlt": { "lightboxImageAlt": {

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

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

Loading…
Cancel
Save