Merge pull request #32200 from nextcloud/Valdnet-patch-2

l10n: Correct a typo
This commit is contained in:
Joas Schilling 2022-04-28 10:11:10 +02:00 committed by GitHub
commit c2d9c2b93e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.')
];
}