Skip to content

Commit cebfe4b

Browse files
Merge pull request #27190 from nextcloud/bugfix/noid/deduplicate-translation
Deduplicate translations and fix double .
2 parents ff8cfbb + b4b2947 commit cebfe4b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/base.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -249,17 +249,17 @@ public static function checkConfig() {
249249

250250
if (self::$CLI) {
251251
echo $l->t('Cannot write into "config" directory!')."\n";
252-
echo $l->t('This can usually be fixed by giving the webserver write access to the config directory')."\n";
252+
echo $l->t('This can usually be fixed by giving the webserver write access to the config directory.')."\n";
253253
echo "\n";
254-
echo $l->t('Or, if you prefer to keep config.php file read only, set the option "config_is_read_only" to true in it.')."\n";
254+
echo $l->t('But, if you prefer to keep config.php file read only, set the option "config_is_read_only" to true in it.')."\n";
255255
echo $l->t('See %s', [ $urlGenerator->linkToDocs('admin-config') ])."\n";
256256
exit;
257257
} else {
258258
OC_Template::printErrorPage(
259259
$l->t('Cannot write into "config" directory!'),
260-
$l->t('This can usually be fixed by giving the webserver write access to the config directory.') . '. '
261-
. $l->t('Or, if you prefer to keep config.php file read only, set the option "config_is_read_only" to true in it. See %s',
262-
[ $urlGenerator->linkToDocs('admin-config') ]),
260+
$l->t('This can usually be fixed by giving the webserver write access to the config directory.') . ' '
261+
. $l->t('But, if you prefer to keep config.php file read only, set the option "config_is_read_only" to true in it.') . ' '
262+
. $l->t('See %s', [ $urlGenerator->linkToDocs('admin-config') ]),
263263
503
264264
);
265265
}

0 commit comments

Comments
 (0)