diff --git a/addon/src/_locales/en/messages.json b/addon/src/_locales/en/messages.json index 28e48f34..110d264f 100644 --- a/addon/src/_locales/en/messages.json +++ b/addon/src/_locales/en/messages.json @@ -99,6 +99,10 @@ "message": "Open \"Manage Groups\" in new tab", "description": "Open \"Manage Groups\" in new tab" }, + "openGroupsInNewWindow": { + "message": "Always open groups in new window", + "description": "Always open groups in new window" + }, "showConfirmDialogBeforeGroupDelete": { "message": "Show confirmation dialog before deleting the group", "description": "Show confirmation dialog before deleting the group" diff --git a/addon/src/js/constants.js b/addon/src/js/constants.js index 8929436a..652157ae 100644 --- a/addon/src/js/constants.js +++ b/addon/src/js/constants.js @@ -281,6 +281,7 @@ export const DEFAULT_OPTIONS = Object.freeze({ alwaysAskNewGroupName: true, createNewGroupWhenOpenNewWindow: false, openManageGroupsInTab: true, + openGroupsInNewWindow: false, showConfirmDialogBeforeGroupArchiving: true, showConfirmDialogBeforeGroupDelete: true, showNotificationAfterGroupDelete: true, diff --git a/addon/src/options/Options.vue b/addon/src/options/Options.vue index eabbc301..7caa5c3e 100644 --- a/addon/src/options/Options.vue +++ b/addon/src/options/Options.vue @@ -735,6 +735,12 @@ +