aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2021-03-02 20:46:55 +0100
committerGitHub <noreply@github.com>2021-03-02 20:46:55 +0100
commit3b5c8d792dc0986a749e0b23022d48d20a5f2d6c (patch)
tree6792e4ca9664d6ebef5f59c230e72062b72b5549
parent04dc321ee732afb95dee8ddc226fd3dc0bd9fd64 (diff)
parent2b6cda99d3ddaea068816eb79e2eddabe9565c99 (diff)
downloadnextcloud-server-3b5c8d792dc0986a749e0b23022d48d20a5f2d6c.tar.gz
nextcloud-server-3b5c8d792dc0986a749e0b23022d48d20a5f2d6c.zip
Merge pull request #25874 from nextcloud/Valdnet-patch-4
l10n: Correct text strings
-rw-r--r--core/js/setupchecks.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index 665030681f1..82d8b649af1 100644
--- a/core/js/setupchecks.js
+++ b/core/js/setupchecks.js
@@ -248,7 +248,7 @@
}
if (data.cronInfo.diffInSeconds > 3600) {
messages.push({
- msg: t('core', 'Last background job execution ran {relativeTime}. Something seems wrong. {linkstart}Check the background job settings ↗{linkend}', {relativeTime: data.cronInfo.relativeTime})
+ msg: t('core', 'Last background job execution ran {relativeTime}. Something seems wrong. {linkstart}Check the background job settings ↗{linkend}.', {relativeTime: data.cronInfo.relativeTime})
.replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.cronInfo.backgroundJobsUrl + '">')
.replace('{linkend}', '</a>'),
type: OC.SetupChecks.MESSAGE_TYPE_ERROR
@@ -331,7 +331,7 @@
});
} else if(!data.isOpcacheProperlySetup) {
messages.push({
- msg: t('core', 'The PHP OPcache is not properly configured. {linkstart}For better performance it is recommended ↗{linkend} to use the following settings in the <code>php.ini</code>:')
+ msg: t('core', 'The PHP OPcache module is not properly configured. {linkstart}For better performance it is recommended ↗{linkend} to use the following settings in the <code>php.ini</code>:')
.replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.phpOpcacheDocumentation + '">')
.replace('{linkend}', '</a>') + "<pre><code>opcache.enable=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