diff --git a/models/tracker/src/index.ts b/models/tracker/src/index.ts index 1c264d3d13..99128087c3 100644 --- a/models/tracker/src/index.ts +++ b/models/tracker/src/index.ts @@ -1542,7 +1542,7 @@ export function createModel (builder: Builder): void { }, label: tracker.string.Priority, icon: tracker.icon.PriorityHigh, - keyBinding: ['keyP-keyR'], + keyBinding: ['keyP->keyR'], input: 'any', category: tracker.category.Tracker, target: tracker.class.Issue, diff --git a/models/view/src/plugin.ts b/models/view/src/plugin.ts index 91bd2f3a39..6eafa7956b 100644 --- a/models/view/src/plugin.ts +++ b/models/view/src/plugin.ts @@ -77,7 +77,6 @@ export default mergeIds(viewId, view, { }, string: { Table: '' as IntlString, - Delete: '' as IntlString, Role: '' as IntlString, // Keybaord actions MoveUp: '' as IntlString, @@ -91,7 +90,6 @@ export default mergeIds(viewId, view, { SelectDown: '' as IntlString, ShowPreview: '' as IntlString, ShowActions: '' as IntlString, - Open: '' as IntlString, // Action categories General: '' as IntlString, Navigation: '' as IntlString, diff --git a/plugins/view-assets/lang/en.json b/plugins/view-assets/lang/en.json index 63e024952c..8d8aec5899 100644 --- a/plugins/view-assets/lang/en.json +++ b/plugins/view-assets/lang/en.json @@ -100,6 +100,7 @@ "ShowColors": "Use colors", "Show": "Show", "FilterArrayAll": "includes all", - "FilterArrayAny": "includes any" + "FilterArrayAny": "includes any", + "Or": "Or" } } diff --git a/plugins/view-assets/lang/ru.json b/plugins/view-assets/lang/ru.json index 28e08e1b97..da58b822ca 100644 --- a/plugins/view-assets/lang/ru.json +++ b/plugins/view-assets/lang/ru.json @@ -96,6 +96,7 @@ "ShowColors": "Использовать цвета", "Show": "Отображение", "FilterArrayAll": "содержит все", - "FilterArrayAny": "содержит любое из" + "FilterArrayAny": "содержит любое из", + "Or": "Или" } } diff --git a/plugins/view-resources/src/components/ActionsPopup.svelte b/plugins/view-resources/src/components/ActionsPopup.svelte index 0ff1fc9ccf..671e14fb56 100644 --- a/plugins/view-resources/src/components/ActionsPopup.svelte +++ b/plugins/view-resources/src/components/ActionsPopup.svelte @@ -291,12 +291,12 @@ {#if action.keyBinding} {#each action.keyBinding as key, i} {#if i !== 0} -