diff options
author | Joas Schilling <coding@schilljs.com> | 2021-05-27 15:37:39 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-06-04 09:47:17 +0200 |
commit | b4b2947248ee07c26b4b2b3e152319dc71c01fe3 (patch) | |
tree | 300dba6ea32fbb82172ec5d85f025912b825fbdc /lib/base.php | |
parent | 46dbc8fa988176e4a431cafcbae6674fb613c899 (diff) | |
download | nextcloud-server-b4b2947248ee07c26b4b2b3e152319dc71c01fe3.tar.gz nextcloud-server-b4b2947248ee07c26b4b2b3e152319dc71c01fe3.zip |
Deduplicate translations and fix double .
Signed-off-by: Joas Schilling <coding@schilljs.com>
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 b433806ac38..16779f90e1b 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 ); } |