Cleaning-up messages
**Changes:** * In line 103, the middle "c" of "owncloud" is capitalised to "ownCloud". * A space is inserted between value and unit in lines 177 and 187 ("4 GB" instead of "4GB").
This commit is contained in:
parent
09a0bf22df
commit
46c34d6867
|
@ -100,7 +100,7 @@ class Controller {
|
||||||
|
|
||||||
public function loadAutoConfig($post) {
|
public function loadAutoConfig($post) {
|
||||||
if( file_exists($this->autoConfigFile)) {
|
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();
|
$AUTOCONFIG = array();
|
||||||
include $this->autoConfigFile;
|
include $this->autoConfigFile;
|
||||||
$post = array_merge ($post, $AUTOCONFIG);
|
$post = array_merge ($post, $AUTOCONFIG);
|
||||||
|
@ -174,7 +174,7 @@ class Controller {
|
||||||
$errors[] = array(
|
$errors[] = array(
|
||||||
'error' => $this->l10n->t(
|
'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. ' .
|
'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()
|
$this->defaults->getName()
|
||||||
),
|
),
|
||||||
'hint' => $this->l10n->t('Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.')
|
'hint' => $this->l10n->t('Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.')
|
||||||
|
@ -184,7 +184,7 @@ class Controller {
|
||||||
$errors[] = array(
|
$errors[] = array(
|
||||||
'error' => $this->l10n->t(
|
'error' => $this->l10n->t(
|
||||||
'It seems that this %s instance is running on a 32-bit PHP environment and cURL is not installed. ' .
|
'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()
|
$this->defaults->getName()
|
||||||
),
|
),
|
||||||
'hint' => $this->l10n->t('Please install the cURL extension and restart your webserver.')
|
'hint' => $this->l10n->t('Please install the cURL extension and restart your webserver.')
|
||||||
|
|
Loading…
Reference in New Issue