diff --git a/chrome/content/zotero/standalone/standalone.js b/chrome/content/zotero/standalone/standalone.js
index 83262f0e0c..b49c39ab49 100644
--- a/chrome/content/zotero/standalone/standalone.js
+++ b/chrome/content/zotero/standalone/standalone.js
@@ -645,11 +645,11 @@ const ZoteroStandalone = new function() {
};
- this.promptForRestartInSafeMode = async function () {
+ this.promptForRestartInTroubleshootingMode = async function () {
let ps = Services.prompt;
let [title, description] = await document.l10n.formatValues([
- 'restart-in-safe-mode-dialog-title',
- 'restart-in-safe-mode-dialog-description'
+ 'restart-in-troubleshooting-mode-dialog-title',
+ 'restart-in-troubleshooting-mode-dialog-description'
]);
let buttonFlags = ps.BUTTON_POS_0 * ps.BUTTON_TITLE_IS_STRING
+ ps.BUTTON_POS_1 * ps.BUTTON_TITLE_CANCEL;
diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js
index fd83ed14ae..cae6516375 100644
--- a/chrome/content/zotero/zoteroPane.js
+++ b/chrome/content/zotero/zoteroPane.js
@@ -415,7 +415,7 @@ var ZoteroPane = new function()
Zotero.hiDPI = window.devicePixelRatio > 1;
Zotero.hiDPISuffix = Zotero.hiDPI ? "@2x" : "";
- // Show warning in toolbar for 'dev' channel builds and safe mode
+ // Show warning in toolbar for 'dev' channel builds and troubleshooting mode
try {
let isDevBuild = Zotero.version.includes('-dev');
// Uncomment to test
@@ -436,7 +436,7 @@ var ZoteroPane = new function()
label.onclick = function () {
Zotero.Utilities.Internal.quit(true);
};
- label.textContent = 'Safe Mode';
+ label.textContent = 'Troubleshooting Mode';
let syncStop = document.getElementById('zotero-tb-sync-stop');
syncStop.parentNode.insertBefore(label, syncStop);
}
diff --git a/chrome/content/zotero/zoteroPane.xhtml b/chrome/content/zotero/zoteroPane.xhtml
index e23e051b9f..e1c8f84dbc 100644
--- a/chrome/content/zotero/zoteroPane.xhtml
+++ b/chrome/content/zotero/zoteroPane.xhtml
@@ -673,9 +673,9 @@
oncommand="ZoteroStandalone.DebugOutput.restartEnabled()"/>
-
+