diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2021-06-16 16:50:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 16:50:19 +0200 |
commit | cebfe4ba0e834dca11632b1e70c0398030e1ead0 (patch) | |
tree | ba7ae22d20aa0789d2f57c8e18c4bbe82b8d9f94 /lib/base.php | |
parent | ff8cfbb24e49540362c9d9683c14daa40d07f495 (diff) | |
parent | b4b2947248ee07c26b4b2b3e152319dc71c01fe3 (diff) | |
download | nextcloud-server-cebfe4ba0e834dca11632b1e70c0398030e1ead0.tar.gz nextcloud-server-cebfe4ba0e834dca11632b1e70c0398030e1ead0.zip |
Merge pull request #27190 from nextcloud/bugfix/noid/deduplicate-translation
Deduplicate translations and fix double .
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/base.php b/lib/base.php index 66ff2b2a2f8..20065006a8c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -249,17 +249,17 @@ class OC { if (self::$CLI) { echo $l->t('Cannot write into "config" directory!')."\n"; - echo $l->t('This can usually be fixed by giving the webserver write access to the config directory')."\n"; + echo $l->t('This can usually be fixed by giving the webserver write access to the config directory.')."\n"; echo "\n"; - 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"; + 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"; echo $l->t('See %s', [ $urlGenerator->linkToDocs('admin-config') ])."\n"; exit; } else { OC_Template::printErrorPage( $l->t('Cannot write into "config" directory!'), - $l->t('This can usually be fixed by giving the webserver write access to the config directory.') . '. ' - . $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', - [ $urlGenerator->linkToDocs('admin-config') ]), + $l->t('This can usually be fixed by giving the webserver write access to the config directory.') . ' ' + . $l->t('But, if you prefer to keep config.php file read only, set the option "config_is_read_only" to true in it.') . ' ' + . $l->t('See %s', [ $urlGenerator->linkToDocs('admin-config') ]), 503 ); } |