diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-05-20 10:26:42 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-05-20 10:26:42 +0200 |
commit | 1e59be2d2d8ee702d0a1fcf23e7c8264fcd11eae (patch) | |
tree | b3af9de9b81cc24fafae1deee19feefe6eb2bcd2 | |
parent | 9be6d8cd39f2f6eed83de79280995606dbe5d3fa (diff) | |
parent | 35207ae3638d2a38f30b184fe934a11eb7815feb (diff) | |
download | nextcloud-server-1e59be2d2d8ee702d0a1fcf23e7c8264fcd11eae.tar.gz nextcloud-server-1e59be2d2d8ee702d0a1fcf23e7c8264fcd11eae.zip |
Merge pull request #16453 from cmeh/patch-6
Clean-up of orthography, grammar
-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.') ); } |