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

And change link from /extensions to /download/connectors
This commit is contained in:
Dan Stillman 2017-06-27 16:23:46 -04:00
parent a56af4a101
commit f6ac1732f2
4 changed files with 9 additions and 9 deletions

View File

@ -165,8 +165,8 @@ const ZoteroStandalone = new function() {
ZoteroPane.loadURI(ZOTERO_CONFIG.FEEDBACK_URL); ZoteroPane.loadURI(ZOTERO_CONFIG.FEEDBACK_URL);
break; break;
case "extensions": case "connectors":
ZoteroPane.loadURI(ZOTERO_CONFIG.EXTENSIONS_URL); ZoteroPane.loadURI(ZOTERO_CONFIG.CONNECTORS_URL);
break; break;
default: default:

View File

@ -199,10 +199,10 @@
label="&helpFeedbackPage.label;" label="&helpFeedbackPage.label;"
oncommand="ZoteroStandalone.openHelp('feedback');"/> oncommand="ZoteroStandalone.openHelp('feedback');"/>
<menuseparator/> <menuseparator/>
<menuitem id="installBrowserExtensions" <menuitem id="installBrowserConnectors"
accessKey="&helpInstallBrowserExtensions.accesskey;" accessKey="&helpInstallBrowserConnectors.accesskey;"
label="&helpInstallBrowserExtensions.label;" label="&helpInstallBrowserConnectors.label;"
oncommand="ZoteroStandalone.openHelp('extensions');"/> oncommand="ZoteroStandalone.openHelp('connectors');"/>
<menuseparator/> <menuseparator/>
<menuitem id="reportErrors" <menuitem id="reportErrors"
accesskey="&helpReportErrors.accesskey;" accesskey="&helpReportErrors.accesskey;"

View File

@ -71,8 +71,8 @@
<!ENTITY helpFeedbackPage.label "Submit Feedback…"> <!ENTITY helpFeedbackPage.label "Submit Feedback…">
<!ENTITY helpFeedbackPage.accesskey "S"> <!ENTITY helpFeedbackPage.accesskey "S">
<!ENTITY helpInstallBrowserExtensions.accesskey "B"> <!ENTITY helpInstallBrowserConnectors.accesskey "C">
<!ENTITY helpInstallBrowserExtensions.label "Install Browser Extensions…"> <!ENTITY helpInstallBrowserConnectors.label "Install Browser Connectors…">
<!ENTITY helpReportErrors.label "Report Errors to Zotero…"> <!ENTITY helpReportErrors.label "Report Errors to Zotero…">
<!ENTITY helpReportErrors.accesskey "R"> <!ENTITY helpReportErrors.accesskey "R">

View File

@ -21,7 +21,7 @@ var ZOTERO_CONFIG = {
SUPPORT_URL: "https://www.zotero.org/support/", SUPPORT_URL: "https://www.zotero.org/support/",
TROUBLESHOOTING_URL: "https://www.zotero.org/support/getting_help", TROUBLESHOOTING_URL: "https://www.zotero.org/support/getting_help",
FEEDBACK_URL: "https://forums.zotero.org/", 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"]; EXPORTED_SYMBOLS = ["ZOTERO_CONFIG"];