From a80e5c3a6527f032b15fcf9c2f5fe7ee5306e190 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Thu, 19 Mar 2020 15:46:32 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=BA?= =?UTF-8?q?=D0=B8=20=D1=82=D0=B5=D0=BA=D1=81=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Reader/SettingsPage/UserHotKeys/UserHotKeys.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/components/Reader/SettingsPage/UserHotKeys/UserHotKeys.vue b/client/components/Reader/SettingsPage/UserHotKeys/UserHotKeys.vue index 969f7d06..00045b6b 100644 --- a/client/components/Reader/SettingsPage/UserHotKeys/UserHotKeys.vue +++ b/client/components/Reader/SettingsPage/UserHotKeys/UserHotKeys.vue @@ -2,9 +2,9 @@
-
Действие
+
Команда
- Сочетания клавиш + Сочетание клавиш `${rstore.readerActions[action]}`); - this.$root.stdDialog.alert(`Сочетание '${code}' одновременно назначено
следующим действиям:
${descs.join('
')}

+ this.$root.stdDialog.alert(`Сочетание '${code}' одновременно назначено
следующим командам:
${descs.join('
')}

Возможно неожиданное поведение.`, 'Предупреждение'); } } @@ -184,7 +184,7 @@ class UserHotKeys extends UserHotKeysProps { async defaultHotKey(action) { try { - if (await this.$root.stdDialog.confirm(`Подтвердите сброс сочетаний клавиш
в значения по умолчанию для действия:
${rstore.readerActions[action]}`, ' ')) { + if (await this.$root.stdDialog.confirm(`Подтвердите сброс сочетаний клавиш
в значения по умолчанию для команды:
${rstore.readerActions[action]}`, ' ')) { const codes = Array.from(rstore.settingDefaults.userHotKeys[action]); const newValue = Object.assign({}, this.value, {[action]: codes}); this.$emit('input', newValue); @@ -196,7 +196,7 @@ class UserHotKeys extends UserHotKeysProps { async defaultHotKeyAll() { try { - if (await this.$root.stdDialog.confirm('Подтвердите сброс ВСЕХ сочетаний
клавиш в значения по умолчанию:', ' ')) { + if (await this.$root.stdDialog.confirm('Подтвердите сброс сочетаний клавиш
для ВСЕХ команд в значения по умолчанию:', ' ')) { const newValue = Object.assign({}, rstore.settingDefaults.userHotKeys); this.$emit('input', newValue); }