Add missing strings to _locales folder

This commit is contained in:
Fedor Indutny 2021-09-07 12:41:14 -07:00 committed by GitHub
parent 71b50aae00
commit 5c7972893c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View file

@ -6155,7 +6155,7 @@
},
"Preferences__button--chats": {
"message": "Chats",
"description": "Button to switch the settings view"
"description": "Button to switch the settings view (and a title of pane)"
},
"Preferences__button--calls": {
"message": "Calls",
@ -6279,6 +6279,14 @@
"message": "Automatically download updates",
"description": "Label for checkbox for the auto download updates setting"
},
"Preferences__enable-notifications": {
"message": "Enable notifications",
"description": "Label for checkbox for the notifications setting"
},
"Preferences__devices": {
"message": "Devices",
"description": "Label for Device list in call settings pane"
},
"DialogUpdate--version-available": {
"message": "Update to version $version$ available",
"description": "Tooltip for new update available",

View file

@ -498,7 +498,7 @@ export const Preferences = ({
{i18n('Preferences__button--chats')}
</div>
</div>
<SettingsRow title="Chats">
<SettingsRow title={i18n('Preferences__button--chats')}>
<Checkbox
checked={hasSpellCheck}
description={spellCheckDirtyText}
@ -588,7 +588,7 @@ export const Preferences = ({
onChange={onCallRingtoneNotificationChange}
/>
</SettingsRow>
<SettingsRow title="Devices">
<SettingsRow title={i18n('Preferences__devices')}>
<Control
left={
<>
@ -715,7 +715,7 @@ export const Preferences = ({
<SettingsRow>
<Checkbox
checked={hasNotifications}
label="Enable notifications"
label={i18n('Preferences__enable-notifications')}
moduleClassName="Preferences__checkbox"
name="notifications"
onChange={onNotificationsChange}