Fix missing translations for the context menu

This commit is contained in:
Danny Colin 2023-06-14 16:10:35 -04:00
parent b29ba2094e
commit 639063145e
2 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 1b944a2cbd8577c8ca928729ff1439dd30ce8269 Subproject commit fa5fb497bd4e5c9b7d69407ee593b853cf839009

View file

@ -678,7 +678,7 @@ window.assignManager = {
} }
browser.contextMenus.create({ browser.contextMenus.create({
id: menuId, id: menuId,
title: "Always Open in This Container", title: browser.i18n.getMessage("alwaysOpenSiteInContainer"),
checked, checked,
type: "checkbox", type: "checkbox",
contexts: ["all"], contexts: ["all"],
@ -692,13 +692,13 @@ window.assignManager = {
browser.contextMenus.create({ browser.contextMenus.create({
id: this.MENU_HIDE_ID, id: this.MENU_HIDE_ID,
title: "Hide This Container", title: browser.i18n.getMessage("hideThisContainer"),
contexts: ["all"], contexts: ["all"],
}); });
browser.contextMenus.create({ browser.contextMenus.create({
id: this.MENU_MOVE_ID, id: this.MENU_MOVE_ID,
title: "Move Tabs to a New Window", title: browser.i18n.getMessage("moveTabsToANewWindow"),
contexts: ["all"], contexts: ["all"],
}); });
}, },