Fix missing i18n strings in the UI
This patch fix all the missing i18n strings in the UI. It also standardize the main title to "Firefox Multi-Account Containers" everywhere we use it in the addon.
This commit is contained in:
@@ -678,7 +678,7 @@ window.assignManager = {
|
||||
}
|
||||
browser.contextMenus.create({
|
||||
id: menuId,
|
||||
title: "Always Open in This Container",
|
||||
title: browser.i18n.getMessage("alwaysOpenSiteInContainer"),
|
||||
checked,
|
||||
type: "checkbox",
|
||||
contexts: ["all"],
|
||||
@@ -692,13 +692,13 @@ window.assignManager = {
|
||||
|
||||
browser.contextMenus.create({
|
||||
id: this.MENU_HIDE_ID,
|
||||
title: "Hide This Container",
|
||||
title: browser.i18n.getMessage("hideThisContainer"),
|
||||
contexts: ["all"],
|
||||
});
|
||||
|
||||
browser.contextMenus.create({
|
||||
id: this.MENU_MOVE_ID,
|
||||
title: "Move Tabs to a New Window",
|
||||
title: browser.i18n.getMessage("moveTabsToANewWindow"),
|
||||
contexts: ["all"],
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user