summaryrefslogtreecommitdiffstats
path: root/core/setup
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-02-25 17:46:41 +0100
committerLukas Reschke <lukas@owncloud.com>2015-02-25 17:46:41 +0100
commit921a76ae2e4550d242c384f53af54f09e21b4fb6 (patch)
tree1b67d79296ca14a0be81a7eb2fa61af973a7cea8 /core/setup
parent14c592fe865748f38dd6ee31634d053f83a8e791 (diff)
parent649a1ba2550afb12a0cfbadfdd5fec03001fc0e9 (diff)
downloadnextcloud-server-921a76ae2e4550d242c384f53af54f09e21b4fb6.tar.gz
nextcloud-server-921a76ae2e4550d242c384f53af54f09e21b4fb6.zip
Merge pull request #14245 from cmeh/master
Message clean-up
Diffstat (limited to 'core/setup')
-rw-r--r--core/setup/controller.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/setup/controller.php b/core/setup/controller.php
index dfd7e0d8d96..a354b3bf9af 100644
--- a/core/setup/controller.php
+++ b/core/setup/controller.php
@@ -118,7 +118,7 @@ class Controller {
public function loadAutoConfig($post) {
if( file_exists($this->autoConfigFile)) {
- \OC_Log::write('core', 'Autoconfig file found, setting up owncloud...', \OC_Log::INFO);
+ \OC_Log::write('core', 'Autoconfig file found, setting up ownCloud…', \OC_Log::INFO);
$AUTOCONFIG = array();
include $this->autoConfigFile;
$post = array_merge ($post, $AUTOCONFIG);
@@ -188,7 +188,7 @@ class Controller {
$errors[] = array(
'error' => $this->l10n->t(
'It seems that this %s instance is running on a 32-bit PHP environment and the open_basedir has been configured in php.ini. ' .
- 'This will lead to problems with files over 4GB and is highly discouraged.',
+ 'This will lead to problems with files over 4 GB and is highly discouraged.',
$this->defaults->getName()
),
'hint' => $this->l10n->t('Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.')
@@ -198,7 +198,7 @@ class Controller {
$errors[] = array(
'error' => $this->l10n->t(
'It seems that this %s instance is running on a 32-bit PHP environment and cURL is not installed. ' .
- 'This will lead to problems with files over 4GB and is highly discouraged.',
+ 'This will lead to problems with files over 4 GB and is highly discouraged.',
$this->defaults->getName()
),
'hint' => $this->l10n->t('Please install the cURL extension and restart your webserver.')