diff --git a/src/public/app/dialogs/export.js b/src/public/app/dialogs/export.js index b600ade80..bd1892044 100644 --- a/src/public/app/dialogs/export.js +++ b/src/public/app/dialogs/export.js @@ -129,7 +129,7 @@ ws.subscribeToMessages(async message => { toastService.showPersistent(makeToast(message.taskId, "Export in progress: " + message.progressCount)); } else if (message.type === 'task-succeeded') { - const toast = makeToast(message.taskId, "Import finished successfully."); + const toast = makeToast(message.taskId, "Export finished successfully."); toast.closeAfter = 5000; toastService.showPersistent(toast); diff --git a/src/public/app/dialogs/options/appearance.js b/src/public/app/dialogs/options/appearance.js index 0891ccfa6..c4ecfd314 100644 --- a/src/public/app/dialogs/options/appearance.js +++ b/src/public/app/dialogs/options/appearance.js @@ -29,7 +29,7 @@ const TPL = ` -
Zooming can be controlled with CTRL-+ and CTRL-= shortcuts as well.
+Zooming can be controlled with CTRL+- and CTRL+= shortcuts as well.