diff --git a/chrome/content/zotero/integration/quickFormat.js b/chrome/content/zotero/integration/quickFormat.js index ca66b17b1d..7ed5d4258f 100644 --- a/chrome/content/zotero/integration/quickFormat.js +++ b/chrome/content/zotero/integration/quickFormat.js @@ -49,6 +49,12 @@ var Zotero_QuickFormat = new function () { document.documentElement.setAttribute("hidechrome", true); } + // Include a different key combo in message on Mac + if(Zotero.isMac) { + var qf = document.getElementById('quick-format-guidance'); + qf.setAttribute('about', qf.getAttribute('about') + "Mac"); + } + new WindowDraggingElement(document.getElementById("quick-format-dialog"), window); qfs = document.getElementById("quick-format-search"); diff --git a/chrome/locale/en-US/zotero/zotero.properties b/chrome/locale/en-US/zotero/zotero.properties index 53bcbc1717..e6e44a1c47 100644 --- a/chrome/locale/en-US/zotero/zotero.properties +++ b/chrome/locale/en-US/zotero/zotero.properties @@ -759,4 +759,5 @@ connector.standaloneOpen = Your database cannot be accessed because Zotero Sta firstRunGuidance.saveIcon = Zotero can recognize a reference on this page. Click this icon in the address bar to save the reference to your Zotero library. firstRunGuidance.authorMenu = Zotero lets you specify editors and translators, too. You can turn an author into an editor or translator by selecting from this menu. -firstRunGuidance.quickFormat = Type a title or author to search for a reference. After you've made your selection, click the bubble to add page numbers, prefixes, or suffixes. \ No newline at end of file +firstRunGuidance.quickFormat = Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Ctrl-\u2193 to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly. +firstRunGuidance.quickFormatMac = Type a title or author to search for a reference.\n\nAfter you've made your selection, click the bubble or press Cmd-\u2193 to add page numbers, prefixes, or suffixes. You can also include a page number along with your search terms to add it directly. \ No newline at end of file