diff options
author | rakekniven <2069590+rakekniven@users.noreply.github.com> | 2022-04-27 08:19:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 08:19:19 +0200 |
commit | d2830612d0c00652d6e99c104224665920369001 (patch) | |
tree | 1ee1050c34d00fd2a540613f079810925d612b92 /apps/settings/lib | |
parent | fec36ca91323fa72d82e5cc964019c2f21bbbca0 (diff) | |
download | nextcloud-server-d2830612d0c00652d6e99c104224665920369001.tar.gz nextcloud-server-d2830612d0c00652d6e99c104224665920369001.zip |
l10n: Improve grammar
Reported at Transifex.
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Diffstat (limited to 'apps/settings/lib')
-rw-r--r-- | apps/settings/lib/Controller/CheckSetupController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index b9f176f97c5..36532878922 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -513,7 +513,7 @@ Raw output empty($status['opcache_statistics']['max_cached_keys']) || ($status['opcache_statistics']['num_cached_keys'] / $status['opcache_statistics']['max_cached_keys'] > 0.9) ) { - $recommendations[] = $this->l10n->t('The maximum number of OPcache keys is nearly exceeded. To assure that all scripts can be hold in cache, it is recommended to apply <code>opcache.max_accelerated_files</code> to your PHP configuration with a value higher than <code>%s</code>.', [($this->iniGetWrapper->getNumeric('opcache.max_accelerated_files') ?: 'currently')]); + $recommendations[] = $this->l10n->t('The maximum number of OPcache keys is nearly exceeded. To assure that all scripts can be kept in the cache, it is recommended to apply <code>opcache.max_accelerated_files</code> to your PHP configuration with a value higher than <code>%s</code>.', [($this->iniGetWrapper->getNumeric('opcache.max_accelerated_files') ?: 'currently')]); } if ( |