diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2022-09-16 09:18:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-16 09:18:24 +0200 |
commit | 77472db0543697f4fcb35a2f8efd38fe5b516af3 (patch) | |
tree | 459d63a6f563cef3af92a465a38e45cd334df03c | |
parent | 6bd6f92850a971bc61e5109f192dcfa9ba806255 (diff) | |
download | nextcloud-server-77472db0543697f4fcb35a2f8efd38fe5b516af3.tar.gz nextcloud-server-77472db0543697f4fcb35a2f8efd38fe5b516af3.zip |
l10n: Correct error messages
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
-rw-r--r-- | lib/private/Setup/AbstractDatabase.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Setup/AbstractDatabase.php b/lib/private/Setup/AbstractDatabase.php index 5ee9548564c..6c67254deba 100644 --- a/lib/private/Setup/AbstractDatabase.php +++ b/lib/private/Setup/AbstractDatabase.php @@ -69,14 +69,14 @@ abstract class AbstractDatabase { public function validate($config) { $errors = []; if (empty($config['dbuser']) && empty($config['dbname'])) { - $errors[] = $this->trans->t("%s enter the database username and name.", [$this->dbprettyname]); + $errors[] = $this->trans->t("Enter the database username and name for %s", [$this->dbprettyname]); } elseif (empty($config['dbuser'])) { - $errors[] = $this->trans->t("%s enter the database username.", [$this->dbprettyname]); + $errors[] = $this->trans->t("Enter the database username for %s", [$this->dbprettyname]); } elseif (empty($config['dbname'])) { - $errors[] = $this->trans->t("%s enter the database name.", [$this->dbprettyname]); + $errors[] = $this->trans->t("Enter the database name for %s", [$this->dbprettyname]); } if (substr_count($config['dbname'], '.') >= 1) { - $errors[] = $this->trans->t("%s you may not use dots in the database name", [$this->dbprettyname]); + $errors[] = $this->trans->t("You cannot use dots in the database name %s", [$this->dbprettyname]); } return $errors; } |