Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2022-04-28 09:30:49 +0300
committerGitHub <noreply@github.com>2022-04-28 09:30:49 +0300
commit71e31c3b862618720b4b5523e9de9ef5ba6abb2c (patch)
treed2066b6717dd6e08625a08642b0ef47acdd86c03
parentf0df06ed311ec6004d14fb6b439d30b4cf223fbb (diff)
l10n: Correct a typo
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
-rw-r--r--lib/private/legacy/OC_Util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/OC_Util.php b/lib/private/legacy/OC_Util.php
index b353cac5c5f..ee7fb517d98 100644
--- a/lib/private/legacy/OC_Util.php
+++ b/lib/private/legacy/OC_Util.php
@@ -739,7 +739,7 @@ class OC_Util {
foreach (['secret', 'instanceid', 'passwordsalt'] as $requiredConfig) {
if ($config->getValue($requiredConfig, '') === '' && !\OC::$CLI && $config->getValue('installed', false)) {
$errors[] = [
- 'error' => $l->t('The required %s config variable is not configued in the config.php file.', [$requiredConfig]),
+ 'error' => $l->t('The required %s config variable is not configured in the config.php file.', [$requiredConfig]),
'hint' => $l->t('Please ask your server administrator to check the Nextcloud configuration.')
];
}