Add missing strings to _locales
folder
This commit is contained in:
parent
71b50aae00
commit
5c7972893c
2 changed files with 12 additions and 4 deletions
|
@ -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",
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue