diff options
author | Christian Hoffmann <cmeh@users.noreply.github.com> | 2015-05-19 21:15:22 +0200 |
---|---|---|
committer | Christian Hoffmann <cmeh@users.noreply.github.com> | 2015-05-19 21:15:22 +0200 |
commit | 35207ae3638d2a38f30b184fe934a11eb7815feb (patch) | |
tree | 0381e777b0716b4b79357243efb87ead8d6a2071 | |
parent | f59576c3ca9ca8e4708002fffe8d4b14135dcd6b (diff) | |
download | nextcloud-server-35207ae3638d2a38f30b184fe934a11eb7815feb.tar.gz nextcloud-server-35207ae3638d2a38f30b184fe934a11eb7815feb.zip |
Clean-up of orthography, grammar
* Changed "instead to" to "instead of".
* Changed "setup" to "set up" (past participle).
-rw-r--r-- | lib/private/util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/util.php b/lib/private/util.php index 3842d775b24..4288f8e293a 100644 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -749,14 +749,14 @@ class OC_Util { if($iniWrapper->getBool('mbstring.func_overload') !== null && $iniWrapper->getBool('mbstring.func_overload') === true) { $errors[] = array( - 'error' => $l->t('mbstring.func_overload is set to "%s" instead to the expected value "0"', [$iniWrapper->getString('mbstring.func_overload')]), + 'error' => $l->t('mbstring.func_overload is set to "%s" instead of the expected value "0"', [$iniWrapper->getString('mbstring.func_overload')]), 'hint' => $l->t('To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini') ); } if (!self::isAnnotationsWorking()) { $errors[] = array( - 'error' => $l->t('PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.'), + 'error' => $l->t('PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible.'), 'hint' => $l->t('This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.') ); } |