diff --git a/server/database.js b/server/database.js index 7a0f837..aa36384 100644 --- a/server/database.js +++ b/server/database.js @@ -312,7 +312,7 @@ class Database { */ static backup(version) { if (! this.backupPath) { - console.info("Backup the database"); + console.info("Backing up the database"); this.backupPath = this.dataDir + "kuma.db.bak" + version; fs.copyFileSync(Database.path, this.backupPath); diff --git a/server/server.js b/server/server.js index 59d7203..4f1943c 100644 --- a/server/server.js +++ b/server/server.js @@ -452,7 +452,7 @@ exports.entryPage = "dashboard"; socket.on("setup", async (username, password, callback) => { try { if ((await R.count("user")) !== 0) { - throw new Error("Uptime Kuma has been set up. If you want to setup again, please delete the database."); + throw new Error("Uptime Kuma has been initialized. If you want to run setup again, please delete the database."); } let user = R.dispense("user"); diff --git a/src/languages/en.js b/src/languages/en.js index 4542d72..0c39a32 100644 --- a/src/languages/en.js +++ b/src/languages/en.js @@ -301,6 +301,7 @@ export default { BodyInvalidFormat: "The request body is not valid JSON: ", "Monitor History": "Monitor History:", clearDataOlderThan: "Keep monitor history data for {0} days.", + PasswordsDoNotMatch: "Passwords do not match.", records: "records", "One record": "One record", "Showing {from} to {to} of {count} records": "Showing {from} to {to} of {count} records", diff --git a/src/pages/Setup.vue b/src/pages/Setup.vue index ed8ea3e..ab59521 100644 --- a/src/pages/Setup.vue +++ b/src/pages/Setup.vue @@ -75,7 +75,7 @@ export default { this.processing = true; if (this.password !== this.repeatPassword) { - toast.error("Passwords do not match."); + toast.error(this.$t("PasswordsDoNotMatch")); this.processing = false; return; }