String tidy-up.

This commit is contained in:
Dave Page 2021-03-12 14:52:33 +00:00
parent 8031961205
commit ec199e5e49
3 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ function checkConfiguration() {
saveConfiguration();
})
.catch(() => {
alert('The specified fixed port is already in use. Please provide any other valid port.');
alert('The port specified is already in use. Please enter a free port number.');
});
} else {
saveConfiguration();
@ -40,7 +40,7 @@ function saveConfiguration() {
document.getElementById('status-text').innerHTML = 'Configuration Saved';
if (confirm('The pgAdmin 4 must be restarted for changes to take effect.\n\n Do you want to quit the application?') == true) {
if (confirm('pgAdmin 4 must be restarted for changes to take effect.\n\n Do you want to quit the application?') == true) {
misc.cleanupAndQuitApp();
}
configWindow.close();

View File

@ -152,7 +152,7 @@ const readServerLog = () => {
if (fs.existsSync(serverLogFile)) {
data = fs.readFileSync(serverLogFile, 'utf8');
} else {
var errMsg = 'Unable to read file ' + serverLogFile + ' not found.';
var errMsg = 'Unable to read file ' + serverLogFile + '.';
console.warn(errMsg);
return errMsg;
}

View File

@ -50,14 +50,14 @@ function createUUID() {
// This functions is used to start the pgAdmin4 server by spawning a
// separate process.
function startDesktopMode() {
// Return if pgadmin server process is already spawned
// Return if pgAdmin server process is already spawned
// Added check for debugging purpose.
if (pgadminServerProcess != null)
return;
var UUID = createUUID();
// Set the environment variable so that pgAdmn 4 server
// start listening on that port.
// Set the environment variables so that pgAdmin 4 server
// starts listening on the appropriate port.
process.env.PGADMIN_INT_PORT = serverPort;
process.env.PGADMIN_INT_KEY = UUID;
process.env.PGADMIN_SERVER_MODE = 'OFF';
@ -80,7 +80,7 @@ function startDesktopMode() {
pgadminServerProcess = spawn(pythonPath, [pgadminFile]);
pgadminServerProcess.on('error', function(err) {
// Log the error into the log file if process failed to launch
misc.writeServerLog('Failed to lauch pgAdmin4 with below error:');
misc.writeServerLog('Failed to launch pgAdmin4. Error:');
misc.writeServerLog(err);
});
@ -287,7 +287,7 @@ splashWindow.on('loaded', function() {
})
.catch((errCode) => {
if (errCode == 'EADDRINUSE') {
alert('The specified fixed port is already in use. Please provide any other valid port.');
alert('The port specified is already in use. Please enter a free port number.');
} else {
alert(errCode);
}