Update setupchecks.js

Fixed typo and removed doclink symbol.
Reported at transifex

Update util.php

Another l10n improvement from transifex.

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
rakekniven 2017-05-30 10:29:18 +02:00 committed by Morris Jobke
parent 86b4ebc457
commit e7e0d1b8a1
3 changed files with 4 additions and 4 deletions

View File

@ -152,7 +152,7 @@
messages.push({ messages.push({
msg: t( msg: t(
'core', 'core',
'The PHP Opcache is not properly configured. <a target="_blank" rel="noreferrer" href="{docLink}">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:', 'The PHP OPcache is not properly configured. <a target="_blank" rel="noreferrer" href="{docLink}">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:',
{ {
docLink: data.phpOpcacheDocumentation, docLink: data.phpOpcacheDocumentation,
} }

View File

@ -433,7 +433,7 @@ describe('OC.SetupChecks tests', function() {
async.done(function( data, s, x ){ async.done(function( data, s, x ){
expect(data).toEqual([{ expect(data).toEqual([{
msg: 'The PHP Opcache is not properly configured. <a href="https://example.org/link/to/doc" rel="noreferrer">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:' + "<pre><code>opcache.enable=1\nopcache.enable_cli=1\nopcache.interned_strings_buffer=8\nopcache.max_accelerated_files=10000\nopcache.memory_consumption=128\nopcache.save_comments=1\nopcache.revalidate_freq=1</code></pre>", msg: 'The PHP OPcache is not properly configured. <a href="https://example.org/link/to/doc" rel="noreferrer">For better performance we recommend</a> to use following settings in the <code>php.ini</code>:' + "<pre><code>opcache.enable=1\nopcache.enable_cli=1\nopcache.interned_strings_buffer=8\nopcache.max_accelerated_files=10000\nopcache.memory_consumption=128\nopcache.save_comments=1\nopcache.revalidate_freq=1</code></pre>",
type: OC.SetupChecks.MESSAGE_TYPE_INFO type: OC.SetupChecks.MESSAGE_TYPE_INFO
}]); }]);
done(); done();

View File

@ -997,8 +997,8 @@ class OC_Util {
if (!file_exists($dataDirectory . '/.ocdata')) { if (!file_exists($dataDirectory . '/.ocdata')) {
$errors[] = [ $errors[] = [
'error' => $l->t('Your data directory is invalid'), 'error' => $l->t('Your data directory is invalid'),
'hint' => $l->t('Please check that the data directory contains a file' . 'hint' => $l->t('Ensure there is a file called ".ocdata"' .
' ".ocdata" in its root.') ' in the root of the data directory.')
]; ];
} }
return $errors; return $errors;