diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2022-09-16 09:22:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-16 09:22:01 +0200 |
commit | 6bdc1f863151b10bb2a236e52f3c12e51e02a0e9 (patch) | |
tree | 0a78d6e15f6ed2f9eb9bbadc79c1be63798500b9 /lib/private/Setup | |
parent | 77472db0543697f4fcb35a2f8efd38fe5b516af3 (diff) | |
download | nextcloud-server-6bdc1f863151b10bb2a236e52f3c12e51e02a0e9.tar.gz nextcloud-server-6bdc1f863151b10bb2a236e52f3c12e51e02a0e9.zip |
l10n: Correct error messages
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'lib/private/Setup')
-rw-r--r-- | lib/private/Setup/OCI.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Setup/OCI.php b/lib/private/Setup/OCI.php index 2348aa8d47d..477561bbe2a 100644 --- a/lib/private/Setup/OCI.php +++ b/lib/private/Setup/OCI.php @@ -53,11 +53,11 @@ class OCI extends 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]); } return $errors; } |