summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/Command/Encryption/DecryptAll.php22
-rw-r--r--core/Command/Encryption/EncryptAll.php22
-rw-r--r--core/Command/Maintenance/SingleUser.php79
-rw-r--r--core/css/guest.css8
-rw-r--r--core/js/js.js24
-rw-r--r--core/js/setupchecks.js12
-rw-r--r--core/js/share.js2
-rw-r--r--core/js/tests/specs/coreSpec.js24
-rw-r--r--core/js/tests/specs/setupchecksSpec.js37
-rw-r--r--core/js/tests/specs/shareSpec.js14
-rw-r--r--core/l10n/bg.js (renamed from core/l10n/bg_BG.js)0
-rw-r--r--core/l10n/bg.json (renamed from core/l10n/bg_BG.json)0
-rw-r--r--core/l10n/cs.js (renamed from core/l10n/cs_CZ.js)0
-rw-r--r--core/l10n/cs.json (renamed from core/l10n/cs_CZ.json)0
-rw-r--r--core/l10n/da.js32
-rw-r--r--core/l10n/da.json32
-rw-r--r--core/l10n/de.js7
-rw-r--r--core/l10n/de.json7
-rw-r--r--core/l10n/de_DE.js5
-rw-r--r--core/l10n/de_DE.json5
-rw-r--r--core/l10n/es.js5
-rw-r--r--core/l10n/es.json5
-rw-r--r--core/l10n/eu.js2
-rw-r--r--core/l10n/eu.json2
-rw-r--r--core/l10n/fi.js (renamed from core/l10n/fi_FI.js)18
-rw-r--r--core/l10n/fi.json (renamed from core/l10n/fi_FI.json)18
-rw-r--r--core/l10n/fr.js3
-rw-r--r--core/l10n/fr.json3
-rw-r--r--core/l10n/hu.js (renamed from core/l10n/hu_HU.js)0
-rw-r--r--core/l10n/hu.json (renamed from core/l10n/hu_HU.json)0
-rw-r--r--core/l10n/is.js2
-rw-r--r--core/l10n/is.json2
-rw-r--r--core/l10n/it.js4
-rw-r--r--core/l10n/it.json4
-rw-r--r--core/l10n/ja.js3
-rw-r--r--core/l10n/ja.json3
-rw-r--r--core/l10n/lv.js5
-rw-r--r--core/l10n/lv.json5
-rw-r--r--core/l10n/nb.js (renamed from core/l10n/nb_NO.js)0
-rw-r--r--core/l10n/nb.json (renamed from core/l10n/nb_NO.json)0
-rw-r--r--core/l10n/nl.js3
-rw-r--r--core/l10n/nl.json3
-rw-r--r--core/l10n/pl.js9
-rw-r--r--core/l10n/pl.json9
-rw-r--r--core/l10n/pt_BR.js3
-rw-r--r--core/l10n/pt_BR.json3
-rw-r--r--core/l10n/ru.js3
-rw-r--r--core/l10n/ru.json3
-rw-r--r--core/l10n/sk.js (renamed from core/l10n/sk_SK.js)0
-rw-r--r--core/l10n/sk.json (renamed from core/l10n/sk_SK.json)0
-rw-r--r--core/l10n/th.js (renamed from core/l10n/th_TH.js)0
-rw-r--r--core/l10n/th.json (renamed from core/l10n/th_TH.json)0
-rw-r--r--core/l10n/zh_CN.js3
-rw-r--r--core/l10n/zh_CN.json3
-rw-r--r--core/register_command.php1
55 files changed, 315 insertions, 144 deletions
diff --git a/core/Command/Encryption/DecryptAll.php b/core/Command/Encryption/DecryptAll.php
index e02d7be5bb6..a2c306adc28 100644
--- a/core/Command/Encryption/DecryptAll.php
+++ b/core/Command/Encryption/DecryptAll.php
@@ -54,7 +54,7 @@ class DecryptAll extends Command {
protected $wasTrashbinEnabled;
/** @var bool */
- protected $wasSingleUserModeEnabled;
+ protected $wasMaintenanceModeEnabled;
/** @var \OC\Encryption\DecryptAll */
protected $decryptAll;
@@ -83,20 +83,20 @@ class DecryptAll extends Command {
}
/**
- * Set single user mode and disable the trashbin app
+ * Set maintenance mode and disable the trashbin app
*/
- protected function forceSingleUserAndTrashbin() {
+ protected function forceMaintenanceAndTrashbin() {
$this->wasTrashbinEnabled = $this->appManager->isEnabledForUser('files_trashbin');
- $this->wasSingleUserModeEnabled = $this->config->getSystemValue('singleuser', false);
- $this->config->setSystemValue('singleuser', true);
+ $this->wasMaintenanceModeEnabled = $this->config->getSystemValue('maintenance', false);
+ $this->config->setSystemValue('maintenance', true);
$this->appManager->disableApp('files_trashbin');
}
/**
- * Reset the single user mode and re-enable the trashbin app
+ * Reset the maintenance mode and re-enable the trashbin app
*/
- protected function resetSingleUserAndTrashbin() {
- $this->config->setSystemValue('singleuser', $this->wasSingleUserModeEnabled);
+ protected function resetMaintenanceAndTrashbin() {
+ $this->config->setSystemValue('maintenance', $this->wasMaintenanceModeEnabled);
if ($this->wasTrashbinEnabled) {
$this->appManager->enableApp('files_trashbin');
}
@@ -147,7 +147,7 @@ class DecryptAll extends Command {
$output->writeln('');
$question = new ConfirmationQuestion('Do you really want to continue? (y/n) ', false);
if ($this->questionHelper->ask($input, $output, $question)) {
- $this->forceSingleUserAndTrashbin();
+ $this->forceMaintenanceAndTrashbin();
$user = $input->getArgument('user');
$result = $this->decryptAll->decryptAll($input, $output, $user);
if ($result === false) {
@@ -158,7 +158,7 @@ class DecryptAll extends Command {
$output->writeln('Server side encryption remains enabled');
$this->config->setAppValue('core', 'encryption_enabled', 'yes');
}
- $this->resetSingleUserAndTrashbin();
+ $this->resetMaintenanceAndTrashbin();
} else {
$output->write('Enable server side encryption... ');
$this->config->setAppValue('core', 'encryption_enabled', 'yes');
@@ -168,7 +168,7 @@ class DecryptAll extends Command {
} catch (\Exception $e) {
// enable server side encryption again if something went wrong
$this->config->setAppValue('core', 'encryption_enabled', 'yes');
- $this->resetSingleUserAndTrashbin();
+ $this->resetMaintenanceAndTrashbin();
throw $e;
}
diff --git a/core/Command/Encryption/EncryptAll.php b/core/Command/Encryption/EncryptAll.php
index f26c163aa2f..3a0c88c0798 100644
--- a/core/Command/Encryption/EncryptAll.php
+++ b/core/Command/Encryption/EncryptAll.php
@@ -50,7 +50,7 @@ class EncryptAll extends Command {
protected $wasTrashbinEnabled;
/** @var bool */
- protected $wasSingleUserModeEnabled;
+ protected $wasMaintenanceModeEnabled;
/**
* @param IManager $encryptionManager
@@ -72,20 +72,20 @@ class EncryptAll extends Command {
}
/**
- * Set single user mode and disable the trashbin app
+ * Set maintenance mode and disable the trashbin app
*/
- protected function forceSingleUserAndTrashbin() {
+ protected function forceMaintenanceAndTrashbin() {
$this->wasTrashbinEnabled = $this->appManager->isEnabledForUser('files_trashbin');
- $this->wasSingleUserModeEnabled = $this->config->getSystemValue('singleuser', false);
- $this->config->setSystemValue('singleuser', true);
+ $this->wasMaintenanceModeEnabled = $this->config->getSystemValue('maintenance', false);
+ $this->config->setSystemValue('maintenance', true);
$this->appManager->disableApp('files_trashbin');
}
/**
- * Reset the single user mode and re-enable the trashbin app
+ * Reset the maintenance mode and re-enable the trashbin app
*/
- protected function resetSingleUserAndTrashbin() {
- $this->config->setSystemValue('singleuser', $this->wasSingleUserModeEnabled);
+ protected function resetMaintenanceAndTrashbin() {
+ $this->config->setSystemValue('maintenance', $this->wasMaintenanceModeEnabled);
if ($this->wasTrashbinEnabled) {
$this->appManager->enableApp('files_trashbin');
}
@@ -116,17 +116,17 @@ class EncryptAll extends Command {
$output->writeln('');
$question = new ConfirmationQuestion('Do you really want to continue? (y/n) ', false);
if ($this->questionHelper->ask($input, $output, $question)) {
- $this->forceSingleUserAndTrashbin();
+ $this->forceMaintenanceAndTrashbin();
try {
$defaultModule = $this->encryptionManager->getEncryptionModule();
$defaultModule->encryptAll($input, $output);
} catch (\Exception $ex) {
- $this->resetSingleUserAndTrashbin();
+ $this->resetMaintenanceAndTrashbin();
throw $ex;
}
- $this->resetSingleUserAndTrashbin();
+ $this->resetMaintenanceAndTrashbin();
} else {
$output->writeln('aborted');
}
diff --git a/core/Command/Maintenance/SingleUser.php b/core/Command/Maintenance/SingleUser.php
deleted file mode 100644
index e4f945596d2..00000000000
--- a/core/Command/Maintenance/SingleUser.php
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-/**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
-
-namespace OC\Core\Command\Maintenance;
-
-use Symfony\Component\Console\Command\Command;
-use Symfony\Component\Console\Input\InputInterface;
-use Symfony\Component\Console\Input\InputOption;
-use Symfony\Component\Console\Output\OutputInterface;
-
-use OCP\IConfig;
-
-class SingleUser extends Command {
-
- /** @var IConfig */
- protected $config;
-
- /**
- * @param IConfig $config
- */
- public function __construct(IConfig $config) {
- $this->config = $config;
- parent::__construct();
- }
-
- protected function configure() {
- $this
- ->setName('maintenance:singleuser')
- ->setDescription('set single user mode')
- ->addOption(
- 'on',
- null,
- InputOption::VALUE_NONE,
- 'enable single user mode'
- )
- ->addOption(
- 'off',
- null,
- InputOption::VALUE_NONE,
- 'disable single user mode'
- );
- }
-
- protected function execute(InputInterface $input, OutputInterface $output) {
- if ($input->getOption('on')) {
- $this->config->setSystemValue('singleuser', true);
- $output->writeln('Single user mode enabled');
- } elseif ($input->getOption('off')) {
- $this->config->setSystemValue('singleuser', false);
- $output->writeln('Single user mode disabled');
- } else {
- if ($this->config->getSystemValue('singleuser', false)) {
- $output->writeln('Single user mode is currently enabled');
- } else {
- $output->writeln('Single user mode is currently disabled');
- }
- }
- }
-}
diff --git a/core/css/guest.css b/core/css/guest.css
index 7549eb265be..e9538e380e6 100644
--- a/core/css/guest.css
+++ b/core/css/guest.css
@@ -434,11 +434,6 @@ form #selectDbType label.ui-state-active {
border-radius: 3px;
cursor: default;
}
-.warning, {
- padding: 5px;
- background: #fdd;
- margin: 0 7px 5px 4px;
-}
.warning legend,
.warning a,
.error a {
@@ -541,6 +536,9 @@ p.info {
.icon-confirm-white {
background-image: url('../img/actions/confirm-white.svg?v=2');
}
+.icon-checkmark-white {
+ background-image: url('../img/actions/checkmark-white.svg?v=1');
+}
/* Loading */
diff --git a/core/js/js.js b/core/js/js.js
index 5ef5c72f625..6fd66c9c9bb 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1536,7 +1536,7 @@ function initCore() {
$(window).resize(_.debounce(adjustControlsWidth, 250));
- $('body').delegate('#app-content', 'apprendered appresized', _.debounce(adjustControlsWidth, 100));
+ $('body').delegate('#app-content', 'apprendered appresized', _.debounce(adjustControlsWidth, 150));
}
@@ -1712,16 +1712,12 @@ OC.Util = {
*
*/
computerFileSize: function (string) {
- if (typeof string != 'string') {
+ if (typeof string !== 'string') {
return null;
}
- var s = string.toLowerCase();
- var bytes = parseFloat(s)
-
- if (!isNaN(bytes) && isFinite(s)) {
- return bytes;
- }
+ var s = string.toLowerCase().trim();
+ var bytes = null;
var bytesArray = {
'b' : 1,
@@ -1737,12 +1733,18 @@ OC.Util = {
'p' : 1024 * 1024 * 1024 * 1024 * 1024
};
- var matches = s.match(/([kmgtp]?b?)$/i);
- if (matches[1]) {
- bytes = bytes * bytesArray[matches[1]];
+ var matches = s.match(/^[\s+]?([0-9]*)(\.([0-9]+))?( +)?([kmgtp]?b?)$/i);
+ if (matches !== null) {
+ bytes = parseFloat(s);
+ if (!isFinite(bytes)) {
+ return null;
+ }
} else {
return null;
}
+ if (matches[5]) {
+ bytes = bytes * bytesArray[matches[5]];
+ }
bytes = Math.round(bytes);
return bytes;
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index 4d2097a5b5d..fcbbba6af62 100644
--- a/core/js/setupchecks.js
+++ b/core/js/setupchecks.js
@@ -148,6 +148,18 @@
type: OC.SetupChecks.MESSAGE_TYPE_ERROR
});
}
+ if(!data.isOpcacheProperlySetup) {
+ messages.push({
+ msg: t(
+ '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>:',
+ {
+ docLink: data.phpOpcacheDocumentation,
+ }
+ ) + "<pre><code>opcache.enable=On\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
+ });
+ }
} else {
messages.push({
msg: t('core', 'Error occurred while checking server setup'),
diff --git a/core/js/share.js b/core/js/share.js
index 913c78bb732..5bde7e63f36 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -302,7 +302,7 @@ OC.Share = _.extend(OC.Share || {}, {
}
action.html('<span> ' + message + '</span>').prepend(icon);
if (owner || recipients) {
- action.find('.remoteAddress').tipsy({gravity: 's'});
+ action.find('.remoteAddress').tooltip({placement: 'top'});
}
}
else {
diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js
index 3380b6be420..dd13cba8e2b 100644
--- a/core/js/tests/specs/coreSpec.js
+++ b/core/js/tests/specs/coreSpec.js
@@ -594,8 +594,14 @@ describe('Core base tests', function() {
it('correctly parses file sizes from a human readable formated string', function() {
var data = [
['125', 125],
- ['125.25', 125.25],
+ ['125.25', 125],
+ ['125.25B', 125],
+ ['125.25 B', 125],
['0 B', 0],
+ ['99999999999999999999999999999999999999999999 B', 99999999999999999999999999999999999999999999],
+ ['0 MB', 0],
+ ['0 kB', 0],
+ ['0kB', 0],
['125 B', 125],
['125b', 125],
['125 KB', 128000],
@@ -605,7 +611,21 @@ describe('Core base tests', function() {
['119.2 GB', 127990025421],
['119.2gb', 127990025421],
['116.4 TB', 127983153473126],
- ['116.4tb', 127983153473126]
+ ['116.4tb', 127983153473126],
+ ['8776656778888777655.4tb', 9.650036181387265e+30],
+ [1234, null],
+ [-1234, null],
+ ['-1234 B', null],
+ ['B', null],
+ ['40/0', null],
+ ['40,30 kb', null],
+ [' 122.1 MB ', 128031130],
+ ['122.1 MB ', 128031130],
+ [' 122.1 MB ', 128031130],
+ [' 122.1 MB ', 128031130],
+ ['122.1 MB ', 128031130],
+ [' 125', 125],
+ [' 125 ', 125],
];
for (var i = 0; i < data.length; i++) {
expect(OC.Util.computerFileSize(data[i][0])).toEqual(data[i][1]);
diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js
index faa8a2bf277..1ee16a7af81 100644
--- a/core/js/tests/specs/setupchecksSpec.js
+++ b/core/js/tests/specs/setupchecksSpec.js
@@ -155,6 +155,7 @@ describe('OC.SetupChecks tests', function() {
forwardedForHeadersWorking: true,
isCorrectMemcachedPHPModuleInstalled: true,
hasPassedCodeIntegrityCheck: true,
+ isOpcacheProperlySetup: true,
})
);
@@ -186,6 +187,7 @@ describe('OC.SetupChecks tests', function() {
forwardedForHeadersWorking: true,
isCorrectMemcachedPHPModuleInstalled: true,
hasPassedCodeIntegrityCheck: true,
+ isOpcacheProperlySetup: true,
})
);
@@ -218,6 +220,7 @@ describe('OC.SetupChecks tests', function() {
forwardedForHeadersWorking: true,
isCorrectMemcachedPHPModuleInstalled: true,
hasPassedCodeIntegrityCheck: true,
+ isOpcacheProperlySetup: true,
})
);
@@ -248,6 +251,7 @@ describe('OC.SetupChecks tests', function() {
forwardedForHeadersWorking: true,
isCorrectMemcachedPHPModuleInstalled: true,
hasPassedCodeIntegrityCheck: true,
+ isOpcacheProperlySetup: true,
})
);
@@ -276,6 +280,7 @@ describe('OC.SetupChecks tests', function() {
forwardedForHeadersWorking: true,
isCorrectMemcachedPHPModuleInstalled: false,
hasPassedCodeIntegrityCheck: true,
+ isOpcacheProperlySetup: true,
})
);
@@ -304,6 +309,7 @@ describe('OC.SetupChecks tests', function() {
reverseProxyDocs: 'https://docs.owncloud.org/foo/bar.html',
isCorrectMemcachedPHPModuleInstalled: true,
hasPassedCodeIntegrityCheck: true,
+ isOpcacheProperlySetup: true,
})
);
@@ -353,6 +359,7 @@ describe('OC.SetupChecks tests', function() {
phpSupported: {eol: true, version: '5.4.0'},
isCorrectMemcachedPHPModuleInstalled: true,
hasPassedCodeIntegrityCheck: true,
+ isOpcacheProperlySetup: true,
})
);
@@ -364,6 +371,36 @@ describe('OC.SetupChecks tests', function() {
done();
});
});
+
+ it('should return an info if server has no proper opcache', function(done) {
+ var async = OC.SetupChecks.checkSetup();
+
+ suite.server.requests[0].respond(
+ 200,
+ {
+ 'Content-Type': 'application/json'
+ },
+ JSON.stringify({
+ isUrandomAvailable: true,
+ securityDocs: 'https://docs.owncloud.org/myDocs.html',
+ serverHasInternetConnection: true,
+ isMemcacheConfigured: true,
+ forwardedForHeadersWorking: true,
+ isCorrectMemcachedPHPModuleInstalled: true,
+ hasPassedCodeIntegrityCheck: true,
+ isOpcacheProperlySetup: false,
+ phpOpcacheDocumentation: 'https://example.org/link/to/doc',
+ })
+ );
+
+ async.done(function( data, s, x ){
+ expect(data).toEqual([{
+ msg: 'The PHP Opcache is not properly configured. <a target="_blank" rel="noreferrer" href="https://example.org/link/to/doc">For better performance we recommend ↗</a> to use following settings in the <code>php.ini</code>:' + "<pre><code>opcache.enable=On\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
+ }]);
+ done();
+ });
+ });
});
describe('checkGeneric', function() {
diff --git a/core/js/tests/specs/shareSpec.js b/core/js/tests/specs/shareSpec.js
index 5c76ea600b8..fbf6eecc8df 100644
--- a/core/js/tests/specs/shareSpec.js
+++ b/core/js/tests/specs/shareSpec.js
@@ -23,10 +23,10 @@
describe('OC.Share tests', function() {
describe('markFileAsShared', function() {
var $file;
- var tipsyStub;
+ var tooltipStub;
beforeEach(function() {
- tipsyStub = sinon.stub($.fn, 'tipsy');
+ tooltipStub = sinon.stub($.fn, 'tooltip');
$file = $('<tr><td class="filename"><div class="thumbnail"></div><span class="name">File name</span></td></tr>');
$file.find('.filename').append(
'<span class="fileactions">' +
@@ -38,7 +38,7 @@ describe('OC.Share tests', function() {
});
afterEach(function() {
$file = null;
- tipsyStub.restore();
+ tooltipStub.restore();
});
describe('displaying the share owner', function() {
function checkOwner(input, output, title) {
@@ -54,8 +54,8 @@ describe('OC.Share tests', function() {
} else {
expect($action.find('.remoteAddress').attr('title')).not.toBeDefined();
}
- expect(tipsyStub.calledOnce).toEqual(true);
- tipsyStub.reset();
+ expect(tooltipStub.calledOnce).toEqual(true);
+ tooltipStub.reset();
}
it('displays the local share owner as is', function() {
@@ -172,8 +172,8 @@ describe('OC.Share tests', function() {
} else {
expect($action.find('.remoteAddress').attr('title')).not.toBeDefined();
}
- expect(tipsyStub.calledOnce).toEqual(true);
- tipsyStub.reset();
+ expect(tooltipStub.calledOnce).toEqual(true);
+ tooltipStub.reset();
}
it('displays the local share owner as is', function() {
diff --git a/core/l10n/bg_BG.js b/core/l10n/bg.js
index 090c9fee4b9..090c9fee4b9 100644
--- a/core/l10n/bg_BG.js
+++ b/core/l10n/bg.js
diff --git a/core/l10n/bg_BG.json b/core/l10n/bg.json
index 8489c60e266..8489c60e266 100644
--- a/core/l10n/bg_BG.json
+++ b/core/l10n/bg.json
diff --git a/core/l10n/cs_CZ.js b/core/l10n/cs.js
index 724a706412d..724a706412d 100644
--- a/core/l10n/cs_CZ.js
+++ b/core/l10n/cs.js
diff --git a/core/l10n/cs_CZ.json b/core/l10n/cs.json
index 186337f1997..186337f1997 100644
--- a/core/l10n/cs_CZ.json
+++ b/core/l10n/cs.json
diff --git a/core/l10n/da.js b/core/l10n/da.js
index 4ff2fb33a7d..92b981b2e15 100644
--- a/core/l10n/da.js
+++ b/core/l10n/da.js
@@ -25,6 +25,7 @@ OC.L10N.register(
"Repair warning: " : "Reparationsadvarsel:",
"Repair error: " : "Reparationsfejl:",
"Please use the command line updater because automatic updating is disabled in the config.php." : "Brug kommandolinje-updateren, da automatisk opdatering er slået fra i config.php",
+ "[%d / %d]: Checking table %s" : "[%d / %d]: Tjekker tabel %s",
"Turned on maintenance mode" : "Startede vedligeholdelsestilstand",
"Turned off maintenance mode" : "standsede vedligeholdelsestilstand",
"Maintenance mode is kept active" : "Vedligeholdelsestilstanden holdes kørende",
@@ -46,10 +47,14 @@ OC.L10N.register(
"Already up to date" : "Allerede opdateret",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : " <a href=\"{docUrl}\">Der var problemer med integritetskontrollen af koden. Mere information...</a>",
"Settings" : "Indstillinger",
+ "Connection to server lost" : "Forbindelsen til serveren er tabt",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Problemer med at hente side, prøver igen om %n sekund","Problemer med at hente side, prøver igen om %n sekunder "],
"Saving..." : "Gemmer...",
"Dismiss" : "Afvis",
+ "This action requires you to confirm your password" : "Denne handling kræver at du bekræfter dit kodeord",
"Password" : "Adgangskode",
"Cancel" : "Annullér",
+ "Confirm" : "Bekræft",
"seconds ago" : "sekunder siden",
"Logging in …" : "Logger ind ...",
"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Linket til at nulstille dit kodeord er blevet sendt til din e-post: hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam/junk-mapper.<br> Hvis det ikke er der, så spørg din lokale administrator.",
@@ -57,6 +62,7 @@ OC.L10N.register(
"Password can not be changed. Please contact your administrator." : "Adgangskoden kunne ikke ændres. Kontakt venligst din administrator.",
"No" : "Nej",
"Yes" : "Ja",
+ "No files in here" : "Ingen filer",
"Choose" : "Vælg",
"Error loading file picker template: {error}" : "Fejl ved indlæsning af filvælger skabelon: {error}",
"Ok" : "OK",
@@ -99,7 +105,9 @@ OC.L10N.register(
"Expiration" : "Udløb",
"Expiration date" : "Udløbsdato",
"Choose a password for the public link" : "Vælg et kodeord til det offentlige link",
+ "Copied!" : "Kopirét!",
"Copy" : "Kopiér",
+ "Not supported!" : "Ikke understøttet!",
"Press ⌘-C to copy." : "Tryk ⌘-C for at kopiere.",
"Press Ctrl-C to copy." : "Tryk Ctrl-C for at kopiere.",
"Resharing is not allowed" : "Videredeling ikke tilladt",
@@ -111,18 +119,35 @@ OC.L10N.register(
"Send" : "Send",
"Shared with you and the group {group} by {owner}" : "Delt med dig og gruppen {group} af {owner}",
"Shared with you by {owner}" : "Delt med dig af {owner}",
+ "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} delt via link",
"group" : "gruppe",
"remote" : "ekstern",
"email" : "e-mail",
"Unshare" : "Fjern deling",
+ "can reshare" : "kan gendele",
"can edit" : "kan redigere",
+ "can create" : "kan oprette",
+ "can change" : "kan ændre",
+ "can delete" : "kan slette",
"access control" : "Adgangskontrol",
"Could not unshare" : "Kunne ikke ophæve deling",
"Share details could not be loaded for this item." : "Detaljer for deling kunne ikke indlæses for dette element.",
"No users or groups found for {search}" : "Ingen brugere eller grupper fundet for {search}",
"No users found for {search}" : "Ingen brugere fundet for {search}",
"An error occurred. Please try again" : "Der opstor den fejl. Prøv igen",
+ "{sharee} (group)" : "{sharee} (gruppe)",
+ "{sharee} (remote)" : "{sharee} (ekstern)",
+ "{sharee} (email)" : "{sharee} (e-mail)",
"Share" : "Del",
+ "Share with people on other servers using their Federated Cloud ID username@example.com/nextcloud" : "Del med andre på en anden server ved hjælp af deres Federated Cloud id username@example.com/cloud ",
+ "Share with users or by mail..." : "Del med andre brugere eller via e-mail...",
+ "Share with users or remote users..." : "Del med brugere eller med eksterne brugere...",
+ "Share with users, remote users or by mail..." : "Del med brugere, eksterne brugere eller via e-mail...",
+ "Share with users or groups..." : "Del med brugere eller grupper...",
+ "Share with users, groups or by mail..." : "Del med brugere, grupper eller via e-mail...",
+ "Share with users, groups or remote users..." : "Del med brugere, brupper eller eksterne brugere...",
+ "Share with users, groups, remote users or by mail..." : "Del med brugere, grupper, eksterne brugere eller via e-mail...",
+ "Share with users..." : "Del med brugere...",
"Error removing share" : "Fejl ved fjernelse af deling",
"Non-existing tag #{tag}" : "Ikke-eksisterende mærke #{tag}",
"restricted" : "begrænset",
@@ -130,6 +155,7 @@ OC.L10N.register(
"({scope})" : "({scope})",
"Delete" : "Slet",
"Rename" : "Omdøb",
+ "No tags found" : "Ingen tags fundet",
"The object type is not specified." : "Objekttypen er ikke angivet.",
"Enter new" : "Indtast nyt",
"Add" : "Tilføj",
@@ -143,6 +169,7 @@ OC.L10N.register(
"Hello {name}" : "Hej {name}",
"new" : "ny",
"_download %n file_::_download %n files_" : ["hent %n fil","hent %n filer"],
+ "Update to {version}" : "Opdatér til {version}",
"An error occurred." : "Der opstod en fejl.",
"Please reload the page." : "Genindlæs venligst siden",
"The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "Opdateringen blev ikke udført korrekt. For mere information <a href=\"{url}\">tjek vores indlæg på forumet</a>, som dækker dette problem.",
@@ -223,6 +250,8 @@ OC.L10N.register(
"This means only administrators can use the instance." : "Det betyder at det kun er administrator, som kan benytte ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet.",
"Thank you for your patience." : "Tak for din tålmodighed.",
+ "Cancel log in" : "Annullér login",
+ "Use backup code" : "Benyt backup-kode",
"You are accessing the server from an untrusted domain." : "Du tilgår serveren fra et utroværdigt domæne",
"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Afhænger af din konfiguration, da du som administrator eventuelt også er i stand til at gøre brug af knappen nedenfor til at tildele tillid til dette domæne.",
"Add \"%s\" as trusted domain" : "Tilføj \"%s\" som et troværdigt domæne",
@@ -234,6 +263,7 @@ OC.L10N.register(
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Sørg venligst for at sikre, at databasen, config-mappen og data-mappen er blevet sikkerhedskopieret inden vi fortsætter.",
"Start update" : "Begynd opdatering",
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "For at undgå tidsudløb ved større installationer, så kan du i stedet køre følgende kommando fra din installationsmappe:",
+ "Detailed logs" : "Detaljerede logs",
"Update needed" : "Opdatering nødvendig",
"This %s instance is currently in maintenance mode, which may take a while." : "Denne %s-instans befinder sig i vedligeholdelsestilstand for øjeblikket, hvilket kan tage et stykke tid.",
"This page will refresh itself when the %s instance is available again." : "Denne side vil genopfriske sig selv, når %s-instancen er tilgængelig igen.",
@@ -301,12 +331,14 @@ OC.L10N.register(
"create" : "opret",
"change" : "tilpas",
"delete" : "slet",
+ "{sharee} (at {server})" : "{sharee} (på {server})",
"Share with users…" : "Del med brugere...",
"Share with users, groups or remote users…" : "Del med brugere, grupper eller eksterne brugere...",
"Share with users or groups…" : "Del med brugere eller grupper...",
"Share with users or remote users…" : "Del med brugere eller eksterne brugere...",
"Warning" : "Advarsel",
"Error while sending notification" : "Fejl ved afsendelse af notifikation",
+ "Updating to {version}" : "Opdatere til {version}",
"No search results in other folders" : "Søgning gav ingen resultater in andre mapper",
"Cancel login" : "Annuller login"
},
diff --git a/core/l10n/da.json b/core/l10n/da.json
index faf0e763e3c..9b3df5d582a 100644
--- a/core/l10n/da.json
+++ b/core/l10n/da.json
@@ -23,6 +23,7 @@
"Repair warning: " : "Reparationsadvarsel:",
"Repair error: " : "Reparationsfejl:",
"Please use the command line updater because automatic updating is disabled in the config.php." : "Brug kommandolinje-updateren, da automatisk opdatering er slået fra i config.php",
+ "[%d / %d]: Checking table %s" : "[%d / %d]: Tjekker tabel %s",
"Turned on maintenance mode" : "Startede vedligeholdelsestilstand",
"Turned off maintenance mode" : "standsede vedligeholdelsestilstand",
"Maintenance mode is kept active" : "Vedligeholdelsestilstanden holdes kørende",
@@ -44,10 +45,14 @@
"Already up to date" : "Allerede opdateret",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : " <a href=\"{docUrl}\">Der var problemer med integritetskontrollen af koden. Mere information...</a>",
"Settings" : "Indstillinger",
+ "Connection to server lost" : "Forbindelsen til serveren er tabt",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Problemer med at hente side, prøver igen om %n sekund","Problemer med at hente side, prøver igen om %n sekunder "],
"Saving..." : "Gemmer...",
"Dismiss" : "Afvis",
+ "This action requires you to confirm your password" : "Denne handling kræver at du bekræfter dit kodeord",
"Password" : "Adgangskode",
"Cancel" : "Annullér",
+ "Confirm" : "Bekræft",
"seconds ago" : "sekunder siden",
"Logging in …" : "Logger ind ...",
"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Linket til at nulstille dit kodeord er blevet sendt til din e-post: hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam/junk-mapper.<br> Hvis det ikke er der, så spørg din lokale administrator.",
@@ -55,6 +60,7 @@
"Password can not be changed. Please contact your administrator." : "Adgangskoden kunne ikke ændres. Kontakt venligst din administrator.",
"No" : "Nej",
"Yes" : "Ja",
+ "No files in here" : "Ingen filer",
"Choose" : "Vælg",
"Error loading file picker template: {error}" : "Fejl ved indlæsning af filvælger skabelon: {error}",
"Ok" : "OK",
@@ -97,7 +103,9 @@
"Expiration" : "Udløb",
"Expiration date" : "Udløbsdato",
"Choose a password for the public link" : "Vælg et kodeord til det offentlige link",
+ "Copied!" : "Kopirét!",
"Copy" : "Kopiér",
+ "Not supported!" : "Ikke understøttet!",
"Press ⌘-C to copy." : "Tryk ⌘-C for at kopiere.",
"Press Ctrl-C to copy." : "Tryk Ctrl-C for at kopiere.",
"Resharing is not allowed" : "Videredeling ikke tilladt",
@@ -109,18 +117,35 @@
"Send" : "Send",
"Shared with you and the group {group} by {owner}" : "Delt med dig og gruppen {group} af {owner}",
"Shared with you by {owner}" : "Delt med dig af {owner}",
+ "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} delt via link",
"group" : "gruppe",
"remote" : "ekstern",
"email" : "e-mail",
"Unshare" : "Fjern deling",
+ "can reshare" : "kan gendele",
"can edit" : "kan redigere",
+ "can create" : "kan oprette",
+ "can change" : "kan ændre",
+ "can delete" : "kan slette",
"access control" : "Adgangskontrol",
"Could not unshare" : "Kunne ikke ophæve deling",
"Share details could not be loaded for this item." : "Detaljer for deling kunne ikke indlæses for dette element.",
"No users or groups found for {search}" : "Ingen brugere eller grupper fundet for {search}",
"No users found for {search}" : "Ingen brugere fundet for {search}",
"An error occurred. Please try again" : "Der opstor den fejl. Prøv igen",
+ "{sharee} (group)" : "{sharee} (gruppe)",
+ "{sharee} (remote)" : "{sharee} (ekstern)",
+ "{sharee} (email)" : "{sharee} (e-mail)",
"Share" : "Del",
+ "Share with people on other servers using their Federated Cloud ID username@example.com/nextcloud" : "Del med andre på en anden server ved hjælp af deres Federated Cloud id username@example.com/cloud ",
+ "Share with users or by mail..." : "Del med andre brugere eller via e-mail...",
+ "Share with users or remote users..." : "Del med brugere eller med eksterne brugere...",
+ "Share with users, remote users or by mail..." : "Del med brugere, eksterne brugere eller via e-mail...",
+ "Share with users or groups..." : "Del med brugere eller grupper...",
+ "Share with users, groups or by mail..." : "Del med brugere, grupper eller via e-mail...",
+ "Share with users, groups or remote users..." : "Del med brugere, brupper eller eksterne brugere...",
+ "Share with users, groups, remote users or by mail..." : "Del med brugere, grupper, eksterne brugere eller via e-mail...",
+ "Share with users..." : "Del med brugere...",
"Error removing share" : "Fejl ved fjernelse af deling",
"Non-existing tag #{tag}" : "Ikke-eksisterende mærke #{tag}",
"restricted" : "begrænset",
@@ -128,6 +153,7 @@
"({scope})" : "({scope})",
"Delete" : "Slet",
"Rename" : "Omdøb",
+ "No tags found" : "Ingen tags fundet",
"The object type is not specified." : "Objekttypen er ikke angivet.",
"Enter new" : "Indtast nyt",
"Add" : "Tilføj",
@@ -141,6 +167,7 @@
"Hello {name}" : "Hej {name}",
"new" : "ny",
"_download %n file_::_download %n files_" : ["hent %n fil","hent %n filer"],
+ "Update to {version}" : "Opdatér til {version}",
"An error occurred." : "Der opstod en fejl.",
"Please reload the page." : "Genindlæs venligst siden",
"The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "Opdateringen blev ikke udført korrekt. For mere information <a href=\"{url}\">tjek vores indlæg på forumet</a>, som dækker dette problem.",
@@ -221,6 +248,8 @@
"This means only administrators can use the instance." : "Det betyder at det kun er administrator, som kan benytte ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet.",
"Thank you for your patience." : "Tak for din tålmodighed.",
+ "Cancel log in" : "Annullér login",
+ "Use backup code" : "Benyt backup-kode",
"You are accessing the server from an untrusted domain." : "Du tilgår serveren fra et utroværdigt domæne",
"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Afhænger af din konfiguration, da du som administrator eventuelt også er i stand til at gøre brug af knappen nedenfor til at tildele tillid til dette domæne.",
"Add \"%s\" as trusted domain" : "Tilføj \"%s\" som et troværdigt domæne",
@@ -232,6 +261,7 @@
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Sørg venligst for at sikre, at databasen, config-mappen og data-mappen er blevet sikkerhedskopieret inden vi fortsætter.",
"Start update" : "Begynd opdatering",
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "For at undgå tidsudløb ved større installationer, så kan du i stedet køre følgende kommando fra din installationsmappe:",
+ "Detailed logs" : "Detaljerede logs",
"Update needed" : "Opdatering nødvendig",
"This %s instance is currently in maintenance mode, which may take a while." : "Denne %s-instans befinder sig i vedligeholdelsestilstand for øjeblikket, hvilket kan tage et stykke tid.",
"This page will refresh itself when the %s instance is available again." : "Denne side vil genopfriske sig selv, når %s-instancen er tilgængelig igen.",
@@ -299,12 +329,14 @@
"create" : "opret",
"change" : "tilpas",
"delete" : "slet",
+ "{sharee} (at {server})" : "{sharee} (på {server})",
"Share with users…" : "Del med brugere...",
"Share with users, groups or remote users…" : "Del med brugere, grupper eller eksterne brugere...",
"Share with users or groups…" : "Del med brugere eller grupper...",
"Share with users or remote users…" : "Del med brugere eller eksterne brugere...",
"Warning" : "Advarsel",
"Error while sending notification" : "Fejl ved afsendelse af notifikation",
+ "Updating to {version}" : "Opdatere til {version}",
"No search results in other folders" : "Søgning gav ingen resultater in andre mapper",
"Cancel login" : "Annuller login"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
diff --git a/core/l10n/de.js b/core/l10n/de.js
index 15403713f57..379f07877b3 100644
--- a/core/l10n/de.js
+++ b/core/l10n/de.js
@@ -59,7 +59,7 @@ OC.L10N.register(
"Failed to authenticate, try again" : "Legitimierung fehlgeschlagen, noch einmal versuchen",
"seconds ago" : "Gerade eben",
"Logging in …" : "Melde an ...",
- "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Der Link zum Rücksetzen deines Passwortes ist an deine E-Mail-Adresse versandt worden. Solltest du in Kürze keine entsprechende E-Mail erhalten, überprüfe bitte deinen Spam-Ordner.<br>Ansonsten kannst du dich bei deinem lokalen Administrator melden.",
+ "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Der Link zum Zurücksetzen deines Passworts wurde an deine E-Mail-Adresse versandt. Solltest du diesen nicht in Kürze erhalten, prüfe bitte deinen Spam-Ordner.<br>Wenn du keine E-Mail bekommen hast, wende dich bitte an deinen lokalen Administrator.",
"Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "Deine Dateien sind verschlüsselt. Es gibt keinen Weg Deine Dateien nach dem Rücksetzen des Passwortes wiederherzustellen.<br />Falls Du Dir nicht sicher bist, kontaktiere Deinen Administrator.<br />Möchtest Du wirklich fortfahren?",
"I know what I'm doing" : "Ich weiß, was ich mache",
"Password can not be changed. Please contact your administrator." : "Passwort kann nicht geändert werden. Bitte kontaktiere deinen Administrator.",
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Die Reverse-Proxy-Header-Konfiguration ist fehlerhaft oder Du greist auf Nextcloud über einen vertrauenswürdigen Proxy zu. Wenn Du auf Nextcloud nicht über einen vertrauenswürdigen Proxy zugreifst, dann besteht ein Sicherheitsproblem, das einem Angreifer erlaubt die IP-Adresse, die für Nextcloud sichtbar ist, auszuspähen. Weitere Informationen hierzu findest Du in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dokumentation</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached ist als distributed cache konfiguriert aber das falsche PHP-Modul \"memcache\" ist installiert. \\OC\\Memcache\\Memcached unterstützt nur \"memcached\" jedoch nicht \"memcache\". Im <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki nach beiden Modulen suchen</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Einige Dateien haben die Integritätsprüfung nicht bestanden. Weiterführende Information findest du in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dokumentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Liste der ungültigen Dateien ...</a> / <a href=\"{rescanEndpoint}\">Erneut analysieren…</a>)",
+ "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>:" : "PHP Opcache ist nicht korrekt eingerichtet. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Für bessere Leistung empfehlen wir ↗</a> folgende Einstellungen in der <code>php.ini</code>:",
"Error occurred while checking server setup" : "Fehler beim Überprüfen der Servereinrichtung",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. Es wird dringend empfohlen, deinen Webserver dahingehend zu konfigurieren, dass das Datenverzeichnis nicht mehr vom Internet aus erreichbar ist oder dass du es aus dem Dokument-Root-Verzeichnis des Webservers bewegst.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Der „{header}“-HTTP-Header ist nicht so konfiguriert, dass er „{expected}“ entspricht. Dies ist ein potentielles Sicherheitsrisiko und es wird empfohlen, diese Einstellung zu ändern.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "Zugriffskontrolle",
"Could not unshare" : "Freigabe konnte nicht entfernt werden",
"Share details could not be loaded for this item." : "Details der geteilten Freigabe zu diesem Eintrag konnten nicht geladen werden.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Mindestens {count} Zeichen wird für die Autovervollständigung benötigt","Mindestens {count} Zeichen werden für die Autovervollständigung benötigt"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Die Liste ist unter Umständen gekürzt - Bitte verfeinern Sie Ihre Suche um mehr Ergebnisse zu erhalten.",
"No users or groups found for {search}" : "Keine Benutzer oder Gruppen gefunden für {search}",
"No users found for {search}" : "Kein Benutzer gefunden für {search}",
"An error occurred. Please try again" : "Es ist ein Fehler aufgetreten. Bitte versuche es noch einmal",
@@ -281,7 +284,7 @@ OC.L10N.register(
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Bitte stelle vor dem Fortsetzen sicher, dass die Datenbank, der Konfigurationsordner und der Datenordner gesichert wurden.",
"Start update" : "Aktualisierung starten",
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Zur Vermeidung von Zeitüberschreitungen bei größeren Installationen kannst Du stattdessen den folgenden Befehl in deinem Installationsverzeichnis ausführen:",
- "Detailed logs" : "Detaillierte Fehlermeldungen",
+ "Detailed logs" : "Detaillierte Protokollmeldungen",
"Update needed" : "Update wird benötigt",
"Please use the command line updater because you have a big instance." : "Da Du eine große Instanz nutzt, verwende bitte das Aktualisierungsprogramm über die Kommandozeile.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Für weitere Hilfen, schaue bitte in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation</a>.",
diff --git a/core/l10n/de.json b/core/l10n/de.json
index 03ddb70ddd1..3bd7cdb45bb 100644
--- a/core/l10n/de.json
+++ b/core/l10n/de.json
@@ -57,7 +57,7 @@
"Failed to authenticate, try again" : "Legitimierung fehlgeschlagen, noch einmal versuchen",
"seconds ago" : "Gerade eben",
"Logging in …" : "Melde an ...",
- "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Der Link zum Rücksetzen deines Passwortes ist an deine E-Mail-Adresse versandt worden. Solltest du in Kürze keine entsprechende E-Mail erhalten, überprüfe bitte deinen Spam-Ordner.<br>Ansonsten kannst du dich bei deinem lokalen Administrator melden.",
+ "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Der Link zum Zurücksetzen deines Passworts wurde an deine E-Mail-Adresse versandt. Solltest du diesen nicht in Kürze erhalten, prüfe bitte deinen Spam-Ordner.<br>Wenn du keine E-Mail bekommen hast, wende dich bitte an deinen lokalen Administrator.",
"Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "Deine Dateien sind verschlüsselt. Es gibt keinen Weg Deine Dateien nach dem Rücksetzen des Passwortes wiederherzustellen.<br />Falls Du Dir nicht sicher bist, kontaktiere Deinen Administrator.<br />Möchtest Du wirklich fortfahren?",
"I know what I'm doing" : "Ich weiß, was ich mache",
"Password can not be changed. Please contact your administrator." : "Passwort kann nicht geändert werden. Bitte kontaktiere deinen Administrator.",
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Die Reverse-Proxy-Header-Konfiguration ist fehlerhaft oder Du greist auf Nextcloud über einen vertrauenswürdigen Proxy zu. Wenn Du auf Nextcloud nicht über einen vertrauenswürdigen Proxy zugreifst, dann besteht ein Sicherheitsproblem, das einem Angreifer erlaubt die IP-Adresse, die für Nextcloud sichtbar ist, auszuspähen. Weitere Informationen hierzu findest Du in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dokumentation</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached ist als distributed cache konfiguriert aber das falsche PHP-Modul \"memcache\" ist installiert. \\OC\\Memcache\\Memcached unterstützt nur \"memcached\" jedoch nicht \"memcache\". Im <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki nach beiden Modulen suchen</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Einige Dateien haben die Integritätsprüfung nicht bestanden. Weiterführende Information findest du in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dokumentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Liste der ungültigen Dateien ...</a> / <a href=\"{rescanEndpoint}\">Erneut analysieren…</a>)",
+ "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>:" : "PHP Opcache ist nicht korrekt eingerichtet. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Für bessere Leistung empfehlen wir ↗</a> folgende Einstellungen in der <code>php.ini</code>:",
"Error occurred while checking server setup" : "Fehler beim Überprüfen der Servereinrichtung",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. Es wird dringend empfohlen, deinen Webserver dahingehend zu konfigurieren, dass das Datenverzeichnis nicht mehr vom Internet aus erreichbar ist oder dass du es aus dem Dokument-Root-Verzeichnis des Webservers bewegst.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Der „{header}“-HTTP-Header ist nicht so konfiguriert, dass er „{expected}“ entspricht. Dies ist ein potentielles Sicherheitsrisiko und es wird empfohlen, diese Einstellung zu ändern.",
@@ -139,6 +140,8 @@
"access control" : "Zugriffskontrolle",
"Could not unshare" : "Freigabe konnte nicht entfernt werden",
"Share details could not be loaded for this item." : "Details der geteilten Freigabe zu diesem Eintrag konnten nicht geladen werden.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Mindestens {count} Zeichen wird für die Autovervollständigung benötigt","Mindestens {count} Zeichen werden für die Autovervollständigung benötigt"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Die Liste ist unter Umständen gekürzt - Bitte verfeinern Sie Ihre Suche um mehr Ergebnisse zu erhalten.",
"No users or groups found for {search}" : "Keine Benutzer oder Gruppen gefunden für {search}",
"No users found for {search}" : "Kein Benutzer gefunden für {search}",
"An error occurred. Please try again" : "Es ist ein Fehler aufgetreten. Bitte versuche es noch einmal",
@@ -279,7 +282,7 @@
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Bitte stelle vor dem Fortsetzen sicher, dass die Datenbank, der Konfigurationsordner und der Datenordner gesichert wurden.",
"Start update" : "Aktualisierung starten",
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Zur Vermeidung von Zeitüberschreitungen bei größeren Installationen kannst Du stattdessen den folgenden Befehl in deinem Installationsverzeichnis ausführen:",
- "Detailed logs" : "Detaillierte Fehlermeldungen",
+ "Detailed logs" : "Detaillierte Protokollmeldungen",
"Update needed" : "Update wird benötigt",
"Please use the command line updater because you have a big instance." : "Da Du eine große Instanz nutzt, verwende bitte das Aktualisierungsprogramm über die Kommandozeile.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Für weitere Hilfen, schaue bitte in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation</a>.",
diff --git a/core/l10n/de_DE.js b/core/l10n/de_DE.js
index 0a72ebb93a8..eb36269fd2a 100644
--- a/core/l10n/de_DE.js
+++ b/core/l10n/de_DE.js
@@ -59,7 +59,7 @@ OC.L10N.register(
"Failed to authenticate, try again" : "Legitimierung fehlgeschlagen, noch einmal versuchen",
"seconds ago" : "Gerade eben",
"Logging in …" : "Melde an ...",
- "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse versandt worden. Sollten Sie ihn nicht in Kürze erhalten, prüfen Sie bitte Ihren Spam-Ordner.<br>Wenn die E-Mail sich nicht darin befindet, wenden Sie sich bette an Ihrem lokalen Administrator.",
+ "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Der Link zum Zurücksetzen Ihres Passworts wurde an Ihre E-Mail-Adresse versandt. Sollten Sie diesen nicht in Kürze erhalten, prüfen Sie bitte Ihren Spam-Ordner.<br>Wenn sie keine E-Mail bekommen haben, wenden Sie sich bitte an Ihren lokalen Administrator.",
"Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "Ihre Dateien sind verschlüsselt. Es gibt keinen Weg Ihre Dateien nach dem Rücksetzen des Passwortes wiederherzustellen.<br />Falls Sie sich nicht sicher sind, kontaktieren Sie Ihren Administrator.<br />Möchten Sie wirklich fortfahren?",
"I know what I'm doing" : "Ich weiß, was ich mache",
"Password can not be changed. Please contact your administrator." : "Passwort kann nicht geändert werden. Bitte kontaktieren Sie Ihren Administrator.",
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Die Reverse-Proxy-Header-Konfiguration ist fehlerhaft oder Sie greifen auf Nextcloud über einen vertrauenswürdigen Proxy zu. Wenn Sie auf Nextcloud nicht über einen vertrauenswürdigen Proxy zugreifen, dann besteht ein Sicherheitsproblem, das einem Angreifer erlaubt die IP-Adresse, die für Nextcloud sichtbar ist, auszuspähen. Weitere Informationen hierzu finden Sie in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dokumentation</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcache ist als verteilter Cache konfiguriert, aber das falsche PHP Modul \"memcache\" ist installiert. \\OC\\Memcache\\Memcached unterstützt nur \"memcached\" und nicht \"memcache\". Siehe <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached Wiki über beide Module</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Manche Dateien haben die Integritätsprüfung nicht bestanden. Weitere Informationen um den Fehler zu beheben finden Sie in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dokumentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Liste der ungültigen Dateien...</a> / <a href=\"{rescanEndpoint}\">Erneut scannen…</a>)",
+ "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>:" : "PHP Opcache ist nicht korrekt eingerichtet. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Für bessere Leistung empfehlen wir ↗</a> folgende Einstellungen in der <code>php.ini</code>:",
"Error occurred while checking server setup" : "Fehler beim Überprüfen der Servereinrichtung",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. Es wird dringend empfohlen, Ihren Webserver dahingehend zu konfigurieren, dass das Datenverzeichnis nicht mehr vom Internet aus erreichbar ist oder dass Sie es aus dem Document-Root-Verzeichnis des Webservers herausverschieben.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Der „{header}“-HTTP-Header ist nicht so konfiguriert, dass er „{expected}“ entspricht. Dies ist ein potentielles Sicherheitsrisiko und es wird empfohlen, diese Einstellung zu ändern.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "Zugriffskontrolle",
"Could not unshare" : "Freigabe konnte nicht aufgehoben werden",
"Share details could not be loaded for this item." : "Die Freigabedetails konnten für dieses Element nicht geladen werden.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Mindestens {count} Zeichen wird für die Autovervollständigung benötigt","Mindestens {count} Zeichen werden für die Autovervollständigung benötigt"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Die Liste ist unter Umständen gekürzt - Bitte verfeinern Sie Ihre Suche um mehr Ergebnisse zu erhalten.",
"No users or groups found for {search}" : "Keine Benutzer oder Gruppen für {search} gefunden",
"No users found for {search}" : "Keine Benutzer für {search} gefunden",
"An error occurred. Please try again" : "Es ist ein Fehler aufgetreten. Bitte versuchen Sie es noch einmal",
diff --git a/core/l10n/de_DE.json b/core/l10n/de_DE.json
index 2c85cef17e5..344acd2b0b1 100644
--- a/core/l10n/de_DE.json
+++ b/core/l10n/de_DE.json
@@ -57,7 +57,7 @@
"Failed to authenticate, try again" : "Legitimierung fehlgeschlagen, noch einmal versuchen",
"seconds ago" : "Gerade eben",
"Logging in …" : "Melde an ...",
- "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse versandt worden. Sollten Sie ihn nicht in Kürze erhalten, prüfen Sie bitte Ihren Spam-Ordner.<br>Wenn die E-Mail sich nicht darin befindet, wenden Sie sich bette an Ihrem lokalen Administrator.",
+ "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Der Link zum Zurücksetzen Ihres Passworts wurde an Ihre E-Mail-Adresse versandt. Sollten Sie diesen nicht in Kürze erhalten, prüfen Sie bitte Ihren Spam-Ordner.<br>Wenn sie keine E-Mail bekommen haben, wenden Sie sich bitte an Ihren lokalen Administrator.",
"Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "Ihre Dateien sind verschlüsselt. Es gibt keinen Weg Ihre Dateien nach dem Rücksetzen des Passwortes wiederherzustellen.<br />Falls Sie sich nicht sicher sind, kontaktieren Sie Ihren Administrator.<br />Möchten Sie wirklich fortfahren?",
"I know what I'm doing" : "Ich weiß, was ich mache",
"Password can not be changed. Please contact your administrator." : "Passwort kann nicht geändert werden. Bitte kontaktieren Sie Ihren Administrator.",
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Die Reverse-Proxy-Header-Konfiguration ist fehlerhaft oder Sie greifen auf Nextcloud über einen vertrauenswürdigen Proxy zu. Wenn Sie auf Nextcloud nicht über einen vertrauenswürdigen Proxy zugreifen, dann besteht ein Sicherheitsproblem, das einem Angreifer erlaubt die IP-Adresse, die für Nextcloud sichtbar ist, auszuspähen. Weitere Informationen hierzu finden Sie in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dokumentation</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcache ist als verteilter Cache konfiguriert, aber das falsche PHP Modul \"memcache\" ist installiert. \\OC\\Memcache\\Memcached unterstützt nur \"memcached\" und nicht \"memcache\". Siehe <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached Wiki über beide Module</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Manche Dateien haben die Integritätsprüfung nicht bestanden. Weitere Informationen um den Fehler zu beheben finden Sie in unserer <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dokumentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Liste der ungültigen Dateien...</a> / <a href=\"{rescanEndpoint}\">Erneut scannen…</a>)",
+ "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>:" : "PHP Opcache ist nicht korrekt eingerichtet. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Für bessere Leistung empfehlen wir ↗</a> folgende Einstellungen in der <code>php.ini</code>:",
"Error occurred while checking server setup" : "Fehler beim Überprüfen der Servereinrichtung",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. Es wird dringend empfohlen, Ihren Webserver dahingehend zu konfigurieren, dass das Datenverzeichnis nicht mehr vom Internet aus erreichbar ist oder dass Sie es aus dem Document-Root-Verzeichnis des Webservers herausverschieben.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Der „{header}“-HTTP-Header ist nicht so konfiguriert, dass er „{expected}“ entspricht. Dies ist ein potentielles Sicherheitsrisiko und es wird empfohlen, diese Einstellung zu ändern.",
@@ -139,6 +140,8 @@
"access control" : "Zugriffskontrolle",
"Could not unshare" : "Freigabe konnte nicht aufgehoben werden",
"Share details could not be loaded for this item." : "Die Freigabedetails konnten für dieses Element nicht geladen werden.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Mindestens {count} Zeichen wird für die Autovervollständigung benötigt","Mindestens {count} Zeichen werden für die Autovervollständigung benötigt"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Die Liste ist unter Umständen gekürzt - Bitte verfeinern Sie Ihre Suche um mehr Ergebnisse zu erhalten.",
"No users or groups found for {search}" : "Keine Benutzer oder Gruppen für {search} gefunden",
"No users found for {search}" : "Keine Benutzer für {search} gefunden",
"An error occurred. Please try again" : "Es ist ein Fehler aufgetreten. Bitte versuchen Sie es noch einmal",
diff --git a/core/l10n/es.js b/core/l10n/es.js
index 8e37cf427f7..926883edf3f 100644
--- a/core/l10n/es.js
+++ b/core/l10n/es.js
@@ -43,7 +43,7 @@ OC.L10N.register(
"Finished code integrity check" : "Terminando comprobación de integridad de código",
"%s (3rdparty)" : "%s (tercero)",
"%s (incompatible)" : "%s (incompatible)",
- "Following apps have been disabled: %s" : "Siguiendo aplicaciones ha sido deshabilitado: %s",
+ "Following apps have been disabled: %s" : "Las siguientes aplicaciones han sido deshabilitadas: %s",
"Already up to date" : "Ya actualizado",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Ha habido problemas durante la comprobación de la integridad del código. Más información…</a>",
"Settings" : "Ajustes",
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "La configuración de encabezados del proxy reverso es incorrecta, o usted está accediendo a Nextcloud desde un proxy en el que confía. Si no está accediendo a Nextcloud desde un proxy fiable, esto es un problema de seguridad y puede permitir a un atacante dsfrazar su dirección IP como visible para Nextcloud. Se puede encontrar más información en nuestra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentción</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "memcached es un sistema de cache distribuido. pero ha sido instalado por error el modulo PHP memcache.\nConsulte <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki acerca de ambos modulos</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Algunos archivos no han superado la comprobación de integridad. Para más información sobre cómo resolver este inconveniente consulte nuestra documentación <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)",
+ "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>:" : "El código Opcache de PHP no esta configurado correctamente. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Para mejor desempeño recomendamos ↗</a> para usar las siguiente opciones en el <code>php.ini</code>:",
"Error occurred while checking server setup" : "Ha ocurrido un error al revisar la configuración del servidor",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Su directorio de datos y sus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos ya no sea accesible o que mueva el directorio de datos fuera de la raíz de documentos del servidor web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "La \"{header}\" cabecera HTTP no está configurado para ser igual a \"{expected}\". Esto puede suponer un riesgo para la seguridad o la privacidad, por lo que se recomienda ajustar esta opción.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "control de acceso",
"Could not unshare" : "No se puede quitar el comparto",
"Share details could not be loaded for this item." : "No se han podido cargar los detalles de compartición para este elemento.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Se necesita al menos {count} carácter para el autocompletado","Se necesitan al menos {count} caracteres para el autocompletado"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Esta lista puede estar acortada. Por favor, refina los términos de búsqueda para ver más resultados.",
"No users or groups found for {search}" : "No se han encontrado usuarios ni grupos para {search}",
"No users found for {search}" : "No se han encontrado usuarios para {search}",
"An error occurred. Please try again" : "Ha ocurrido un error. Por favor inténtelo de nuevo",
diff --git a/core/l10n/es.json b/core/l10n/es.json
index 187c559f9e1..6ddf6044d28 100644
--- a/core/l10n/es.json
+++ b/core/l10n/es.json
@@ -41,7 +41,7 @@
"Finished code integrity check" : "Terminando comprobación de integridad de código",
"%s (3rdparty)" : "%s (tercero)",
"%s (incompatible)" : "%s (incompatible)",
- "Following apps have been disabled: %s" : "Siguiendo aplicaciones ha sido deshabilitado: %s",
+ "Following apps have been disabled: %s" : "Las siguientes aplicaciones han sido deshabilitadas: %s",
"Already up to date" : "Ya actualizado",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Ha habido problemas durante la comprobación de la integridad del código. Más información…</a>",
"Settings" : "Ajustes",
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "La configuración de encabezados del proxy reverso es incorrecta, o usted está accediendo a Nextcloud desde un proxy en el que confía. Si no está accediendo a Nextcloud desde un proxy fiable, esto es un problema de seguridad y puede permitir a un atacante dsfrazar su dirección IP como visible para Nextcloud. Se puede encontrar más información en nuestra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentción</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "memcached es un sistema de cache distribuido. pero ha sido instalado por error el modulo PHP memcache.\nConsulte <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki acerca de ambos modulos</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Algunos archivos no han superado la comprobación de integridad. Para más información sobre cómo resolver este inconveniente consulte nuestra documentación <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)",
+ "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>:" : "El código Opcache de PHP no esta configurado correctamente. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Para mejor desempeño recomendamos ↗</a> para usar las siguiente opciones en el <code>php.ini</code>:",
"Error occurred while checking server setup" : "Ha ocurrido un error al revisar la configuración del servidor",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Su directorio de datos y sus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos ya no sea accesible o que mueva el directorio de datos fuera de la raíz de documentos del servidor web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "La \"{header}\" cabecera HTTP no está configurado para ser igual a \"{expected}\". Esto puede suponer un riesgo para la seguridad o la privacidad, por lo que se recomienda ajustar esta opción.",
@@ -139,6 +140,8 @@
"access control" : "control de acceso",
"Could not unshare" : "No se puede quitar el comparto",
"Share details could not be loaded for this item." : "No se han podido cargar los detalles de compartición para este elemento.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Se necesita al menos {count} carácter para el autocompletado","Se necesitan al menos {count} caracteres para el autocompletado"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Esta lista puede estar acortada. Por favor, refina los términos de búsqueda para ver más resultados.",
"No users or groups found for {search}" : "No se han encontrado usuarios ni grupos para {search}",
"No users found for {search}" : "No se han encontrado usuarios para {search}",
"An error occurred. Please try again" : "Ha ocurrido un error. Por favor inténtelo de nuevo",
diff --git a/core/l10n/eu.js b/core/l10n/eu.js
index b17e18b7452..2328492361f 100644
--- a/core/l10n/eu.js
+++ b/core/l10n/eu.js
@@ -57,7 +57,7 @@ OC.L10N.register(
"Cancel" : "Ezeztatu",
"Confirm" : "Baieztatu",
"Failed to authenticate, try again" : "Huts egindu  autentifikazioa, berriz saiatu",
- "seconds ago" : "segundu",
+ "seconds ago" : "duela segundo batzuk",
"Logging in …" : "Saioa hasten ...",
"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.<br>Ez baduzu arrazoizko denbora epe batean jasotzen begiratu zure zabor-posta karpetan.<br>Hor ere ez badago kudeatzailearekin harremanetan jarri.",
"Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "Zure fitxategiak zifratzen dira. Pasahitza aldatuz gero, ez dago zure datuak berreskuratzeko modurik.<br />Ziur ez bazaude, jarri harremanetan administratzailearekin jarraitu baino lehen. <br />Ziur zaude jarraitu nahi duzula?",
diff --git a/core/l10n/eu.json b/core/l10n/eu.json
index ddeaee03043..caf3d11ea17 100644
--- a/core/l10n/eu.json
+++ b/core/l10n/eu.json
@@ -55,7 +55,7 @@
"Cancel" : "Ezeztatu",
"Confirm" : "Baieztatu",
"Failed to authenticate, try again" : "Huts egindu  autentifikazioa, berriz saiatu",
- "seconds ago" : "segundu",
+ "seconds ago" : "duela segundo batzuk",
"Logging in …" : "Saioa hasten ...",
"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.<br>Ez baduzu arrazoizko denbora epe batean jasotzen begiratu zure zabor-posta karpetan.<br>Hor ere ez badago kudeatzailearekin harremanetan jarri.",
"Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "Zure fitxategiak zifratzen dira. Pasahitza aldatuz gero, ez dago zure datuak berreskuratzeko modurik.<br />Ziur ez bazaude, jarri harremanetan administratzailearekin jarraitu baino lehen. <br />Ziur zaude jarraitu nahi duzula?",
diff --git a/core/l10n/fi_FI.js b/core/l10n/fi.js
index 791fea7a08e..1e05a2c5213 100644
--- a/core/l10n/fi_FI.js
+++ b/core/l10n/fi.js
@@ -3,6 +3,8 @@ OC.L10N.register(
{
"Please select a file." : "Valitse tiedosto.",
"File is too big" : "Tiedosto on liian suuri",
+ "The selected file is not an image." : "Valittu tiedosto ei ole kuva.",
+ "The selected file cannot be read." : "Valittua tiedostoa ei voida lukea.",
"Invalid file provided" : "Määritetty virheellinen tiedosto",
"No image or file provided" : "Kuvaa tai tiedostoa ei määritelty",
"Unknown filetype" : "Tuntematon tiedostotyyppi",
@@ -46,16 +48,23 @@ OC.L10N.register(
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Eheystarkistus tuotti ongelmia. Lisätietoja…</a>",
"Settings" : "Asetukset",
"Connection to server lost" : "Yhteys palvelimelle menetetty",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Ongelma sivun lataamisessa, päivitetään %n sekunnin kuluttua","Ongelma sivun lataamisessa, päivitetään %n sekunnin kuluttua"],
"Saving..." : "Tallennetaan...",
"Dismiss" : "Hylkää",
+ "This action requires you to confirm your password" : "Toiminto vaatii vahvistamista salasanallasi",
+ "Authentication required" : "Tunnistautuminen vaaditaan",
"Password" : "Salasana",
"Cancel" : "Peru",
+ "Confirm" : "Vahvista",
+ "Failed to authenticate, try again" : "Varmennus epäonnistui, yritä uudelleen",
"seconds ago" : "sekunteja sitten",
+ "Logging in …" : "Kirjaudutaan sisään...",
"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Linkki salasanan palauttamista varten on lähetetty sähköpostitse. Jos et saa sähköpostiviestiä kohtuullisessa ajassa, tarkista roskapostikansiot.<br>Jos et saa sähköpostiviestiä, ota yhteys paikalliseen ylläpitäjään.",
"I know what I'm doing" : "Tiedän mitä teen",
"Password can not be changed. Please contact your administrator." : "Salasanan vaihtaminen ei onnistunut. Ota yhteys ylläpitäjään.",
"No" : "Ei",
"Yes" : "Kyllä",
+ "No files in here" : "Täällä ei ole tiedostoja",
"Choose" : "Valitse",
"Error loading file picker template: {error}" : "Virhe ladatessa tiedostopohjia: {error}",
"Ok" : "Ok",
@@ -71,6 +80,7 @@ OC.L10N.register(
"(all selected)" : "(kaikki valittu)",
"({count} selected)" : "({count} valittu)",
"Error loading file exists template" : "Virhe ladatessa mallipohjaa",
+ "Pending" : "Odottaa",
"Very weak password" : "Erittäin heikko salasana",
"Weak password" : "Heikko salasana",
"So-so password" : "Kohtalainen salasana",
@@ -101,6 +111,7 @@ OC.L10N.register(
"Expiration date" : "Päättymispäivä",
"Choose a password for the public link" : "Valitse salasana julkiselle linkille",
"Copied!" : "Kopioitu!",
+ "Copy" : "Kopioi",
"Not supported!" : "Ei tuettu!",
"Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.",
"Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.",
@@ -110,6 +121,7 @@ OC.L10N.register(
"Password protect" : "Suojaa salasanalla",
"Allow upload and editing" : "Salli lähetys ja muokkaus",
"Allow editing" : "Salli muokkaus",
+ "File drop (upload only)" : "Tiedostojen pudotus (Vain lähetys)",
"Email link to person" : "Lähetä linkki sähköpostitse",
"Send" : "Lähetä",
"Shared with you and the group {group} by {owner}" : "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta",
@@ -117,17 +129,23 @@ OC.L10N.register(
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} jaettu linkillä",
"group" : "ryhmä",
"remote" : "etä",
+ "email" : "sähköposti",
"Unshare" : "Lopeta jakaminen",
"can reshare" : "voi uudelleenjakaa",
"can edit" : "voi muokata",
+ "can create" : "voi luoda",
+ "can change" : "Voi vaihtaa",
+ "can delete" : "voi poistaa",
"access control" : "pääsynhallinta",
"Could not unshare" : "Jakamisen lopettaminen epäonnistui",
"Share details could not be loaded for this item." : "Tämän kohteen jakamistietoja ei voitu ladata.",
+ "This list is maybe truncated - please refine your search term to see more results." : "Lista on ehkä vajaa - uudelleen määritä hakutermisi nähdäksesi lisää tuloksia.",
"No users or groups found for {search}" : "Haulla {search} ei löytynyt käyttäjiä tai ryhmiä",
"No users found for {search}" : "Haulla {search} ei löytynyt käyttäjiä",
"An error occurred. Please try again" : "Tapahtui virhe, yritä uudelleen",
"{sharee} (group)" : "{sharee} (ryhmä)",
"{sharee} (remote)" : "{sharee} (etä)",
+ "{sharee} (email)" : "{sharee} (sähköposti)",
"Share" : "Jaa",
"Error removing share" : "Virhe jakoa poistaessa",
"Non-existing tag #{tag}" : "Ei olemassa oleva tunniste #{tag}",
diff --git a/core/l10n/fi_FI.json b/core/l10n/fi.json
index 1fef08768c4..bfd3bf04ed8 100644
--- a/core/l10n/fi_FI.json
+++ b/core/l10n/fi.json
@@ -1,6 +1,8 @@
{ "translations": {
"Please select a file." : "Valitse tiedosto.",
"File is too big" : "Tiedosto on liian suuri",
+ "The selected file is not an image." : "Valittu tiedosto ei ole kuva.",
+ "The selected file cannot be read." : "Valittua tiedostoa ei voida lukea.",
"Invalid file provided" : "Määritetty virheellinen tiedosto",
"No image or file provided" : "Kuvaa tai tiedostoa ei määritelty",
"Unknown filetype" : "Tuntematon tiedostotyyppi",
@@ -44,16 +46,23 @@
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Eheystarkistus tuotti ongelmia. Lisätietoja…</a>",
"Settings" : "Asetukset",
"Connection to server lost" : "Yhteys palvelimelle menetetty",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Ongelma sivun lataamisessa, päivitetään %n sekunnin kuluttua","Ongelma sivun lataamisessa, päivitetään %n sekunnin kuluttua"],
"Saving..." : "Tallennetaan...",
"Dismiss" : "Hylkää",
+ "This action requires you to confirm your password" : "Toiminto vaatii vahvistamista salasanallasi",
+ "Authentication required" : "Tunnistautuminen vaaditaan",
"Password" : "Salasana",
"Cancel" : "Peru",
+ "Confirm" : "Vahvista",
+ "Failed to authenticate, try again" : "Varmennus epäonnistui, yritä uudelleen",
"seconds ago" : "sekunteja sitten",
+ "Logging in …" : "Kirjaudutaan sisään...",
"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." : "Linkki salasanan palauttamista varten on lähetetty sähköpostitse. Jos et saa sähköpostiviestiä kohtuullisessa ajassa, tarkista roskapostikansiot.<br>Jos et saa sähköpostiviestiä, ota yhteys paikalliseen ylläpitäjään.",
"I know what I'm doing" : "Tiedän mitä teen",
"Password can not be changed. Please contact your administrator." : "Salasanan vaihtaminen ei onnistunut. Ota yhteys ylläpitäjään.",
"No" : "Ei",
"Yes" : "Kyllä",
+ "No files in here" : "Täällä ei ole tiedostoja",
"Choose" : "Valitse",
"Error loading file picker template: {error}" : "Virhe ladatessa tiedostopohjia: {error}",
"Ok" : "Ok",
@@ -69,6 +78,7 @@
"(all selected)" : "(kaikki valittu)",
"({count} selected)" : "({count} valittu)",
"Error loading file exists template" : "Virhe ladatessa mallipohjaa",
+ "Pending" : "Odottaa",
"Very weak password" : "Erittäin heikko salasana",
"Weak password" : "Heikko salasana",
"So-so password" : "Kohtalainen salasana",
@@ -99,6 +109,7 @@
"Expiration date" : "Päättymispäivä",
"Choose a password for the public link" : "Valitse salasana julkiselle linkille",
"Copied!" : "Kopioitu!",
+ "Copy" : "Kopioi",
"Not supported!" : "Ei tuettu!",
"Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.",
"Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.",
@@ -108,6 +119,7 @@
"Password protect" : "Suojaa salasanalla",
"Allow upload and editing" : "Salli lähetys ja muokkaus",
"Allow editing" : "Salli muokkaus",
+ "File drop (upload only)" : "Tiedostojen pudotus (Vain lähetys)",
"Email link to person" : "Lähetä linkki sähköpostitse",
"Send" : "Lähetä",
"Shared with you and the group {group} by {owner}" : "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta",
@@ -115,17 +127,23 @@
"{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} jaettu linkillä",
"group" : "ryhmä",
"remote" : "etä",
+ "email" : "sähköposti",
"Unshare" : "Lopeta jakaminen",
"can reshare" : "voi uudelleenjakaa",
"can edit" : "voi muokata",
+ "can create" : "voi luoda",
+ "can change" : "Voi vaihtaa",
+ "can delete" : "voi poistaa",
"access control" : "pääsynhallinta",
"Could not unshare" : "Jakamisen lopettaminen epäonnistui",
"Share details could not be loaded for this item." : "Tämän kohteen jakamistietoja ei voitu ladata.",
+ "This list is maybe truncated - please refine your search term to see more results." : "Lista on ehkä vajaa - uudelleen määritä hakutermisi nähdäksesi lisää tuloksia.",
"No users or groups found for {search}" : "Haulla {search} ei löytynyt käyttäjiä tai ryhmiä",
"No users found for {search}" : "Haulla {search} ei löytynyt käyttäjiä",
"An error occurred. Please try again" : "Tapahtui virhe, yritä uudelleen",
"{sharee} (group)" : "{sharee} (ryhmä)",
"{sharee} (remote)" : "{sharee} (etä)",
+ "{sharee} (email)" : "{sharee} (sähköposti)",
"Share" : "Jaa",
"Error removing share" : "Virhe jakoa poistaessa",
"Non-existing tag #{tag}" : "Ei olemassa oleva tunniste #{tag}",
diff --git a/core/l10n/fr.js b/core/l10n/fr.js
index 34d0df3d76c..208d94ae526 100644
--- a/core/l10n/fr.js
+++ b/core/l10n/fr.js
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "La configuration des entêtes du proxy inverse est incorrecte, ou vous accédez à Nextcloud depuis un proxy de confiance. Si vous n'êtes pas en train d’accéder à Nextcloud depuis un proxy de confiance, ceci est un problème de sécurité qui peut permettre à un attaquant d'usurper l'adresse IP affichée à Nextcloud. Consultez la <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a> pour avoir plus d'informations à ce sujet.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "\"memcached\" est configuré comme cache distribué, mais le mauvais module PHP est installé. \\OC\\Memcache\\Memcached ne prend en charge que \"memcached\" et non \"memcache\". <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">Consulter le wiki de memcached à propos de ces deux modules.</a>",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Des fichiers n'ont pas passé la vérification d’intégrité. Plus d'information sur comment résoudre ce problème dans notre <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Liste des fichiers invalides…</a> / <a href=\"{rescanEndpoint}\">Relancer…</a>)",
+ "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>:" : "Le PHP Opcache n'est pas correctement configuré. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Pour de meilleure performance nous recommandons ↗</a> d'utiliser les paramètres suivant dans le <code>php.ini</code> :",
"Error occurred while checking server setup" : "Une erreur s'est produite lors de la vérification de la configuration du serveur",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou de le déplacer hors de la racine du serveur web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "L'en-tête HTTP \"{header}\" n'est pas configurée pour être égale à \"{expected}\" créant potentiellement un risque relié à la sécurité et à la vie privée. Il est recommandé d'ajuster ce paramètre.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "contrôle d'accès",
"Could not unshare" : "Impossible d'arrêter de partager",
"Share details could not be loaded for this item." : "Les informations de partage n'ont pu être chargées pour cet élément.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Au moins {count} caractère est nécessaire pour l'autocomplétion","Au moins {count} caractères sont nécessaires pour l'autocomplétion"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Des résultats peuvent avoir été omis. Affinez votre recherche pour en voir plus.",
"No users or groups found for {search}" : "Pas d'utilisateur ou de groupe trouvé pour {search}",
"No users found for {search}" : "Aucun utilisateur trouvé pour {search}",
"An error occurred. Please try again" : "Une erreur est survenue. Merci de réessayer",
diff --git a/core/l10n/fr.json b/core/l10n/fr.json
index 7734be9e16a..5ff2c07e5d6 100644
--- a/core/l10n/fr.json
+++ b/core/l10n/fr.json
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "La configuration des entêtes du proxy inverse est incorrecte, ou vous accédez à Nextcloud depuis un proxy de confiance. Si vous n'êtes pas en train d’accéder à Nextcloud depuis un proxy de confiance, ceci est un problème de sécurité qui peut permettre à un attaquant d'usurper l'adresse IP affichée à Nextcloud. Consultez la <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a> pour avoir plus d'informations à ce sujet.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "\"memcached\" est configuré comme cache distribué, mais le mauvais module PHP est installé. \\OC\\Memcache\\Memcached ne prend en charge que \"memcached\" et non \"memcache\". <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">Consulter le wiki de memcached à propos de ces deux modules.</a>",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Des fichiers n'ont pas passé la vérification d’intégrité. Plus d'information sur comment résoudre ce problème dans notre <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Liste des fichiers invalides…</a> / <a href=\"{rescanEndpoint}\">Relancer…</a>)",
+ "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>:" : "Le PHP Opcache n'est pas correctement configuré. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Pour de meilleure performance nous recommandons ↗</a> d'utiliser les paramètres suivant dans le <code>php.ini</code> :",
"Error occurred while checking server setup" : "Une erreur s'est produite lors de la vérification de la configuration du serveur",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou de le déplacer hors de la racine du serveur web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "L'en-tête HTTP \"{header}\" n'est pas configurée pour être égale à \"{expected}\" créant potentiellement un risque relié à la sécurité et à la vie privée. Il est recommandé d'ajuster ce paramètre.",
@@ -139,6 +140,8 @@
"access control" : "contrôle d'accès",
"Could not unshare" : "Impossible d'arrêter de partager",
"Share details could not be loaded for this item." : "Les informations de partage n'ont pu être chargées pour cet élément.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Au moins {count} caractère est nécessaire pour l'autocomplétion","Au moins {count} caractères sont nécessaires pour l'autocomplétion"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Des résultats peuvent avoir été omis. Affinez votre recherche pour en voir plus.",
"No users or groups found for {search}" : "Pas d'utilisateur ou de groupe trouvé pour {search}",
"No users found for {search}" : "Aucun utilisateur trouvé pour {search}",
"An error occurred. Please try again" : "Une erreur est survenue. Merci de réessayer",
diff --git a/core/l10n/hu_HU.js b/core/l10n/hu.js
index 3db2ce9a361..3db2ce9a361 100644
--- a/core/l10n/hu_HU.js
+++ b/core/l10n/hu.js
diff --git a/core/l10n/hu_HU.json b/core/l10n/hu.json
index e7a7f338d1b..e7a7f338d1b 100644
--- a/core/l10n/hu_HU.json
+++ b/core/l10n/hu.json
diff --git a/core/l10n/is.js b/core/l10n/is.js
index b1b13f94ce1..985d19b69d8 100644
--- a/core/l10n/is.js
+++ b/core/l10n/is.js
@@ -141,6 +141,8 @@ OC.L10N.register(
"access control" : "aðgangsstýring",
"Could not unshare" : "Gat ekki hætt deilingu",
"Share details could not be loaded for this item." : "Ekki tókst að hlaða inn upplýsingum um sameign varðandi þetta atriði.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Það þarf a.m.k. {count} staf til að sjálfvirk útfylling virki","Það þarf a.m.k. {count} stafi til að sjálfvirk útfylling virki"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Þessi listi gæti verið stytt útgáfa - þrengdu leitarskilyrðin til að sjá fleiri niðurstöður.",
"No users or groups found for {search}" : "Engir notendur eða hópar fundust í {search}",
"No users found for {search}" : "Engir notendur fundust með {search}",
"An error occurred. Please try again" : "Villa kom upp. Endilega reyndu aftur",
diff --git a/core/l10n/is.json b/core/l10n/is.json
index 243dfb082b1..4cc4528a3b1 100644
--- a/core/l10n/is.json
+++ b/core/l10n/is.json
@@ -139,6 +139,8 @@
"access control" : "aðgangsstýring",
"Could not unshare" : "Gat ekki hætt deilingu",
"Share details could not be loaded for this item." : "Ekki tókst að hlaða inn upplýsingum um sameign varðandi þetta atriði.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Það þarf a.m.k. {count} staf til að sjálfvirk útfylling virki","Það þarf a.m.k. {count} stafi til að sjálfvirk útfylling virki"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Þessi listi gæti verið stytt útgáfa - þrengdu leitarskilyrðin til að sjá fleiri niðurstöður.",
"No users or groups found for {search}" : "Engir notendur eða hópar fundust í {search}",
"No users found for {search}" : "Engir notendur fundust með {search}",
"An error occurred. Please try again" : "Villa kom upp. Endilega reyndu aftur",
diff --git a/core/l10n/it.js b/core/l10n/it.js
index 406f4424758..9ab8da1e3fb 100644
--- a/core/l10n/it.js
+++ b/core/l10n/it.js
@@ -48,6 +48,7 @@ OC.L10N.register(
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Si sono verificati errori con il controllo di integrità del codice. Ulteriori informazioni…</a>",
"Settings" : "Impostazioni",
"Connection to server lost" : "Connessione al server interrotta",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Problema durante il caricamento della pagina, aggiornamento tra %n secondo","Problema durante il caricamento della pagina, aggiornamento tra %n secondi"],
"Saving..." : "Salvataggio in corso...",
"Dismiss" : "Annulla",
"This action requires you to confirm your password" : "Questa azione richiede la conferma della tua password",
@@ -95,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "La configurazione delle intestazioni del proxy inverso non è corretta, o stai effettuando l'accesso a Nextcloud da un proxy affidabile. Se non stai effettuando l'accesso da un proxy affidabile, questo è un problema di sicurezza e può consentire a un attaccante di falsificare il suo indirizzo IP, rendendolo visibile a Nextcloud. Ulteriori informazioni sono disponibili nella nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentazione</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached è configurato come cache distribuita, ma è installato il modulo \"memcache\" errato. \\OC\\Memcache\\Memcached supporta solo \"memcached\" e non \"memcache\". Vedi il <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki di memcached per informazioni su entrambi i moduli</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alcuni file non hanno superato il controllo di integrità. Ulteriori informazioni su come risolvere questo problema sono disponibili nella nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentazione</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Elenco dei file non validi…</a> / <a href=\"{rescanEndpoint}\">Nuova scansione…</a>)",
+ "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>:" : "PHP OpCache non è configurata correttamente. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Per performance migliori consigliamo</a> di utilizzare le impostazioni in <code>php.ini</code>:",
"Error occurred while checking server setup" : "Si è verificato un errore durante il controllo della configurazione del server",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o di spostare la cartella fuori dalla radice del server web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "L'intestazione HTTP \"{header}\" non è configurata come \"{expected}\". \nQuesto è un potenziale rischio di sicurezza o di riservatezza dei dati e noi consigliamo di modificare questa impostazione.",
@@ -140,6 +142,8 @@ OC.L10N.register(
"access control" : "controllo d'accesso",
"Could not unshare" : "Impossibile rimuovere la condivisione",
"Share details could not be loaded for this item." : "I dettagli della condivisione non possono essere caricati per questo elemento.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Almeno {count} carattere è richiesto per l'autocompletamento","Almeno {count} caratteri sono richiesti per l'autocompletamento"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Questa lista potrebbe essere troncata - correggi i termini di ricerca per molti altri risultati.",
"No users or groups found for {search}" : "Nessun utente o gruppo trovato per {search}",
"No users found for {search}" : "Nessun utente trovato per {search}",
"An error occurred. Please try again" : "Si è verificato un errore. Prova ancora",
diff --git a/core/l10n/it.json b/core/l10n/it.json
index 02e4c7a6c5a..920ef252463 100644
--- a/core/l10n/it.json
+++ b/core/l10n/it.json
@@ -46,6 +46,7 @@
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Si sono verificati errori con il controllo di integrità del codice. Ulteriori informazioni…</a>",
"Settings" : "Impostazioni",
"Connection to server lost" : "Connessione al server interrotta",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Problema durante il caricamento della pagina, aggiornamento tra %n secondo","Problema durante il caricamento della pagina, aggiornamento tra %n secondi"],
"Saving..." : "Salvataggio in corso...",
"Dismiss" : "Annulla",
"This action requires you to confirm your password" : "Questa azione richiede la conferma della tua password",
@@ -93,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "La configurazione delle intestazioni del proxy inverso non è corretta, o stai effettuando l'accesso a Nextcloud da un proxy affidabile. Se non stai effettuando l'accesso da un proxy affidabile, questo è un problema di sicurezza e può consentire a un attaccante di falsificare il suo indirizzo IP, rendendolo visibile a Nextcloud. Ulteriori informazioni sono disponibili nella nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentazione</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached è configurato come cache distribuita, ma è installato il modulo \"memcache\" errato. \\OC\\Memcache\\Memcached supporta solo \"memcached\" e non \"memcache\". Vedi il <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki di memcached per informazioni su entrambi i moduli</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alcuni file non hanno superato il controllo di integrità. Ulteriori informazioni su come risolvere questo problema sono disponibili nella nostra <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentazione</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Elenco dei file non validi…</a> / <a href=\"{rescanEndpoint}\">Nuova scansione…</a>)",
+ "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>:" : "PHP OpCache non è configurata correttamente. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Per performance migliori consigliamo</a> di utilizzare le impostazioni in <code>php.ini</code>:",
"Error occurred while checking server setup" : "Si è verificato un errore durante il controllo della configurazione del server",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o di spostare la cartella fuori dalla radice del server web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "L'intestazione HTTP \"{header}\" non è configurata come \"{expected}\". \nQuesto è un potenziale rischio di sicurezza o di riservatezza dei dati e noi consigliamo di modificare questa impostazione.",
@@ -138,6 +140,8 @@
"access control" : "controllo d'accesso",
"Could not unshare" : "Impossibile rimuovere la condivisione",
"Share details could not be loaded for this item." : "I dettagli della condivisione non possono essere caricati per questo elemento.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Almeno {count} carattere è richiesto per l'autocompletamento","Almeno {count} caratteri sono richiesti per l'autocompletamento"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Questa lista potrebbe essere troncata - correggi i termini di ricerca per molti altri risultati.",
"No users or groups found for {search}" : "Nessun utente o gruppo trovato per {search}",
"No users found for {search}" : "Nessun utente trovato per {search}",
"An error occurred. Please try again" : "Si è verificato un errore. Prova ancora",
diff --git a/core/l10n/ja.js b/core/l10n/ja.js
index d3b0f9ea819..ad71d7f28d6 100644
--- a/core/l10n/ja.js
+++ b/core/l10n/ja.js
@@ -48,6 +48,7 @@ OC.L10N.register(
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">コード整合性の確認で問題が発生しました。詳しくはこちら…</a>",
"Settings" : "設定",
"Connection to server lost" : "サーバとの接続が切断されました",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["ページ読込に問題がありました。%n秒後に再読込します"],
"Saving..." : "保存中...",
"Dismiss" : "閉じる",
"This action requires you to confirm your password" : "この操作では、パスワードを確認する必要があります",
@@ -140,6 +141,8 @@ OC.L10N.register(
"access control" : "アクセス権限",
"Could not unshare" : "共有の解除ができませんでした",
"Share details could not be loaded for this item." : "共有の詳細はこのアイテムによりロードできませんでした。",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["オートコンプリートには{count}文字以上必要です"],
+ "This list is maybe truncated - please refine your search term to see more results." : "このリストは切り捨てられている可能性があります - 検索語句を絞り込んで検索結果を表示してください。",
"No users or groups found for {search}" : "{search} の検索でユーザー、グループが見つかりません",
"No users found for {search}" : "{search} のユーザーはいませんでした",
"An error occurred. Please try again" : "エラーが発生しました。もう一度実行してください。",
diff --git a/core/l10n/ja.json b/core/l10n/ja.json
index 630e3005cf3..34e9d81823b 100644
--- a/core/l10n/ja.json
+++ b/core/l10n/ja.json
@@ -46,6 +46,7 @@
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">コード整合性の確認で問題が発生しました。詳しくはこちら…</a>",
"Settings" : "設定",
"Connection to server lost" : "サーバとの接続が切断されました",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["ページ読込に問題がありました。%n秒後に再読込します"],
"Saving..." : "保存中...",
"Dismiss" : "閉じる",
"This action requires you to confirm your password" : "この操作では、パスワードを確認する必要があります",
@@ -138,6 +139,8 @@
"access control" : "アクセス権限",
"Could not unshare" : "共有の解除ができませんでした",
"Share details could not be loaded for this item." : "共有の詳細はこのアイテムによりロードできませんでした。",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["オートコンプリートには{count}文字以上必要です"],
+ "This list is maybe truncated - please refine your search term to see more results." : "このリストは切り捨てられている可能性があります - 検索語句を絞り込んで検索結果を表示してください。",
"No users or groups found for {search}" : "{search} の検索でユーザー、グループが見つかりません",
"No users found for {search}" : "{search} のユーザーはいませんでした",
"An error occurred. Please try again" : "エラーが発生しました。もう一度実行してください。",
diff --git a/core/l10n/lv.js b/core/l10n/lv.js
index 6d61f61ec89..9d2279f3ae1 100644
--- a/core/l10n/lv.js
+++ b/core/l10n/lv.js
@@ -43,6 +43,7 @@ OC.L10N.register(
"Already up to date" : "Jau ir jaunākā",
"Settings" : "Iestatījumi",
"Connection to server lost" : "Zaudēts savienojums ar serveri",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Problēma ielādējot lapu, pārlādēšana pēc %n sekundēm","Problēma ielādējot lapu, pārlādēšana pēc %n sekundēm","Problēma ielādējot lapu, pārlādēšana pēc %n sekundēm"],
"Saving..." : "Saglabā...",
"Dismiss" : "Atmest",
"Authentication required" : "Nepieciešama autentifikācija",
@@ -121,8 +122,11 @@ OC.L10N.register(
"Share" : "Koplietot",
"Share with people on other servers using their Federated Cloud ID username@example.com/nextcloud" : "Koplietot ar personām, kas atrodas citos serveros, izmantojot Federated Cloud ID username@example.com/nextcloud",
"Share with users or by mail..." : "Koplietot ar lietotājiem vai izmantojot e-pastu...",
+ "Share with users or remote users..." : "Koplietot ar lietotājiem vai attāliem lietotājiem...",
+ "Share with users, remote users or by mail..." : "Koplietot ar lietotājiem, attāliem lietotājiem vai izmantojot e-pastu...",
"Share with users or groups..." : "Koplietot ar lietotājiem vai grupām...",
"Share with users, groups or by mail..." : "Koplietot ar lietotājiem, grupām vai izmantojot e-pastu...",
+ "Share with users, groups or remote users..." : "Koplietot ar lietotājiem, grupām vai attāliem lietotājiem...",
"Share with users..." : "Koplietots ar lietotājiem...",
"Error removing share" : "Kļūda, noņemot koplietošanu",
"restricted" : "ierobežots",
@@ -187,6 +191,7 @@ OC.L10N.register(
"Database name" : "Datubāzes nosaukums",
"Database tablespace" : "Datubāzes tabulas telpa",
"Database host" : "Datubāzes serveris",
+ "Please specify the port number along with the host name (e.g., localhost:5432)." : "Lūdzu, norādiet porta numuru kopā ar resursdatora nosaukumu (piemēram, localhost: 5432).",
"Performance warning" : "Veiktspējas brīdinājums",
"SQLite will be used as database." : "SQLite tiks izmantota kā datu bāze.",
"Finish setup" : "Pabeigt iestatīšanu",
diff --git a/core/l10n/lv.json b/core/l10n/lv.json
index 8a6814ee5d4..09b4d9a4506 100644
--- a/core/l10n/lv.json
+++ b/core/l10n/lv.json
@@ -41,6 +41,7 @@
"Already up to date" : "Jau ir jaunākā",
"Settings" : "Iestatījumi",
"Connection to server lost" : "Zaudēts savienojums ar serveri",
+ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Problēma ielādējot lapu, pārlādēšana pēc %n sekundēm","Problēma ielādējot lapu, pārlādēšana pēc %n sekundēm","Problēma ielādējot lapu, pārlādēšana pēc %n sekundēm"],
"Saving..." : "Saglabā...",
"Dismiss" : "Atmest",
"Authentication required" : "Nepieciešama autentifikācija",
@@ -119,8 +120,11 @@
"Share" : "Koplietot",
"Share with people on other servers using their Federated Cloud ID username@example.com/nextcloud" : "Koplietot ar personām, kas atrodas citos serveros, izmantojot Federated Cloud ID username@example.com/nextcloud",
"Share with users or by mail..." : "Koplietot ar lietotājiem vai izmantojot e-pastu...",
+ "Share with users or remote users..." : "Koplietot ar lietotājiem vai attāliem lietotājiem...",
+ "Share with users, remote users or by mail..." : "Koplietot ar lietotājiem, attāliem lietotājiem vai izmantojot e-pastu...",
"Share with users or groups..." : "Koplietot ar lietotājiem vai grupām...",
"Share with users, groups or by mail..." : "Koplietot ar lietotājiem, grupām vai izmantojot e-pastu...",
+ "Share with users, groups or remote users..." : "Koplietot ar lietotājiem, grupām vai attāliem lietotājiem...",
"Share with users..." : "Koplietots ar lietotājiem...",
"Error removing share" : "Kļūda, noņemot koplietošanu",
"restricted" : "ierobežots",
@@ -185,6 +189,7 @@
"Database name" : "Datubāzes nosaukums",
"Database tablespace" : "Datubāzes tabulas telpa",
"Database host" : "Datubāzes serveris",
+ "Please specify the port number along with the host name (e.g., localhost:5432)." : "Lūdzu, norādiet porta numuru kopā ar resursdatora nosaukumu (piemēram, localhost: 5432).",
"Performance warning" : "Veiktspējas brīdinājums",
"SQLite will be used as database." : "SQLite tiks izmantota kā datu bāze.",
"Finish setup" : "Pabeigt iestatīšanu",
diff --git a/core/l10n/nb_NO.js b/core/l10n/nb.js
index a8cb48f6c3e..a8cb48f6c3e 100644
--- a/core/l10n/nb_NO.js
+++ b/core/l10n/nb.js
diff --git a/core/l10n/nb_NO.json b/core/l10n/nb.json
index 507c3a6acc1..507c3a6acc1 100644
--- a/core/l10n/nb_NO.json
+++ b/core/l10n/nb.json
diff --git a/core/l10n/nl.js b/core/l10n/nl.js
index 3e857b0f4cf..75bf1dd9d3b 100644
--- a/core/l10n/nl.js
+++ b/core/l10n/nl.js
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "De reverse proxy headerconfiguratie is onjuist, of je hebt toegang tot Nextcloud via een vertrouwde proxy. Als je Nextcloud niet via een vertrouwde proxy benadert, dan levert dat een beveiligingsrisico op, waardoor een aanvaller het IP-adres dat Nextcloud ziet kan vervalsen. Meer informatie is te vinden in onze <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentatie</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached is geconfigureerd als gedistribueerde cache, maar de verkeerde PHP module \"memcache\" is geïnstalleerd. \\OC\\Memcache\\Memcached ondersteunt alleen \"memcached\" en niet \"memcache\". Zie de <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki over beide modules</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Sommige bestanden kwamen niet door de code betrouwbaarheidscontrole. Meer informatie over het oplossen van dit probleem kan worden gevonden in onze <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentatie</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lijst met ongeldige bestanden…</a> / <a href=\"{rescanEndpoint}\">Opnieuw…</a>)",
+ "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>:" : "De PHP Opcache is niet juist geconfigureerd. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Voor betere prestaties adviseren we ↗</a> de volgende instellingen te gebruiken in <code>php.ini</code>:",
"Error occurred while checking server setup" : "Een fout trad op bij checken serverconfiguratie",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Je data folder en je bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om je webserver zodanig te configureren, dat de datadirectory niet bereikbaar is vanaf het internet of om je datadirectory te verplaatsen naar een locatie buiten de document-root van de webserver.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "De \"{header}\" HTTP header is niet overeenkomstig met \"{expected}\" geconfigureerd. Dit is een potentieel security of privacy risico en we adviseren om deze instelling te wijzigen.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "toegangscontrole",
"Could not unshare" : "Kon delen niet ongedaan maken",
"Share details could not be loaded for this item." : "Details van shares voor dit object konden niet worden geladen.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Minimaal {count} karakter benodigd voor automatisch aanvullen","Minimaal {count} karakters benodigd voor automatisch aanvullen"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Deze lijst is misschien afgekapt - verfijn de zoekterm om meer resultaten te zien.",
"No users or groups found for {search}" : "Geen gebruikers of groepen gevonden voor {search}",
"No users found for {search}" : "Geen gebruikers gevonden voor {search}",
"An error occurred. Please try again" : "Er trad een fout op. Probeer het opnieuw",
diff --git a/core/l10n/nl.json b/core/l10n/nl.json
index fa22378f2cc..782b3d4af81 100644
--- a/core/l10n/nl.json
+++ b/core/l10n/nl.json
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "De reverse proxy headerconfiguratie is onjuist, of je hebt toegang tot Nextcloud via een vertrouwde proxy. Als je Nextcloud niet via een vertrouwde proxy benadert, dan levert dat een beveiligingsrisico op, waardoor een aanvaller het IP-adres dat Nextcloud ziet kan vervalsen. Meer informatie is te vinden in onze <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentatie</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached is geconfigureerd als gedistribueerde cache, maar de verkeerde PHP module \"memcache\" is geïnstalleerd. \\OC\\Memcache\\Memcached ondersteunt alleen \"memcached\" en niet \"memcache\". Zie de <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki over beide modules</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Sommige bestanden kwamen niet door de code betrouwbaarheidscontrole. Meer informatie over het oplossen van dit probleem kan worden gevonden in onze <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentatie</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lijst met ongeldige bestanden…</a> / <a href=\"{rescanEndpoint}\">Opnieuw…</a>)",
+ "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>:" : "De PHP Opcache is niet juist geconfigureerd. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Voor betere prestaties adviseren we ↗</a> de volgende instellingen te gebruiken in <code>php.ini</code>:",
"Error occurred while checking server setup" : "Een fout trad op bij checken serverconfiguratie",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Je data folder en je bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om je webserver zodanig te configureren, dat de datadirectory niet bereikbaar is vanaf het internet of om je datadirectory te verplaatsen naar een locatie buiten de document-root van de webserver.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "De \"{header}\" HTTP header is niet overeenkomstig met \"{expected}\" geconfigureerd. Dit is een potentieel security of privacy risico en we adviseren om deze instelling te wijzigen.",
@@ -139,6 +140,8 @@
"access control" : "toegangscontrole",
"Could not unshare" : "Kon delen niet ongedaan maken",
"Share details could not be loaded for this item." : "Details van shares voor dit object konden niet worden geladen.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Minimaal {count} karakter benodigd voor automatisch aanvullen","Minimaal {count} karakters benodigd voor automatisch aanvullen"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Deze lijst is misschien afgekapt - verfijn de zoekterm om meer resultaten te zien.",
"No users or groups found for {search}" : "Geen gebruikers of groepen gevonden voor {search}",
"No users found for {search}" : "Geen gebruikers gevonden voor {search}",
"An error occurred. Please try again" : "Er trad een fout op. Probeer het opnieuw",
diff --git a/core/l10n/pl.js b/core/l10n/pl.js
index 4c906ea9dd0..c7e4f6887cf 100644
--- a/core/l10n/pl.js
+++ b/core/l10n/pl.js
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Konfiguracja nagłówków reverse proxy jest niepoprawna albo łączysz się do Nextclouda przez zaufane proxy. Jeśli nie łączysz się z zaufanego proxy, to jest to problem bezpieczeństwa i atakujący może podszyć się pod adres IP jako widoczny dla Nextclouda. Więcej informacji można znaleźć w naszej <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacji</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Jako cache jest skonfigurowane \"memcached\", ale błędny moduł PHP \"memcache\" jest zainstalowany. \\OC\\Memcache\\Memcached wspiera tylko \"memcached\", a nie \"memcache\". Sprawdź <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki o obu tych modułach</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Niektóre pliki nie przeszły sprawdzania spójności. Dalsze informacje jak to naprawić mogą być znalezione w naszej <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacji</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lista niepoprawnych plików...</a> / <a href=\"{rescanEndpoint}\">Skanowanie ponowne…</a>)",
+ "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>:" : "PHP Opcache nie jest prawidłowo skonfigurowany <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dla lepszej wydajności zalecamy ↗</a> użycie następujących ustawień w <code>php.ini</code>:",
"Error occurred while checking server setup" : "Pojawił się błąd podczas sprawdzania ustawień serwera",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Twój katalog z danymi i twoje pliki są prawdopodobnie dostępne przez Internet. Plik .htaccess nie działa. Silnie rekomendujemy, żebyś skonfigurował serwer webowy, żeby katalog z danymi nie był dalej dostępny lub przenieś katalog z danymi poza katalog \"document root\" serwera web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Nagłówek HTTP {header} nie jest skonfigurowany, aby pasował do {expected}. Jest to poterncjalne zagrożenie prywatności oraz bezpieczeństwa i zalecamy poprawienie tego ustawienia.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "kontrola dostępu",
"Could not unshare" : "Nie udało się usunąć udostępnienia",
"Share details could not be loaded for this item." : "Szczegóły udziału nie mogły zostać wczytane dla tego obiektu.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Do automatycznego uzupełnienia potrzebny jest co najmniej {count} znak","Do automatycznego uzupełnienia potrzebnych jest co najmniej {count} znaków","Do automatycznego uzupełnienia potrzebnych jest co najmniej {count} znaków","Do automatycznego uzupełnienia potrzebnych jest co najmniej {count} znaków"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Ta lista może być obcięta - proszę bardziej określić fraze wyszukiwania, aby zobaczyć więcej wyników.",
"No users or groups found for {search}" : "Nie znaleziono użytkowników lub grup dla {search}",
"No users found for {search}" : "Nie znaleziono użytkowników dla {search}",
"An error occurred. Please try again" : "Wystąpił błąd. Proszę spróbować ponownie.",
@@ -193,7 +196,7 @@ OC.L10N.register(
"Personal" : "Osobiste",
"Users" : "Użytkownicy",
"Apps" : "Aplikacje",
- "Admin" : "Administrator",
+ "Admin" : "Administracja",
"Help" : "Pomoc",
"Access forbidden" : "Dostęp zabroniony",
"File not found" : "Nie odnaleziono pliku",
@@ -218,7 +221,7 @@ OC.L10N.register(
"Security warning" : "Ostrzeżenie bezpieczeństwa",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa.",
"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Aby uzyskać informację jak poprawnie skonfigurować Twój serwer, zajrzyj do <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">dokumentacji</a>.",
- "Create an <strong>admin account</strong>" : "Utwórz <strong>konta administratora</strong>",
+ "Create an <strong>admin account</strong>" : "Utwórz <strong>konto administratora</strong>",
"Username" : "Nazwa użytkownika",
"Storage & database" : "Zasoby dysku & baza danych",
"Data folder" : "Katalog danych",
@@ -348,7 +351,7 @@ OC.L10N.register(
"Sending ..." : "Wysyłanie...",
"Email sent" : "E-mail wysłany",
"Send link via email" : "Wyślij link mailem",
- "notify by email" : "powiadom przez emaila",
+ "notify by email" : "powiadom przez e-maila",
"can share" : "może współdzielić",
"create" : "utwórz",
"change" : "zmiany",
diff --git a/core/l10n/pl.json b/core/l10n/pl.json
index 0324fd3175c..50a1b486716 100644
--- a/core/l10n/pl.json
+++ b/core/l10n/pl.json
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Konfiguracja nagłówków reverse proxy jest niepoprawna albo łączysz się do Nextclouda przez zaufane proxy. Jeśli nie łączysz się z zaufanego proxy, to jest to problem bezpieczeństwa i atakujący może podszyć się pod adres IP jako widoczny dla Nextclouda. Więcej informacji można znaleźć w naszej <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacji</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Jako cache jest skonfigurowane \"memcached\", ale błędny moduł PHP \"memcache\" jest zainstalowany. \\OC\\Memcache\\Memcached wspiera tylko \"memcached\", a nie \"memcache\". Sprawdź <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki o obu tych modułach</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Niektóre pliki nie przeszły sprawdzania spójności. Dalsze informacje jak to naprawić mogą być znalezione w naszej <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentacji</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lista niepoprawnych plików...</a> / <a href=\"{rescanEndpoint}\">Skanowanie ponowne…</a>)",
+ "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>:" : "PHP Opcache nie jest prawidłowo skonfigurowany <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Dla lepszej wydajności zalecamy ↗</a> użycie następujących ustawień w <code>php.ini</code>:",
"Error occurred while checking server setup" : "Pojawił się błąd podczas sprawdzania ustawień serwera",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Twój katalog z danymi i twoje pliki są prawdopodobnie dostępne przez Internet. Plik .htaccess nie działa. Silnie rekomendujemy, żebyś skonfigurował serwer webowy, żeby katalog z danymi nie był dalej dostępny lub przenieś katalog z danymi poza katalog \"document root\" serwera web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Nagłówek HTTP {header} nie jest skonfigurowany, aby pasował do {expected}. Jest to poterncjalne zagrożenie prywatności oraz bezpieczeństwa i zalecamy poprawienie tego ustawienia.",
@@ -139,6 +140,8 @@
"access control" : "kontrola dostępu",
"Could not unshare" : "Nie udało się usunąć udostępnienia",
"Share details could not be loaded for this item." : "Szczegóły udziału nie mogły zostać wczytane dla tego obiektu.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Do automatycznego uzupełnienia potrzebny jest co najmniej {count} znak","Do automatycznego uzupełnienia potrzebnych jest co najmniej {count} znaków","Do automatycznego uzupełnienia potrzebnych jest co najmniej {count} znaków","Do automatycznego uzupełnienia potrzebnych jest co najmniej {count} znaków"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Ta lista może być obcięta - proszę bardziej określić fraze wyszukiwania, aby zobaczyć więcej wyników.",
"No users or groups found for {search}" : "Nie znaleziono użytkowników lub grup dla {search}",
"No users found for {search}" : "Nie znaleziono użytkowników dla {search}",
"An error occurred. Please try again" : "Wystąpił błąd. Proszę spróbować ponownie.",
@@ -191,7 +194,7 @@
"Personal" : "Osobiste",
"Users" : "Użytkownicy",
"Apps" : "Aplikacje",
- "Admin" : "Administrator",
+ "Admin" : "Administracja",
"Help" : "Pomoc",
"Access forbidden" : "Dostęp zabroniony",
"File not found" : "Nie odnaleziono pliku",
@@ -216,7 +219,7 @@
"Security warning" : "Ostrzeżenie bezpieczeństwa",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa.",
"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Aby uzyskać informację jak poprawnie skonfigurować Twój serwer, zajrzyj do <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">dokumentacji</a>.",
- "Create an <strong>admin account</strong>" : "Utwórz <strong>konta administratora</strong>",
+ "Create an <strong>admin account</strong>" : "Utwórz <strong>konto administratora</strong>",
"Username" : "Nazwa użytkownika",
"Storage & database" : "Zasoby dysku & baza danych",
"Data folder" : "Katalog danych",
@@ -346,7 +349,7 @@
"Sending ..." : "Wysyłanie...",
"Email sent" : "E-mail wysłany",
"Send link via email" : "Wyślij link mailem",
- "notify by email" : "powiadom przez emaila",
+ "notify by email" : "powiadom przez e-maila",
"can share" : "może współdzielić",
"create" : "utwórz",
"change" : "zmiany",
diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js
index fb033408f85..72a12920f8f 100644
--- a/core/l10n/pt_BR.js
+++ b/core/l10n/pt_BR.js
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "O cabeçalho do proxy reverso esta incorreto, ou voce esta acessando de um proxy confiável. Se voce não esta usando um proxy confiável, essa é uma falha de segurança e pode permitir um ataque. Para mais informações <a target=\"_blank\"rel=\"noreferrer\"href=\"{docLink}\">documentation</a>",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached é configurado como cache distribuído, mas o módulo PHP errado \"memcache\" está instalado. \\OC\\Memcache\\Memcached suporta apenas \"memcached\" e não \"memcache\". Veja a <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki memcached sobre ambos os módulos </a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alguns arquivos não passaram na verificação de integridade. Mais informações sobre como resolver este problema pode ser encontrado em nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lista de arquivos inválidos…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)",
+ "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>:" : "O Opcache do PHP não está configurado corretamente. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Para um melhor desempenho recomendamos ↗</a> usar as seguintes configurações no <code>php.ini</code>:",
"Error occurred while checking server setup" : "Erro ao verificar a configuração do servidor",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "O seu diretório de dados e os arquivos estão, provavelmente, acessíveis a partir da Internet. O arquivo .htaccess não está funcionando. Nós sugerimos que você configure o servidor web de uma forma que o diretório de dados não seja acessível ou mova o diretório de dados para fora do diretório raiz de documentos do servidor web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "O \"{header}\" cabeçalho HTTP não está configurado igual ao \"{expected}\". Este é um risco potencial para a segurança e recomendamos ajustar essa configuração.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "controle de acesso",
"Could not unshare" : "Não foi possível descompartilhar",
"Share details could not be loaded for this item." : "Detalhes de compartilhamento não puderam ser carregados para este item.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Pelo menos {count} caractere é necessário para completar automaticamente","Pelo menos {count} caracteres são necessários para completar automaticamente"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Esta lista pode estar truncada: por favor refine seus termos de pesquisa para ver mais resultados",
"No users or groups found for {search}" : "Nenhum usuário grupo encontrado para {search}",
"No users found for {search}" : "Nenhum usuário encontrado para {search}",
"An error occurred. Please try again" : "Ocorreu um erro. Por favor tente novamente",
diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json
index ed6c774c326..d63ba98191f 100644
--- a/core/l10n/pt_BR.json
+++ b/core/l10n/pt_BR.json
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "O cabeçalho do proxy reverso esta incorreto, ou voce esta acessando de um proxy confiável. Se voce não esta usando um proxy confiável, essa é uma falha de segurança e pode permitir um ataque. Para mais informações <a target=\"_blank\"rel=\"noreferrer\"href=\"{docLink}\">documentation</a>",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached é configurado como cache distribuído, mas o módulo PHP errado \"memcache\" está instalado. \\OC\\Memcache\\Memcached suporta apenas \"memcached\" e não \"memcache\". Veja a <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki memcached sobre ambos os módulos </a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alguns arquivos não passaram na verificação de integridade. Mais informações sobre como resolver este problema pode ser encontrado em nossa <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentação</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Lista de arquivos inválidos…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)",
+ "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>:" : "O Opcache do PHP não está configurado corretamente. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Para um melhor desempenho recomendamos ↗</a> usar as seguintes configurações no <code>php.ini</code>:",
"Error occurred while checking server setup" : "Erro ao verificar a configuração do servidor",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "O seu diretório de dados e os arquivos estão, provavelmente, acessíveis a partir da Internet. O arquivo .htaccess não está funcionando. Nós sugerimos que você configure o servidor web de uma forma que o diretório de dados não seja acessível ou mova o diretório de dados para fora do diretório raiz de documentos do servidor web.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "O \"{header}\" cabeçalho HTTP não está configurado igual ao \"{expected}\". Este é um risco potencial para a segurança e recomendamos ajustar essa configuração.",
@@ -139,6 +140,8 @@
"access control" : "controle de acesso",
"Could not unshare" : "Não foi possível descompartilhar",
"Share details could not be loaded for this item." : "Detalhes de compartilhamento não puderam ser carregados para este item.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Pelo menos {count} caractere é necessário para completar automaticamente","Pelo menos {count} caracteres são necessários para completar automaticamente"],
+ "This list is maybe truncated - please refine your search term to see more results." : "Esta lista pode estar truncada: por favor refine seus termos de pesquisa para ver mais resultados",
"No users or groups found for {search}" : "Nenhum usuário grupo encontrado para {search}",
"No users found for {search}" : "Nenhum usuário encontrado para {search}",
"An error occurred. Please try again" : "Ocorreu um erro. Por favor tente novamente",
diff --git a/core/l10n/ru.js b/core/l10n/ru.js
index 7e83de69a7e..438ddd43427 100644
--- a/core/l10n/ru.js
+++ b/core/l10n/ru.js
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Заголовки обратного прокси настроены неправильно, либо вы пытаетесь получить доступ к NextCloud через доверенный прокси. Если NextCloud открыт не через доверенный прокси, это проблема безопасности, которая может позволить атакующему подделать IP-адрес, который видит NextCloud. Для получения дополнительной информации смотрите нашу <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">документацию</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached настроен на распределенный кеш, но установлен не поддерживаемый модуль PHP \"memcache\". \\OC\\Memcache\\Memcached поддерживает только модуль \"memcached\", но не \"memcache\". Больше информации на <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki странице memcached о обоих модулях</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Некоторые файлы не прошли проверку целостности. Дополнительная информация о том, как устранить данную проблему доступна в нашей <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">документации</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Список проблемных файлов…</a> / <a href=\"{rescanEndpoint}\">Сканировать ещё раз…</a>)",
+ "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>:" : "PHP Opcache не настроен правильно. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Для обеспечения лучшей производительности рекомендуется ↗</a> использовать следующие настройки в <code>php.ini</code>:",
"Error occurred while checking server setup" : "Произошла ошибка при проверке настроек сервера",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Ваш каталог данных и ваши файлы возможно доступны из Интернета. Файл .htaccess не работает. Мы настоятельно рекомендуем Вам настроить веб сервер таким образом, чтобы каталог данных не был больше доступен или переместить каталог данных за пределы корня веб сервера.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Заголовок HTTP \"{header}\" не настроен на значение \"{expected}\". Это потенциальная проблема безопасности и мы рекомендуем изменить эти настройки.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "контроль доступа",
"Could not unshare" : "Не удалось отменить доступ",
"Share details could not be loaded for this item." : "Не удалось загрузить информацию об общем доступе для этого элемента.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Для автозавершения требуется как минимум {count} символ.","Для автозавершения требуется как минимум {count} символа.","Для автозавершения требуется как минимум {count} символов.","Для автозавершения требуется как минимум {count} символа."],
+ "This list is maybe truncated - please refine your search term to see more results." : "Этот список может быть показан не полностью - уточните запрос что бы просмотреть больше результатов.",
"No users or groups found for {search}" : "Не найдено пользователей или групп по запросу {search}",
"No users found for {search}" : "Не найдено пользователей по запросу {search}",
"An error occurred. Please try again" : "Произошла ошибка. Попробуйте ещё раз",
diff --git a/core/l10n/ru.json b/core/l10n/ru.json
index 9dadc561845..ef2df468d12 100644
--- a/core/l10n/ru.json
+++ b/core/l10n/ru.json
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Заголовки обратного прокси настроены неправильно, либо вы пытаетесь получить доступ к NextCloud через доверенный прокси. Если NextCloud открыт не через доверенный прокси, это проблема безопасности, которая может позволить атакующему подделать IP-адрес, который видит NextCloud. Для получения дополнительной информации смотрите нашу <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">документацию</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached настроен на распределенный кеш, но установлен не поддерживаемый модуль PHP \"memcache\". \\OC\\Memcache\\Memcached поддерживает только модуль \"memcached\", но не \"memcache\". Больше информации на <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">wiki странице memcached о обоих модулях</a>.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Некоторые файлы не прошли проверку целостности. Дополнительная информация о том, как устранить данную проблему доступна в нашей <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">документации</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Список проблемных файлов…</a> / <a href=\"{rescanEndpoint}\">Сканировать ещё раз…</a>)",
+ "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>:" : "PHP Opcache не настроен правильно. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Для обеспечения лучшей производительности рекомендуется ↗</a> использовать следующие настройки в <code>php.ini</code>:",
"Error occurred while checking server setup" : "Произошла ошибка при проверке настроек сервера",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Ваш каталог данных и ваши файлы возможно доступны из Интернета. Файл .htaccess не работает. Мы настоятельно рекомендуем Вам настроить веб сервер таким образом, чтобы каталог данных не был больше доступен или переместить каталог данных за пределы корня веб сервера.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "Заголовок HTTP \"{header}\" не настроен на значение \"{expected}\". Это потенциальная проблема безопасности и мы рекомендуем изменить эти настройки.",
@@ -139,6 +140,8 @@
"access control" : "контроль доступа",
"Could not unshare" : "Не удалось отменить доступ",
"Share details could not be loaded for this item." : "Не удалось загрузить информацию об общем доступе для этого элемента.",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["Для автозавершения требуется как минимум {count} символ.","Для автозавершения требуется как минимум {count} символа.","Для автозавершения требуется как минимум {count} символов.","Для автозавершения требуется как минимум {count} символа."],
+ "This list is maybe truncated - please refine your search term to see more results." : "Этот список может быть показан не полностью - уточните запрос что бы просмотреть больше результатов.",
"No users or groups found for {search}" : "Не найдено пользователей или групп по запросу {search}",
"No users found for {search}" : "Не найдено пользователей по запросу {search}",
"An error occurred. Please try again" : "Произошла ошибка. Попробуйте ещё раз",
diff --git a/core/l10n/sk_SK.js b/core/l10n/sk.js
index 05e2aceb1a1..05e2aceb1a1 100644
--- a/core/l10n/sk_SK.js
+++ b/core/l10n/sk.js
diff --git a/core/l10n/sk_SK.json b/core/l10n/sk.json
index 095c627fdd9..095c627fdd9 100644
--- a/core/l10n/sk_SK.json
+++ b/core/l10n/sk.json
diff --git a/core/l10n/th_TH.js b/core/l10n/th.js
index e5fb0378362..e5fb0378362 100644
--- a/core/l10n/th_TH.js
+++ b/core/l10n/th.js
diff --git a/core/l10n/th_TH.json b/core/l10n/th.json
index bdebc694e50..bdebc694e50 100644
--- a/core/l10n/th_TH.json
+++ b/core/l10n/th.json
diff --git a/core/l10n/zh_CN.js b/core/l10n/zh_CN.js
index 9a5ffbe92f1..5848c58d6c7 100644
--- a/core/l10n/zh_CN.js
+++ b/core/l10n/zh_CN.js
@@ -96,6 +96,7 @@ OC.L10N.register(
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "反向代理配置错误, 或者您正在通过可信的代理访问 Nextcloud. 如果您不是通过可信代理访问 Nextcloud, 这将是一个安全问题, 并允许攻击者通过伪装 IP 地址访问 Nextcloud. 更多信息请查看我们的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">文档</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached 当前配置为分布式缓存, 但是当前安装的 PHP 模块是 \"memcache\". \\OC\\Memcache\\Memcached 仅支持 \"memcached\" 而不是 \"memcache\". 点击<a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki</a>了解两者的不同.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "一些文件没有通过完整性检查. 了解如何解决该问题请查看我们的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">文档</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">无效的文件列表…</a> / <a href=\"{rescanEndpoint}\">重新扫描…</a>)",
+ "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>:" : "PHP opcache配置不正确.<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">为更好的性能,我们建议↗</a> 使用下列设置<code>php.ini</code>:",
"Error occurred while checking server setup" : "检查服务器设置时出错",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "您的数据目录和文件可从互联网被访问. .htaccess 文件没有工作. 我们强烈建议您在 Web 服务器上配置不可以访问数据目录, 或者将数据目录移动到 Web 服务器根目录之外.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "HTTP 请求头 \"{header}\" 没有配置为 \"{expected}\". 这是一个潜在的安全或隐私风险, 我们建议您调整这项设置.",
@@ -141,6 +142,8 @@ OC.L10N.register(
"access control" : "访问控制",
"Could not unshare" : "无法共享",
"Share details could not be loaded for this item." : "无法加载这个项目的分享详情",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["{count}字符需要自动完成"],
+ "This list is maybe truncated - please refine your search term to see more results." : "此列表可能会被截断 - 请缩短您的搜索词以查看更多结果",
"No users or groups found for {search}" : "{search} 条件下没有找到用户或用户组",
"No users found for {search}" : "没有找到 {search} 用户",
"An error occurred. Please try again" : "发生错误. 请重试.",
diff --git a/core/l10n/zh_CN.json b/core/l10n/zh_CN.json
index 6078adbd3e2..a8ec10c99ce 100644
--- a/core/l10n/zh_CN.json
+++ b/core/l10n/zh_CN.json
@@ -94,6 +94,7 @@
"The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "反向代理配置错误, 或者您正在通过可信的代理访问 Nextcloud. 如果您不是通过可信代理访问 Nextcloud, 这将是一个安全问题, 并允许攻击者通过伪装 IP 地址访问 Nextcloud. 更多信息请查看我们的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">文档</a>.",
"Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached 当前配置为分布式缓存, 但是当前安装的 PHP 模块是 \"memcache\". \\OC\\Memcache\\Memcached 仅支持 \"memcached\" 而不是 \"memcache\". 点击<a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki</a>了解两者的不同.",
"Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "一些文件没有通过完整性检查. 了解如何解决该问题请查看我们的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">文档</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">无效的文件列表…</a> / <a href=\"{rescanEndpoint}\">重新扫描…</a>)",
+ "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>:" : "PHP opcache配置不正确.<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">为更好的性能,我们建议↗</a> 使用下列设置<code>php.ini</code>:",
"Error occurred while checking server setup" : "检查服务器设置时出错",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "您的数据目录和文件可从互联网被访问. .htaccess 文件没有工作. 我们强烈建议您在 Web 服务器上配置不可以访问数据目录, 或者将数据目录移动到 Web 服务器根目录之外.",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "HTTP 请求头 \"{header}\" 没有配置为 \"{expected}\". 这是一个潜在的安全或隐私风险, 我们建议您调整这项设置.",
@@ -139,6 +140,8 @@
"access control" : "访问控制",
"Could not unshare" : "无法共享",
"Share details could not be loaded for this item." : "无法加载这个项目的分享详情",
+ "_At least {count} character is needed for autocompletion_::_At least {count} characters are needed for autocompletion_" : ["{count}字符需要自动完成"],
+ "This list is maybe truncated - please refine your search term to see more results." : "此列表可能会被截断 - 请缩短您的搜索词以查看更多结果",
"No users or groups found for {search}" : "{search} 条件下没有找到用户或用户组",
"No users found for {search}" : "没有找到 {search} 用户",
"An error occurred. Please try again" : "发生错误. 请重试.",
diff --git a/core/register_command.php b/core/register_command.php
index 6f31adafe92..288ee9590b7 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -123,7 +123,6 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
$application->add(new OC\Core\Command\Maintenance\Mimetype\UpdateDB(\OC::$server->getMimeTypeDetector(), \OC::$server->getMimeTypeLoader()));
$application->add(new OC\Core\Command\Maintenance\Mimetype\UpdateJS(\OC::$server->getMimeTypeDetector()));
$application->add(new OC\Core\Command\Maintenance\Mode(\OC::$server->getConfig()));
- $application->add(new OC\Core\Command\Maintenance\SingleUser(\OC::$server->getConfig()));
$application->add(new OC\Core\Command\Maintenance\UpdateHtaccess());
$application->add(new OC\Core\Command\Upgrade(\OC::$server->getConfig(), \OC::$server->getLogger()));