diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-02-13 21:28:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-13 21:28:00 +0100 |
commit | 6f1d9eb11880efb900370f1e6857f05dbef5f84a (patch) | |
tree | 906494fac943bd6ae4ecdf1e5460ee590e98afb1 /lib/private/Setup/AbstractDatabase.php | |
parent | b63abdae8c1708693addf1dc3b2f862131e0299d (diff) | |
parent | 524ed97d621ded1aafa0f2f92670765af22ba55f (diff) | |
download | nextcloud-server-6f1d9eb11880efb900370f1e6857f05dbef5f84a.tar.gz nextcloud-server-6f1d9eb11880efb900370f1e6857f05dbef5f84a.zip |
Merge pull request #34178 from nextcloud/replace-user-to-account-or-person
Rename users to account or person
Diffstat (limited to 'lib/private/Setup/AbstractDatabase.php')
-rw-r--r-- | lib/private/Setup/AbstractDatabase.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Setup/AbstractDatabase.php b/lib/private/Setup/AbstractDatabase.php index 82c00cb271a..ef35ecef919 100644 --- a/lib/private/Setup/AbstractDatabase.php +++ b/lib/private/Setup/AbstractDatabase.php @@ -71,9 +71,9 @@ abstract class AbstractDatabase { public function validate($config) { $errors = []; if (empty($config['dbuser']) && empty($config['dbname'])) { - $errors[] = $this->trans->t("Enter the database username and name for %s", [$this->dbprettyname]); + $errors[] = $this->trans->t("Enter the database Login and name for %s", [$this->dbprettyname]); } elseif (empty($config['dbuser'])) { - $errors[] = $this->trans->t("Enter the database username for %s", [$this->dbprettyname]); + $errors[] = $this->trans->t("Enter the database Login for %s", [$this->dbprettyname]); } elseif (empty($config['dbname'])) { $errors[] = $this->trans->t("Enter the database name for %s", [$this->dbprettyname]); } |