From f6ac1732f220eae24f5bdbdce8dc369e480726c3 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 27 Jun 2017 16:23:46 -0400 Subject: [PATCH] "Install Browser Extensions" -> "Install Browser Connectors" And change link from /extensions to /download/connectors --- chrome/content/zotero/standalone/standalone.js | 4 ++-- chrome/content/zotero/standalone/standalone.xul | 8 ++++---- chrome/locale/en-US/zotero/standalone.dtd | 4 ++-- resource/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 index dd11907848..d884b6d936 100644 --- 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 index 4dcd22b903..c1856d53a9 100644 --- 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');"/> - + - - + + diff --git a/resource/config.js b/resource/config.js index 0457ce11ea..4113ecd862 100644 --- 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"];