- Do you want to use the Olympus Manager in basic or Expert mode?
+ Do you want to use the Olympus Manager in Basic or Expert mode?
Basic mode is recommended for most users.
diff --git a/manager/javascripts/dcsinstance.js b/manager/javascripts/dcsinstance.js
index 73ce935e..4f5c87ff 100644
--- a/manager/javascripts/dcsinstance.js
+++ b/manager/javascripts/dcsinstance.js
@@ -174,7 +174,7 @@ class DCSInstance {
this.redCommanderPasswordEdited = false;
} catch (err) {
- showErrorPopup(`
A critical error has occurred while reading your Olympus configuration file.
Please, manually reinstall olympus in ${this.folder}.
`)
+ showErrorPopup(`
A critical error has occurred while reading your Olympus configuration file.
Please manually reinstall Olympus in ${this.folder} using either the installation Wizard or the Expert view.
`)
logger.error(err)
}
diff --git a/manager/javascripts/manager.js b/manager/javascripts/manager.js
index 91848635..1d59808a 100644
--- a/manager/javascripts/manager.js
+++ b/manager/javascripts/manager.js
@@ -534,7 +534,7 @@ class Manager {
if (frontendPortFree && backendPortFree) {
return true;
} else {
- showErrorPopup(`
Please, make sure both the frontend and backend ports are free!
If ports are already in use, Olympus will not be able to communicated correctly.
`);
+ showErrorPopup(`
Please make sure both the frontend and backend ports are free!
If ports are already in use, Olympus will not be able to communicated correctly.
`);
return false;
}
}
@@ -546,10 +546,10 @@ class Manager {
}
else {
if (!this.getActiveInstance().arePasswordsSet()) {
- showErrorPopup(`
Please, make sure all passwords are set!
The role users will fulfill depends on the password they enter at login.
`);
+ showErrorPopup(`
Please make sure all passwords are set!
The role users will fulfill depends on the password they enter at login.
`);
return false;
} else if (!this.getActiveInstance().arePasswordsDifferent()) {
- showErrorPopup(`
Please, set different passwords!
The role users will fulfill depends on the password they enter at login.
`);
+ showErrorPopup(`
Please set different passwords!
The role users will fulfill depends on the password they enter at login.
`);
return false;
} else {
return true;