From f29f87ad5b9e19cebb91b0a04f65723d2d52ad9c Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 4 Feb 2024 06:22:03 -0500 Subject: [PATCH] Fix missing "Edit Saved Search" label Regression from f8108aca45 https://forums.zotero.org/discussion/111486/zotero-7-beta-edit-saved-search-from-right-click-on-a-saved-search-collection --- chrome/content/zotero/zoteroPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index 869ff6306e..ef88bd5fa1 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -3468,7 +3468,7 @@ var ZoteroPane = new function() } // Adjust labels - document.l10n.setAttributes(m.editSelectedCollection, 'collections-menu-modify-saved-search'); + document.l10n.setAttributes(m.editSelectedCollection, 'collections-menu-edit-saved-search'); m.duplicate.setAttribute('label', Zotero.getString('pane.collections.menu.duplicate.savedSearch')); m.deleteCollection.setAttribute('label', Zotero.getString('pane.collections.menu.delete.savedSearch')); m.exportCollection.setAttribute('label', Zotero.getString('pane.collections.menu.export.savedSearch'));