diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-12-15 17:27:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 17:27:26 +0100 |
commit | 03889d1297169b15afbddfa0a38eaf97acc8e247 (patch) | |
tree | c248ba0e221b36f221c3170e6410dd4da2817fcc /lib/base.php | |
parent | 2881e4beb3b85386f72025ec4caaad26e5a83464 (diff) | |
download | nextcloud-server-03889d1297169b15afbddfa0a38eaf97acc8e247.tar.gz nextcloud-server-03889d1297169b15afbddfa0a38eaf97acc8e247.zip |
l10n: Separate words
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/base.php b/lib/base.php index 78dba4f835e..75459fc6b42 100644 --- a/lib/base.php +++ b/lib/base.php @@ -250,7 +250,7 @@ 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 web server write access to the config directory.')."\n"; echo "\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"; @@ -258,7 +258,7 @@ class OC { } 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('This can usually be fixed by giving the web server 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 @@ -610,7 +610,7 @@ class OC { } //try to configure php to enable big file uploads. - //this doesn´t work always depending on the webserver and php configuration. + //this doesn´t work always depending on the web server and php configuration. //Let´s try to overwrite some defaults anyway //try to set the maximum execution time to 60min |