www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit f6ac1732f220eae24f5bdbdce8dc369e480726c3
parent a56af4a101b9cf433270997862f853c91fd4f3c2
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 27 Jun 2017 16:23:46 -0400

"Install Browser Extensions" -> "Install Browser Connectors"

And change link from /extensions to /download/connectors

Diffstat:
Mchrome/content/zotero/standalone/standalone.js | 4++--
Mchrome/content/zotero/standalone/standalone.xul | 8++++----
Mchrome/locale/en-US/zotero/standalone.dtd | 4++--
Mresource/config.js | 2+-
4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/chrome/content/zotero/standalone/standalone.js b/chrome/content/zotero/standalone/standalone.js @@ -165,8 +165,8 @@ const ZoteroStandalone = new function() { ZoteroPane.loadURI(ZOTERO_CONFIG.FEEDBACK_URL); break; - case "extensions": - ZoteroPane.loadURI(ZOTERO_CONFIG.EXTENSIONS_URL); + case "connectors": + ZoteroPane.loadURI(ZOTERO_CONFIG.CONNECTORS_URL); break; default: diff --git a/chrome/content/zotero/standalone/standalone.xul b/chrome/content/zotero/standalone/standalone.xul @@ -199,10 +199,10 @@ label="&helpFeedbackPage.label;" oncommand="ZoteroStandalone.openHelp('feedback');"/> <menuseparator/> - <menuitem id="installBrowserExtensions" - accessKey="&helpInstallBrowserExtensions.accesskey;" - label="&helpInstallBrowserExtensions.label;" - oncommand="ZoteroStandalone.openHelp('extensions');"/> + <menuitem id="installBrowserConnectors" + accessKey="&helpInstallBrowserConnectors.accesskey;" + label="&helpInstallBrowserConnectors.label;" + oncommand="ZoteroStandalone.openHelp('connectors');"/> <menuseparator/> <menuitem id="reportErrors" accesskey="&helpReportErrors.accesskey;" diff --git a/chrome/locale/en-US/zotero/standalone.dtd b/chrome/locale/en-US/zotero/standalone.dtd @@ -71,8 +71,8 @@ <!ENTITY helpFeedbackPage.label "Submit Feedback…"> <!ENTITY helpFeedbackPage.accesskey "S"> -<!ENTITY helpInstallBrowserExtensions.accesskey "B"> -<!ENTITY helpInstallBrowserExtensions.label "Install Browser Extensions…"> +<!ENTITY helpInstallBrowserConnectors.accesskey "C"> +<!ENTITY helpInstallBrowserConnectors.label "Install Browser Connectors…"> <!ENTITY helpReportErrors.label "Report Errors to Zotero…"> <!ENTITY helpReportErrors.accesskey "R"> diff --git a/resource/config.js b/resource/config.js @@ -21,7 +21,7 @@ var ZOTERO_CONFIG = { SUPPORT_URL: "https://www.zotero.org/support/", TROUBLESHOOTING_URL: "https://www.zotero.org/support/getting_help", FEEDBACK_URL: "https://forums.zotero.org/", - EXTENSIONS_URL: "https://www.zotero.org/extensions" + CONNECTORS_URL: "https://www.zotero.org/download/connectors" }; EXPORTED_SYMBOLS = ["ZOTERO_CONFIG"];