Fix typos

This commit is contained in:
Karl Ludwig Weise
2025-09-25 11:56:57 +02:00
parent e4a3a76b74
commit 516eee1aec
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -142,7 +142,7 @@
"success": "Mandant hinzugefügt",
"errors": {
"nameTaken": "Konnte Mandant nicht hinzufügen. Dieser Name ist bereits vergeben.",
"unkonwn": "Konnte Mandant nicht hinzufügen",
"unknown": "Konnte Mandant nicht hinzufügen",
"emailTaken": "Konnte Mandant nicht hinzufügen. Diese E-Mail Adresse wird bereits verwendet."
},
"hint": "Make sure DNS is already pointing to this server. Changes may take some time to spread."
@@ -251,7 +251,7 @@
"action": "Akteur:in hinzufügen",
"success": "Akteur:in hinzugefügt",
"errors": {
"unkonwn": "Konnte Akteur:in nicht hinzufügen"
"unknown": "Konnte Akteur:in nicht hinzufügen"
}
},
"list": {
+3 -3
View File
@@ -14,7 +14,7 @@
"description": "Well start by adding your admin account. It will be used to manage this instance.",
"action": "Send Verification E-Mail",
"success": "Account created!",
"error": "An unkonwn error occured."
"error": "An unknown error occured."
},
"verify_email": {
"title": "Check your E-Mail",
@@ -150,7 +150,7 @@
"success": "Tenant added",
"errors": {
"nameTaken": "Could not add tenant. This name is already taken.",
"unkonwn": "Could not add tenant",
"unknown": "Could not add tenant",
"emailTaken": "Could not add tenant. This E-Mail Address is already in use.",
"startEndDash": "Cannot start or end with a dash"
}
@@ -260,7 +260,7 @@
"action": "Add Agent",
"success": "Agent added",
"errors": {
"unkonwn": "Could not add agent"
"unknown": "Could not add agent"
}
},
"list": {
@@ -20,7 +20,7 @@
toast.success(m["agents.add.success"]());
done();
} else if (event.result.type === "failure") {
toast.error(m["agents.add.errors.unkonwn"]());
toast.error(m["agents.add.errors.unknown"]());
}
isSubmitting = false;
},
@@ -27,7 +27,7 @@
toast.error(m["tenants.add.errors.nameTaken"]());
break;
default:
toast.error(m["tenants.add.errors.unkonwn"]());
toast.error(m["tenants.add.errors.unknown"]());
}
}
isSubmitting = false;