aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/application.php6
-rw-r--r--core/avatar/avatarcontroller.php75
-rw-r--r--core/command/upgrade.php14
-rw-r--r--core/css/icons.css4
-rw-r--r--core/css/styles.css9
-rw-r--r--core/img/actions/edit.pngbin0 -> 169 bytes
-rw-r--r--core/img/actions/edit.svg4
-rw-r--r--core/js/js.js1
-rw-r--r--core/js/update.js3
-rw-r--r--core/l10n/cs_CZ.js1
-rw-r--r--core/l10n/cs_CZ.json1
-rw-r--r--core/l10n/el.js3
-rw-r--r--core/l10n/el.json3
-rw-r--r--core/l10n/es.js1
-rw-r--r--core/l10n/es.json1
-rw-r--r--core/l10n/fa.js32
-rw-r--r--core/l10n/fa.json32
-rw-r--r--core/l10n/fi_FI.js1
-rw-r--r--core/l10n/fi_FI.json1
-rw-r--r--core/l10n/fr.js18
-rw-r--r--core/l10n/fr.json18
-rw-r--r--core/l10n/hu_HU.js1
-rw-r--r--core/l10n/hu_HU.json1
-rw-r--r--core/l10n/id.js6
-rw-r--r--core/l10n/id.json6
-rw-r--r--core/l10n/it.js3
-rw-r--r--core/l10n/it.json3
-rw-r--r--core/l10n/lt_LT.js7
-rw-r--r--core/l10n/lt_LT.json7
-rw-r--r--core/l10n/pt_BR.js1
-rw-r--r--core/l10n/pt_BR.json1
-rw-r--r--core/l10n/sq.js9
-rw-r--r--core/l10n/sq.json9
-rw-r--r--core/l10n/sr.js9
-rw-r--r--core/l10n/sr.json9
-rw-r--r--core/l10n/th_TH.js1
-rw-r--r--core/l10n/th_TH.json1
-rw-r--r--core/l10n/zh_CN.js6
-rw-r--r--core/l10n/zh_CN.json6
-rw-r--r--core/register_command.php2
40 files changed, 268 insertions, 48 deletions
diff --git a/core/application.php b/core/application.php
index 12ec6b63fd4..eab2c686dc1 100644
--- a/core/application.php
+++ b/core/application.php
@@ -85,7 +85,8 @@ class Application extends App {
$c->query('L10N'),
$c->query('UserManager'),
$c->query('UserSession'),
- $c->query('UserFolder')
+ $c->query('UserFolder'),
+ $c->query('Logger')
);
});
@@ -128,6 +129,9 @@ class Application extends App {
$container->registerService('Mailer', function(SimpleContainer $c) {
return $c->query('ServerContainer')->getMailer();
});
+ $container->registerService('Logger', function(SimpleContainer $c) {
+ return $c->query('ServerContainer')->getLogger();
+ });
$container->registerService('TimeFactory', function(SimpleContainer $c) {
return new TimeFactory();
});
diff --git a/core/avatar/avatarcontroller.php b/core/avatar/avatarcontroller.php
index 4841ba00f7a..e15b47e9a84 100644
--- a/core/avatar/avatarcontroller.php
+++ b/core/avatar/avatarcontroller.php
@@ -30,7 +30,7 @@ use OCP\AppFramework\Http;
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\Http\DataDisplayResponse;
use OCP\IAvatarManager;
-use OCP\ICache;
+use OCP\ILogger;
use OCP\IL10N;
use OCP\IRequest;
use OCP\IUserManager;
@@ -62,6 +62,9 @@ class AvatarController extends Controller {
/** @var Folder */
protected $userFolder;
+ /** @var ILogger */
+ protected $logger;
+
/**
* @param string $appName
* @param IRequest $request
@@ -71,6 +74,7 @@ class AvatarController extends Controller {
* @param IUserManager $userManager
* @param IUserSession $userSession
* @param Folder $userFolder
+ * @param ILogger $logger
*/
public function __construct($appName,
IRequest $request,
@@ -79,7 +83,8 @@ class AvatarController extends Controller {
IL10N $l10n,
IUserManager $userManager,
IUserSession $userSession,
- Folder $userFolder) {
+ Folder $userFolder,
+ ILogger $logger) {
parent::__construct($appName, $request);
$this->avatarManager = $avatarManager;
@@ -88,6 +93,7 @@ class AvatarController extends Controller {
$this->userManager = $userManager;
$this->userSession = $userSession;
$this->userFolder = $userFolder;
+ $this->logger = $logger;
}
/**
@@ -140,12 +146,21 @@ class AvatarController extends Controller {
$userId = $this->userSession->getUser()->getUID();
$files = $this->request->getUploadedFile('files');
+ $headers = [];
+ if ($this->request->isUserAgent([\OC\AppFramework\Http\Request::USER_AGENT_IE_8])) {
+ // due to upload iframe workaround, need to set content-type to text/plain
+ $headers['Content-Type'] = 'text/plain';
+ }
+
if (isset($path)) {
$path = stripslashes($path);
$node = $this->userFolder->get($path);
if ($node->getSize() > 20*1024*1024) {
- return new DataResponse(['data' => ['message' => $this->l->t('File is too big')]],
- Http::STATUS_BAD_REQUEST);
+ return new DataResponse(
+ ['data' => ['message' => $this->l->t('File is too big')]],
+ Http::STATUS_BAD_REQUEST,
+ $headers
+ );
}
$content = $node->getContent();
} elseif (!is_null($files)) {
@@ -155,20 +170,29 @@ class AvatarController extends Controller {
!\OC\Files\Filesystem::isFileBlacklisted($files['tmp_name'][0])
) {
if ($files['size'][0] > 20*1024*1024) {
- return new DataResponse(['data' => ['message' => $this->l->t('File is too big')]],
- Http::STATUS_BAD_REQUEST);
+ return new DataResponse(
+ ['data' => ['message' => $this->l->t('File is too big')]],
+ Http::STATUS_BAD_REQUEST,
+ $headers
+ );
}
$this->cache->set('avatar_upload', file_get_contents($files['tmp_name'][0]), 7200);
$content = $this->cache->get('avatar_upload');
unlink($files['tmp_name'][0]);
} else {
- return new DataResponse(['data' => ['message' => $this->l->t('Invalid file provided')]],
- Http::STATUS_BAD_REQUEST);
+ return new DataResponse(
+ ['data' => ['message' => $this->l->t('Invalid file provided')]],
+ Http::STATUS_BAD_REQUEST,
+ $headers
+ );
}
} else {
//Add imgfile
- return new DataResponse(['data' => ['message' => $this->l->t('No image or file provided')]],
- Http::STATUS_BAD_REQUEST);
+ return new DataResponse(
+ ['data' => ['message' => $this->l->t('No image or file provided')]],
+ Http::STATUS_BAD_REQUEST,
+ $headers
+ );
}
try {
@@ -179,16 +203,29 @@ class AvatarController extends Controller {
if ($image->valid()) {
$mimeType = $image->mimeType();
if ($mimeType !== 'image/jpeg' && $mimeType !== 'image/png') {
- return new DataResponse(['data' => ['message' => $this->l->t('Unknown filetype')]]);
+ return new DataResponse(
+ ['data' => ['message' => $this->l->t('Unknown filetype')]],
+ Http::STATUS_OK,
+ $headers
+ );
}
$this->cache->set('tmpAvatar', $image->data(), 7200);
- return new DataResponse(['data' => 'notsquare']);
+ return new DataResponse(
+ ['data' => 'notsquare'],
+ Http::STATUS_OK,
+ $headers
+ );
} else {
- return new DataResponse(['data' => ['message' => $this->l->t('Invalid image')]]);
+ return new DataResponse(
+ ['data' => ['message' => $this->l->t('Invalid image')]],
+ Http::STATUS_OK,
+ $headers
+ );
}
} catch (\Exception $e) {
- return new DataResponse(['data' => ['message' => $e->getMessage()]]);
+ $this->logger->logException($e, ['app' => 'core']);
+ return new DataResponse(['data' => ['message' => $this->l->t('An error occurred. Please contact your admin.')]], Http::STATUS_OK, $headers);
}
}
@@ -205,7 +242,8 @@ class AvatarController extends Controller {
$avatar->remove();
return new DataResponse();
} catch (\Exception $e) {
- return new DataResponse(['data' => ['message' => $e->getMessage()]], Http::STATUS_BAD_REQUEST);
+ $this->logger->logException($e, ['app' => 'core']);
+ return new DataResponse(['data' => ['message' => $this->l->t('An error occurred. Please contact your admin.')]], Http::STATUS_BAD_REQUEST);
}
}
@@ -273,10 +311,9 @@ class AvatarController extends Controller {
} catch (\OC\NotSquareException $e) {
return new DataResponse(['data' => ['message' => $this->l->t('Crop is not square')]],
Http::STATUS_BAD_REQUEST);
-
- }catch (\Exception $e) {
- return new DataResponse(['data' => ['message' => $e->getMessage()]],
- Http::STATUS_BAD_REQUEST);
+ } catch (\Exception $e) {
+ $this->logger->logException($e, ['app' => 'core']);
+ return new DataResponse(['data' => ['message' => $this->l->t('An error occurred. Please contact your admin.')]], Http::STATUS_BAD_REQUEST);
}
}
}
diff --git a/core/command/upgrade.php b/core/command/upgrade.php
index 0f1b828ba25..5d4819f6baf 100644
--- a/core/command/upgrade.php
+++ b/core/command/upgrade.php
@@ -30,6 +30,7 @@ namespace OC\Core\Command;
use OC\Console\TimestampFormatter;
use OC\Updater;
use OCP\IConfig;
+use OCP\ILogger;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
@@ -44,17 +45,19 @@ class Upgrade extends Command {
const ERROR_INVALID_ARGUMENTS = 4;
const ERROR_FAILURE = 5;
- /**
- * @var IConfig
- */
+ /** @var IConfig */
private $config;
+ /** @var ILogger */
+ private $logger;
+
/**
* @param IConfig $config
*/
- public function __construct(IConfig $config) {
+ public function __construct(IConfig $config, ILogger $logger) {
parent::__construct();
$this->config = $config;
+ $this->logger = $logger;
}
protected function configure() {
@@ -126,7 +129,8 @@ class Upgrade extends Command {
$self = $this;
$updater = new Updater(\OC::$server->getHTTPHelper(),
- $this->config);
+ $this->config,
+ $this->logger);
$updater->setSimulateStepEnabled($simulateStepEnabled);
$updater->setUpdateStepEnabled($updateStepEnabled);
diff --git a/core/css/icons.css b/core/css/icons.css
index 2461ee46c9f..14b2101b331 100644
--- a/core/css/icons.css
+++ b/core/css/icons.css
@@ -78,6 +78,10 @@
background-image: url('../img/actions/download.svg');
}
+.icon-edit {
+ background-image: url('../img/actions/edit.svg');
+}
+
.icon-external {
background-image: url('../img/actions/external.svg');
}
diff --git a/core/css/styles.css b/core/css/styles.css
index df533aab318..3d68a591522 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -404,8 +404,7 @@ input[type="submit"].enabled {
width: 100%;
}
#content .hascontrols {
- position: relative;
- top: 45px;
+ margin-top: 45px;
}
#content-wrapper {
position: absolute;
@@ -425,9 +424,9 @@ input[type="submit"].enabled {
.emptycontent {
font-size: 16px;
color: #888;
- position: absolute;
text-align: center;
- top: 30%;
+ margin-top: 100px; /* ie8 */
+ margin-top: 30vh;
width: 100%;
}
#emptycontent h2,
@@ -1164,7 +1163,7 @@ div.crumb:active {
/* public footer */
#body-public footer {
- margin-top: 65px;
+ position: relative;
text-align: center;
}
diff --git a/core/img/actions/edit.png b/core/img/actions/edit.png
new file mode 100644
index 00000000000..7ca20eba363
--- /dev/null
+++ b/core/img/actions/edit.png
Binary files differ
diff --git a/core/img/actions/edit.svg b/core/img/actions/edit.svg
new file mode 100644
index 00000000000..a8ab95e615b
--- /dev/null
+++ b/core/img/actions/edit.svg
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <path style="color:#000000;block-progression:tb;text-transform:none;text-indent:0" d="m2.3496 1.002c-0.1975 0.0382-0.3531 0.2333-0.3496 0.4375v13.122c0 0.23 0.2061 0.438 0.4316 0.438h11.138c0.226 0 0.432-0.208 0.432-0.438v-10.142c-0.004-0.0669-0.023-0.133-0.055-0.1915l-3.312-3.1992c-0.043-0.0164-0.089-0.0255-0.135-0.0273h-8.0684c-0.0268-0.00265-0.0552-0.00265-0.082 0zm1.6504 1.998h6v1h-6v-1zm0 3h5v1h-5v-1zm0 3h8v1h-8v-1zm0 3h4v1h-4v-1z"/>
+</svg>
diff --git a/core/js/js.js b/core/js/js.js
index 4f0f288bd0c..00a775b8027 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -85,6 +85,7 @@ var OC={
appConfig: window.oc_appconfig || {},
theme: window.oc_defaults || {},
coreApps:['', 'admin','log','core/search','settings','core','3rdparty'],
+ requestToken: oc_requesttoken,
menuSpeed: 50,
/**
diff --git a/core/js/update.js b/core/js/update.js
index fd3c7a56bd6..bc8df0e20c0 100644
--- a/core/js/update.js
+++ b/core/js/update.js
@@ -45,9 +45,10 @@
hasWarnings = true;
});
updateEventSource.listen('error', function(message) {
+ message = message || t('core', 'An error occurred.');
$('<span>').addClass('error').append(message).append('<br />').appendTo($el);
message = t('core', 'Please reload the page.');
- $('<span>').addClass('error').append(message).append('<br />').appendTo($el);
+ $('<span>').addClass('error').append('<a href=".">'+message+'</a><br />').appendTo($el);
updateEventSource.close();
});
updateEventSource.listen('failure', function(message) {
diff --git a/core/l10n/cs_CZ.js b/core/l10n/cs_CZ.js
index b11e7eab730..30c7e7d2b78 100644
--- a/core/l10n/cs_CZ.js
+++ b/core/l10n/cs_CZ.js
@@ -183,6 +183,7 @@ OC.L10N.register(
"Reset password" : "Obnovit heslo",
"Searching other places" : "Prohledávání ostatních umístění",
"No search results in other folders" : "V ostatních adresářích nebylo nic nalezeno",
+ "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} nález v dalším adresáři","{count} nálezy v dalších adresářích","{count} nálezů v dalších adresářích"],
"Personal" : "Osobní",
"Users" : "Uživatelé",
"Apps" : "Aplikace",
diff --git a/core/l10n/cs_CZ.json b/core/l10n/cs_CZ.json
index 7f92a531a69..ede877c6f23 100644
--- a/core/l10n/cs_CZ.json
+++ b/core/l10n/cs_CZ.json
@@ -181,6 +181,7 @@
"Reset password" : "Obnovit heslo",
"Searching other places" : "Prohledávání ostatních umístění",
"No search results in other folders" : "V ostatních adresářích nebylo nic nalezeno",
+ "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} nález v dalším adresáři","{count} nálezy v dalších adresářích","{count} nálezů v dalších adresářích"],
"Personal" : "Osobní",
"Users" : "Uživatelé",
"Apps" : "Aplikace",
diff --git a/core/l10n/el.js b/core/l10n/el.js
index 861bd24c208..96b0053ec1a 100644
--- a/core/l10n/el.js
+++ b/core/l10n/el.js
@@ -13,6 +13,8 @@ OC.L10N.register(
"Updated \"%s\" to %s" : "Αναβαθμίστηκε \"%s\" σε %s",
"Repair warning: " : "Προειδοποίηση διόρθωσης:",
"Repair error: " : "Σφάλμα διόρθωσης:",
+ "Set log level to debug - current level: \"%s\"" : "Καθορισμός του επιπέδου καταγραφής σε αποσφαλμάτωση - τρέχον επίπεδο: \"%s\"",
+ "Reset log level to \"%s\"" : "Επαναφορά επιπέδου καταγραφής σε \"%s\"",
"Following incompatible apps have been disabled: %s" : "Οι παρακάτω εφαρμογές έχουν απενεργοποιηθεί: %s",
"Following apps have been disabled: %s" : "Οι ακόλουθες εφαρμογές έχουν απενεργοποιηθεί: %s",
"Already up to date" : "Ήδη ενημερωμένο",
@@ -108,6 +110,7 @@ OC.L10N.register(
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Το /dev/urandom δεν είναι αναγνώσιμο από την PHP, το οποίο δεν συνίσταται για λόγους ασφαλείας. Περισσότερες πληροφορίες υπάρχουν στην <a href=\"{docLink}\">τεκμηρίωσή</a> μας.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Η έκδοσή σας της PHP ({version}) <a href=\"{phpLink}\">δεν υποστηρίζεται πια από την PHP</a>. Σας παροτρύνουμε να αναβαθμίσετε την PHP για να επωφεληθείτε από την απόδοση και την ασφάλεια που παρέχει η PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Η διαμόρφωση των reverse proxy headers δεν είναι σωστή ή συνδέεστε στο ownCloud από ένα έμπιστο διαμεσολαβητή. Αν δεν συνδέεστε στο ownCloud από έμπιστο διαμεσολαβητή, αυτό είναι ένα θέμα ασφαλείας και μπορεί να επιτρέψει σε έναν επιτιθέμενο να μασκαρέψει τη διεύθυνση IP του ως ορατή στο ownCloud. Περισσότερες πληροφορίες υπάρχουν στην <a 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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Το Memcached είναι ρυθμισμένο ως κατανεμημένη cache, αλλά είναι εγκατεστημένη η λάθος μονάδα \"memcache\" της PHP. Το \\OC\\Memcache\\Memcached υποστηρίζει μόνο τη \"memcached\" και όχι τη \"memcache\". Δείτε τη <a href=\"{wikiLink}\">memcached wiki και για τις δύο μονάδες</a>.",
"Error occurred while checking server setup" : "Παρουσιάστηκε σφάλμα κατά τον έλεγχο της εγκατάστασης με το διακομιστή",
"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." : "H \"{header}\" κεφαλίδα HTTP δεν έχει ρυθμιστεί ώστε να ισούται με \"{expected}\". Αυτό αποτελεί ενδεχόμενο κίνδυνο ασφάλειας ή ιδιωτικότητας και συστήνουμε τη διόρθωση αυτής της ρύθμισης.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "Η «Strict-Transport-Security\" κεφαλίδα HTTP δεν έχει ρυθμιστεί για τουλάχιστον \"{seconds}\" δευτερόλεπτα. Για αυξημένη ασφάλεια συστήνουμε την ενεργοποίηση του HSTS όπως περιγράφεται στις <a href=\"{docUrl}\">προτάσεις ασφαλείας</a> μας.",
diff --git a/core/l10n/el.json b/core/l10n/el.json
index ea2f75f65e5..36ea47aa2c3 100644
--- a/core/l10n/el.json
+++ b/core/l10n/el.json
@@ -11,6 +11,8 @@
"Updated \"%s\" to %s" : "Αναβαθμίστηκε \"%s\" σε %s",
"Repair warning: " : "Προειδοποίηση διόρθωσης:",
"Repair error: " : "Σφάλμα διόρθωσης:",
+ "Set log level to debug - current level: \"%s\"" : "Καθορισμός του επιπέδου καταγραφής σε αποσφαλμάτωση - τρέχον επίπεδο: \"%s\"",
+ "Reset log level to \"%s\"" : "Επαναφορά επιπέδου καταγραφής σε \"%s\"",
"Following incompatible apps have been disabled: %s" : "Οι παρακάτω εφαρμογές έχουν απενεργοποιηθεί: %s",
"Following apps have been disabled: %s" : "Οι ακόλουθες εφαρμογές έχουν απενεργοποιηθεί: %s",
"Already up to date" : "Ήδη ενημερωμένο",
@@ -106,6 +108,7 @@
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Το /dev/urandom δεν είναι αναγνώσιμο από την PHP, το οποίο δεν συνίσταται για λόγους ασφαλείας. Περισσότερες πληροφορίες υπάρχουν στην <a href=\"{docLink}\">τεκμηρίωσή</a> μας.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Η έκδοσή σας της PHP ({version}) <a href=\"{phpLink}\">δεν υποστηρίζεται πια από την PHP</a>. Σας παροτρύνουμε να αναβαθμίσετε την PHP για να επωφεληθείτε από την απόδοση και την ασφάλεια που παρέχει η PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Η διαμόρφωση των reverse proxy headers δεν είναι σωστή ή συνδέεστε στο ownCloud από ένα έμπιστο διαμεσολαβητή. Αν δεν συνδέεστε στο ownCloud από έμπιστο διαμεσολαβητή, αυτό είναι ένα θέμα ασφαλείας και μπορεί να επιτρέψει σε έναν επιτιθέμενο να μασκαρέψει τη διεύθυνση IP του ως ορατή στο ownCloud. Περισσότερες πληροφορίες υπάρχουν στην <a 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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Το Memcached είναι ρυθμισμένο ως κατανεμημένη cache, αλλά είναι εγκατεστημένη η λάθος μονάδα \"memcache\" της PHP. Το \\OC\\Memcache\\Memcached υποστηρίζει μόνο τη \"memcached\" και όχι τη \"memcache\". Δείτε τη <a href=\"{wikiLink}\">memcached wiki και για τις δύο μονάδες</a>.",
"Error occurred while checking server setup" : "Παρουσιάστηκε σφάλμα κατά τον έλεγχο της εγκατάστασης με το διακομιστή",
"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." : "H \"{header}\" κεφαλίδα HTTP δεν έχει ρυθμιστεί ώστε να ισούται με \"{expected}\". Αυτό αποτελεί ενδεχόμενο κίνδυνο ασφάλειας ή ιδιωτικότητας και συστήνουμε τη διόρθωση αυτής της ρύθμισης.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "Η «Strict-Transport-Security\" κεφαλίδα HTTP δεν έχει ρυθμιστεί για τουλάχιστον \"{seconds}\" δευτερόλεπτα. Για αυξημένη ασφάλεια συστήνουμε την ενεργοποίηση του HSTS όπως περιγράφεται στις <a href=\"{docUrl}\">προτάσεις ασφαλείας</a> μας.",
diff --git a/core/l10n/es.js b/core/l10n/es.js
index 816e4601520..598ab77ac09 100644
--- a/core/l10n/es.js
+++ b/core/l10n/es.js
@@ -110,6 +110,7 @@ OC.L10N.register(
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom no es legible por PHP el mismo es altamente desalentado por razones de seguridad. Más información puede ser encontrada en nuestra <a href=\"{docLink}\">documentación</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Su versión PHP ({version}) ya no es <a href=\"{phpLink}\">respaldada por PHP</a>. Recomendamos actualizar su versión de PHP para aprovechar las actualizaciones de rendimiento y seguridad proporcionadas por PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "La configuración de las cabeceras inversas del proxy son incorrectas, o está accediendo a ownCloud desde un proxy confiable. Si no está accediendo a ownCloud desde un proxy certificado y confiable, este es un problema de seguridad y puede permitirle a un hacker camuflar su dirección IP a ownCloud. Más información puede ser encontrada en nuestra <a href=\"{docLink}\">documentació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 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 href=\"{wikiLink}\">memcached wiki acerca de ambos modulos</a>",
"Error occurred while checking server setup" : "Ha ocurrido un error al revisar la configuración del servidor",
"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.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "La cabecera HTTP \"Strict-Transport-Security\" no está configurada en al menos \"{segundos}\" segundos. Para una mejor seguridad recomendamos que habilite HSTS como es descripta en nuestros <a href=\"{docUrl}\">consejos de seguridad</a>.",
diff --git a/core/l10n/es.json b/core/l10n/es.json
index bc4b3c4dd34..f650b9ba45e 100644
--- a/core/l10n/es.json
+++ b/core/l10n/es.json
@@ -108,6 +108,7 @@
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom no es legible por PHP el mismo es altamente desalentado por razones de seguridad. Más información puede ser encontrada en nuestra <a href=\"{docLink}\">documentación</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Su versión PHP ({version}) ya no es <a href=\"{phpLink}\">respaldada por PHP</a>. Recomendamos actualizar su versión de PHP para aprovechar las actualizaciones de rendimiento y seguridad proporcionadas por PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "La configuración de las cabeceras inversas del proxy son incorrectas, o está accediendo a ownCloud desde un proxy confiable. Si no está accediendo a ownCloud desde un proxy certificado y confiable, este es un problema de seguridad y puede permitirle a un hacker camuflar su dirección IP a ownCloud. Más información puede ser encontrada en nuestra <a href=\"{docLink}\">documentació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 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 href=\"{wikiLink}\">memcached wiki acerca de ambos modulos</a>",
"Error occurred while checking server setup" : "Ha ocurrido un error al revisar la configuración del servidor",
"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.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "La cabecera HTTP \"Strict-Transport-Security\" no está configurada en al menos \"{segundos}\" segundos. Para una mejor seguridad recomendamos que habilite HSTS como es descripta en nuestros <a href=\"{docUrl}\">consejos de seguridad</a>.",
diff --git a/core/l10n/fa.js b/core/l10n/fa.js
index 694750bba81..7a1becdbd5f 100644
--- a/core/l10n/fa.js
+++ b/core/l10n/fa.js
@@ -5,8 +5,14 @@ OC.L10N.register(
"Preparing update" : "آماده‌سازی به روز‌ رسانی",
"Turned on maintenance mode" : "حالت \" در دست تعمیر \" فعال شد .",
"Turned off maintenance mode" : "حالت \" در دست تعمیر \" غیرفعال شد .",
+ "Maintenance mode is kept active" : "حالت تعمیرات فعال نگه‌داشته شده است",
"Updated database" : "بروز رسانی پایگاه داده انجام شد .",
+ "Updated \"%s\" to %s" : "\"%s\" به %s بروزرسانی شد",
+ "Repair warning: " : "اخطار تعمیر:",
+ "Repair error: " : "خطای تعمیر:",
+ "Already up to date" : "در حال حاضر بروز است",
"File is too big" : "فایل خیلی بزرگ است",
+ "Invalid file provided" : "فایل داده‌شده نا معتبر است",
"No image or file provided" : "هیچ فایل یا تصویری وارد نشده است",
"Unknown filetype" : "نوع فایل ناشناخته",
"Invalid image" : "عکس نامعتبر",
@@ -25,6 +31,13 @@ OC.L10N.register(
"Thu." : "پنج شنبه",
"Fri." : "جمعه",
"Sat." : "شنبه",
+ "Su" : "یک‌شنبه",
+ "Mo" : "دوشنبه",
+ "Tu" : "سه‌شنبه",
+ "We" : "چهار‌شنبه",
+ "Th" : "پنج‌شنبه",
+ "Fr" : "جمعه",
+ "Sa" : "شنبه",
"January" : "ژانویه",
"February" : "فبریه",
"March" : "مارس",
@@ -72,6 +85,7 @@ OC.L10N.register(
"Continue" : "ادامه",
"(all selected)" : "(همه انتخاب شده اند)",
"({count} selected)" : "({count} انتخاب شده)",
+ "Error loading file exists template" : "خطا در بارگزاری فایل قالب",
"Very weak password" : "رمز عبور بسیار ضعیف",
"Weak password" : "رمز عبور ضعیف",
"So-so password" : "رمز عبور متوسط",
@@ -118,6 +132,7 @@ OC.L10N.register(
"Share with users or groups …" : "اشتراک گذاری با کاربران یا گروه ها ...",
"Share with users, groups or remote users …" : "اشتراک گذاری با کاربران، گروه‌ها یا کاربران راه دور...",
"Warning" : "اخطار",
+ "Error while sending notification" : "خطا در حین ارسال نوتیفیکیشن",
"The object type is not specified." : "نوع شی تعیین نشده است.",
"Enter new" : "مورد جدید را وارد کنید",
"Delete" : "حذف",
@@ -126,9 +141,13 @@ OC.L10N.register(
"unknown text" : "متن نامعلوم",
"Hello world!" : "سلام دنیا!",
"sunny" : "آفتابی",
+ "Hello {name}, the weather is {weather}" : "سلام {name}, هوا {weather} است",
"Hello {name}" : "سلام {name}",
"_download %n file_::_download %n files_" : ["دانلود %n فایل"],
+ "The update was unsuccessful. " : "بروزرسانی ناموفق بود.",
+ "The update was successful. There were warnings." : "بروزرسانی با موفقیت انجام شد، اخطارهایی وجود دارد.",
"The update was successful. Redirecting you to ownCloud now." : "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.",
+ "%s password reset" : "%s رمزعبور تغییر کرد",
"Use the following link to reset your password: {link}" : "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}",
"New password" : "گذرواژه جدید",
"New Password" : "رمزعبور جدید",
@@ -147,14 +166,18 @@ OC.L10N.register(
"Error unfavoriting" : "خطا هنگام حذف از موارد محبوب",
"Access forbidden" : "اجازه دسترسی به مناطق ممنوعه را ندارید",
"File not found" : "فایل یافت نشد",
+ "The share will expire on %s." : "اشتراک‌گذاری در %s منقضی خواهد شد.",
"Cheers!" : "سلامتی!",
"Internal Server Error" : "خطای داخلی سرور",
"Technical details" : "جزئیات فنی",
+ "Remote Address: %s" : "آدرس راه‌دور: %s",
+ "Request ID: %s" : "ID درخواست: %s",
"Type: %s" : "نوع: %s",
"Code: %s" : "کد: %s",
"Message: %s" : "پیام: %s",
"File: %s" : "فایل : %s",
"Line: %s" : "خط: %s",
+ "Security warning" : "اخطار امنیتی",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند.",
"Create an <strong>admin account</strong>" : "لطفا یک <strong> شناسه برای مدیر</strong> بسازید",
"Username" : "نام کاربری",
@@ -167,14 +190,23 @@ OC.L10N.register(
"Database name" : "نام پایگاه داده",
"Database tablespace" : "جدول پایگاه داده",
"Database host" : "هاست پایگاه داده",
+ "Performance warning" : "اخطار کارایی",
"Finish setup" : "اتمام نصب",
"Finishing …" : "در حال اتمام ...",
+ "Need help?" : "کمک لازم دارید ؟",
+ "See the documentation" : "مشاهده‌ی مستندات",
"Log out" : "خروج",
"Search" : "جست‌و‌جو",
+ "Please contact your administrator." : "لطفا با مدیر وب‌سایت تماس بگیرید.",
+ "An internal error occured." : "یک خطای داخلی رخ داده‌است.",
+ "Please try again or contact your administrator." : "لطفا مجددا تلاش کنید یا با مدیر سیستم تماس بگیرید.",
"Log in" : "ورود",
"remember" : "بیاد آوری",
"Alternative Logins" : "ورود متناوب",
"Thank you for your patience." : "از صبر شما متشکریم",
+ "Add \"%s\" as trusted domain" : "افزودن \"%s\" به عنوان دامنه مورد اعتماد",
+ "These apps will be updated:" : "این برنامه‌ها بروزرسانی شده‌اند:",
+ "The theme %s has been disabled." : "قالب %s غیر فعال شد.",
"Start update" : "اغاز به روز رسانی"
},
"nplurals=1; plural=0;");
diff --git a/core/l10n/fa.json b/core/l10n/fa.json
index d1dd024ec42..4f3d4163903 100644
--- a/core/l10n/fa.json
+++ b/core/l10n/fa.json
@@ -3,8 +3,14 @@
"Preparing update" : "آماده‌سازی به روز‌ رسانی",
"Turned on maintenance mode" : "حالت \" در دست تعمیر \" فعال شد .",
"Turned off maintenance mode" : "حالت \" در دست تعمیر \" غیرفعال شد .",
+ "Maintenance mode is kept active" : "حالت تعمیرات فعال نگه‌داشته شده است",
"Updated database" : "بروز رسانی پایگاه داده انجام شد .",
+ "Updated \"%s\" to %s" : "\"%s\" به %s بروزرسانی شد",
+ "Repair warning: " : "اخطار تعمیر:",
+ "Repair error: " : "خطای تعمیر:",
+ "Already up to date" : "در حال حاضر بروز است",
"File is too big" : "فایل خیلی بزرگ است",
+ "Invalid file provided" : "فایل داده‌شده نا معتبر است",
"No image or file provided" : "هیچ فایل یا تصویری وارد نشده است",
"Unknown filetype" : "نوع فایل ناشناخته",
"Invalid image" : "عکس نامعتبر",
@@ -23,6 +29,13 @@
"Thu." : "پنج شنبه",
"Fri." : "جمعه",
"Sat." : "شنبه",
+ "Su" : "یک‌شنبه",
+ "Mo" : "دوشنبه",
+ "Tu" : "سه‌شنبه",
+ "We" : "چهار‌شنبه",
+ "Th" : "پنج‌شنبه",
+ "Fr" : "جمعه",
+ "Sa" : "شنبه",
"January" : "ژانویه",
"February" : "فبریه",
"March" : "مارس",
@@ -70,6 +83,7 @@
"Continue" : "ادامه",
"(all selected)" : "(همه انتخاب شده اند)",
"({count} selected)" : "({count} انتخاب شده)",
+ "Error loading file exists template" : "خطا در بارگزاری فایل قالب",
"Very weak password" : "رمز عبور بسیار ضعیف",
"Weak password" : "رمز عبور ضعیف",
"So-so password" : "رمز عبور متوسط",
@@ -116,6 +130,7 @@
"Share with users or groups …" : "اشتراک گذاری با کاربران یا گروه ها ...",
"Share with users, groups or remote users …" : "اشتراک گذاری با کاربران، گروه‌ها یا کاربران راه دور...",
"Warning" : "اخطار",
+ "Error while sending notification" : "خطا در حین ارسال نوتیفیکیشن",
"The object type is not specified." : "نوع شی تعیین نشده است.",
"Enter new" : "مورد جدید را وارد کنید",
"Delete" : "حذف",
@@ -124,9 +139,13 @@
"unknown text" : "متن نامعلوم",
"Hello world!" : "سلام دنیا!",
"sunny" : "آفتابی",
+ "Hello {name}, the weather is {weather}" : "سلام {name}, هوا {weather} است",
"Hello {name}" : "سلام {name}",
"_download %n file_::_download %n files_" : ["دانلود %n فایل"],
+ "The update was unsuccessful. " : "بروزرسانی ناموفق بود.",
+ "The update was successful. There were warnings." : "بروزرسانی با موفقیت انجام شد، اخطارهایی وجود دارد.",
"The update was successful. Redirecting you to ownCloud now." : "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.",
+ "%s password reset" : "%s رمزعبور تغییر کرد",
"Use the following link to reset your password: {link}" : "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}",
"New password" : "گذرواژه جدید",
"New Password" : "رمزعبور جدید",
@@ -145,14 +164,18 @@
"Error unfavoriting" : "خطا هنگام حذف از موارد محبوب",
"Access forbidden" : "اجازه دسترسی به مناطق ممنوعه را ندارید",
"File not found" : "فایل یافت نشد",
+ "The share will expire on %s." : "اشتراک‌گذاری در %s منقضی خواهد شد.",
"Cheers!" : "سلامتی!",
"Internal Server Error" : "خطای داخلی سرور",
"Technical details" : "جزئیات فنی",
+ "Remote Address: %s" : "آدرس راه‌دور: %s",
+ "Request ID: %s" : "ID درخواست: %s",
"Type: %s" : "نوع: %s",
"Code: %s" : "کد: %s",
"Message: %s" : "پیام: %s",
"File: %s" : "فایل : %s",
"Line: %s" : "خط: %s",
+ "Security warning" : "اخطار امنیتی",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند.",
"Create an <strong>admin account</strong>" : "لطفا یک <strong> شناسه برای مدیر</strong> بسازید",
"Username" : "نام کاربری",
@@ -165,14 +188,23 @@
"Database name" : "نام پایگاه داده",
"Database tablespace" : "جدول پایگاه داده",
"Database host" : "هاست پایگاه داده",
+ "Performance warning" : "اخطار کارایی",
"Finish setup" : "اتمام نصب",
"Finishing …" : "در حال اتمام ...",
+ "Need help?" : "کمک لازم دارید ؟",
+ "See the documentation" : "مشاهده‌ی مستندات",
"Log out" : "خروج",
"Search" : "جست‌و‌جو",
+ "Please contact your administrator." : "لطفا با مدیر وب‌سایت تماس بگیرید.",
+ "An internal error occured." : "یک خطای داخلی رخ داده‌است.",
+ "Please try again or contact your administrator." : "لطفا مجددا تلاش کنید یا با مدیر سیستم تماس بگیرید.",
"Log in" : "ورود",
"remember" : "بیاد آوری",
"Alternative Logins" : "ورود متناوب",
"Thank you for your patience." : "از صبر شما متشکریم",
+ "Add \"%s\" as trusted domain" : "افزودن \"%s\" به عنوان دامنه مورد اعتماد",
+ "These apps will be updated:" : "این برنامه‌ها بروزرسانی شده‌اند:",
+ "The theme %s has been disabled." : "قالب %s غیر فعال شد.",
"Start update" : "اغاز به روز رسانی"
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/core/l10n/fi_FI.js b/core/l10n/fi_FI.js
index 4bc91566ac2..a0e89b03383 100644
--- a/core/l10n/fi_FI.js
+++ b/core/l10n/fi_FI.js
@@ -110,6 +110,7 @@ OC.L10N.register(
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom ei ole luettavissa PHP:n toimesta. Turvallisuussyistä tämä ei ole suositeltava asetus. Lisätietoja on tarjolla <a href=\"{docLink}\">dokumentaatiossa</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Käytössäsi oleva PHP-versio ({version}) ei ole enää <a href=\"{phpLink}\">PHP:n tukema</a>. Päivitä PHP:n versio, jotta hyödyt suorituskykyyn ja tietoturvaan vaikuttavista päivityksistä.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Käänteisen välityspalvelimen otsakkaiden asetukset ovat väärin, tai vaihtoehtoisesti käytät ownCloudia luotetun välityspalvelimen kautta. Jos et käytä ownCloudia luotetun välityspalvelimen kautta, kyseessä on tietoturvaongelma, joka mahdollistaa hyökkääjän väärentää ownCloudille näkyvän IP-osoitteen. Lisätietoja on saatavilla <a href=\"{docLink}\">dokumentaatiosta</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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached on määritelty hajautetuksi välimuistiksi, mutta väärä PHP-moduuli \"memcache\" on asennettuna. \\OC\\Memcache\\Memcached tukee vain \"memcached\":ia, ei \"memcache\":a. Lisätietoja <a href=\"{wikiLink}\">memcachedin wikissä molemmista moduuleista</a>.",
"Error occurred while checking server setup" : "Virhe palvelimen määrityksiä tarkistaessa",
"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-otsaketta \"{header}\" ei ole määritetty vastaamaan arvoa \"{expected}\". Kyseessä on mahdollinen tietoturvaan tai -suojaan liittyvä riski, joten suosittelemme muuttamaan asetuksen arvoa.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "HTTP-otsaketta \"Strict-Transport-Security\" ei ole määritetty vähintään \"{seconds}\" sekuntiin. Suosittelemme HSTS:n käyttöä paremman tietoturvan vuoksi, kuten <a href=\"{docUrl}\">tietoturvavinkeissä</a> neuvotaan.",
diff --git a/core/l10n/fi_FI.json b/core/l10n/fi_FI.json
index 36e4bdfe2df..17ca162655f 100644
--- a/core/l10n/fi_FI.json
+++ b/core/l10n/fi_FI.json
@@ -108,6 +108,7 @@
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom ei ole luettavissa PHP:n toimesta. Turvallisuussyistä tämä ei ole suositeltava asetus. Lisätietoja on tarjolla <a href=\"{docLink}\">dokumentaatiossa</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Käytössäsi oleva PHP-versio ({version}) ei ole enää <a href=\"{phpLink}\">PHP:n tukema</a>. Päivitä PHP:n versio, jotta hyödyt suorituskykyyn ja tietoturvaan vaikuttavista päivityksistä.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Käänteisen välityspalvelimen otsakkaiden asetukset ovat väärin, tai vaihtoehtoisesti käytät ownCloudia luotetun välityspalvelimen kautta. Jos et käytä ownCloudia luotetun välityspalvelimen kautta, kyseessä on tietoturvaongelma, joka mahdollistaa hyökkääjän väärentää ownCloudille näkyvän IP-osoitteen. Lisätietoja on saatavilla <a href=\"{docLink}\">dokumentaatiosta</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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached on määritelty hajautetuksi välimuistiksi, mutta väärä PHP-moduuli \"memcache\" on asennettuna. \\OC\\Memcache\\Memcached tukee vain \"memcached\":ia, ei \"memcache\":a. Lisätietoja <a href=\"{wikiLink}\">memcachedin wikissä molemmista moduuleista</a>.",
"Error occurred while checking server setup" : "Virhe palvelimen määrityksiä tarkistaessa",
"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-otsaketta \"{header}\" ei ole määritetty vastaamaan arvoa \"{expected}\". Kyseessä on mahdollinen tietoturvaan tai -suojaan liittyvä riski, joten suosittelemme muuttamaan asetuksen arvoa.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "HTTP-otsaketta \"Strict-Transport-Security\" ei ole määritetty vähintään \"{seconds}\" sekuntiin. Suosittelemme HSTS:n käyttöä paremman tietoturvan vuoksi, kuten <a href=\"{docUrl}\">tietoturvavinkeissä</a> neuvotaan.",
diff --git a/core/l10n/fr.js b/core/l10n/fr.js
index 6e8343a0675..eac5c9ad233 100644
--- a/core/l10n/fr.js
+++ b/core/l10n/fr.js
@@ -3,6 +3,7 @@ OC.L10N.register(
{
"Couldn't send mail to following users: %s " : "Impossible d'envoyer un courriel aux utilisateurs suivants : %s",
"Preparing update" : "Préparation de la mise à jour",
+ "Migration tests are skipped - \"update.skip-migration-test\" is activated in config.php" : "Les tests de migration sont ignorés - \"update.skip-migration-test\" est activé dans config.php",
"Turned on maintenance mode" : "Mode de maintenance activé",
"Turned off maintenance mode" : "Mode de maintenance désactivé",
"Maintenance mode is kept active" : "Le mode de maintenance est laissé actif",
@@ -12,6 +13,8 @@ OC.L10N.register(
"Updated \"%s\" to %s" : "Mise à jour de « %s » vers %s",
"Repair warning: " : "Avertissement de réparation :",
"Repair error: " : "Erreur de réparation :",
+ "Set log level to debug - current level: \"%s\"" : "Réglage du niveau de log à \"debug\" - niveau actuel: \"%s\"",
+ "Reset log level to \"%s\"" : "Réglage du niveau de log à \"%s\"",
"Following incompatible apps have been disabled: %s" : "Les applications incompatibles suivantes ont été désactivées : %s",
"Following apps have been disabled: %s" : "Les applications suivantes ont été désactivées : %s",
"Already up to date" : "Déjà à jour",
@@ -71,7 +74,7 @@ OC.L10N.register(
"Dec." : "Déc.",
"Settings" : "Paramètres",
"Saving..." : "Enregistrement…",
- "seconds ago" : "il y a quelques secondes",
+ "seconds ago" : "à l'instant",
"Couldn't send reset email. Please contact your administrator." : "Impossible d'envoyer le courriel de réinitialisation. Veuillez contacter votre administrateur.",
"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." : "Un lien permettant de réinitialiser votre mot de passe vient de vous être envoyé par courriel.<br>Si vous ne le recevez pas dans un délai raisonnable, contactez votre administrateur.<br>N'oubliez pas de vérifier dans votre dossier pourriel / spam!",
"Your files are encrypted. If you haven't enabled the recovery key, 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?" : "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura aucun moyen de récupérer vos données une fois le mot de passe réinitialisé.<br />Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. <br />Voulez-vous vraiment continuer ?",
@@ -106,7 +109,7 @@ OC.L10N.register(
"No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Aucun cache de la mémoire n'est configuré. Si possible, configurez un \"memcache\" pour augmenter les performances. Pour plus d'information consultez la <a href=\"{docLink}\">documentation</a>.",
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom n'est pas lisible par PHP, ce qui est fortement déconseillé pour des raisons de sécurité. Plus d'informations peuvent être trouvées dans notre <a href=\"{docLink}\">documentation</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "La version de PHP utilisée ({version}) <a href=\"{phpLink}\">n'est plus prise en charge par les créateurs de PHP</a>. Nous vous recommandons de mettre à niveau votre installation de PHP pour bénéficier de meilleures performances et des mises à jour de sécurité fournies par PHP.",
- "The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "L'entête du fichier de configuration du reverse proxy est incorrect, ou vous accédez ownCloud depuis un proxy de confiance. Si vous n'êtes pas en train d’accédé ownCloud depuis un proxy de confiance, ceci est un problème de sécurité and peut permettre à un attaquant de parodier son adresse IP visible par ownCloud. Plus d'information est accessible dans notre <a href=\"{docLink}\">documentation</a>.",
+ "The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "La configuration des headers du reverse proxy est incorrecte, ou vous accédez ownCloud depuis un proxy de confiance. Si vous n'êtes pas en train d’accéder à ownCloud depuis un proxy de confiance, ceci est un problème de sécurité qui peut permettre à un attaquant de masquer sa véritable adresse IP. <a href=\"{docLink}\">Plus d'info dans la documentation.</a>",
"Error occurred while checking server setup" : "Une erreur s'est produite lors de la vérification de la configuration du serveur",
"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 donc recommandé d'ajuster ce paramètre.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "L'en-tête HTTP \"Strict-Transport-Security\" n'est pas configurée à \"{seconds}\" secondes. Pour renforcer la sécurité nous recommandons d'activer HSTS comme décrit dans notre <a href=\"{docUrl}\">Guide pour le renforcement et la sécurité</a>.",
@@ -142,9 +145,9 @@ OC.L10N.register(
"Unshare" : "Ne plus partager",
"can share" : "peut partager",
"can edit" : "peut modifier",
- "create" : "créer",
+ "create" : "création",
"change" : "modification",
- "delete" : "supprimer",
+ "delete" : "suppression",
"access control" : "contrôle d'accès",
"Share details could not be loaded for this item." : "Les informations de partage n'ont pu être chargées pour cet élément.",
"An error occured. Please try again" : "Une erreur est survenue. Merci de réessayer",
@@ -183,6 +186,7 @@ OC.L10N.register(
"New Password" : "Nouveau mot de passe",
"Reset password" : "Réinitialiser le mot de passe",
"Searching other places" : "Recherche en cours dans d'autres emplacements",
+ "No search results in other folders" : "Aucun résultat dans d'autres dossiers",
"Personal" : "Personnel",
"Users" : "Utilisateurs",
"Apps" : "Applications",
@@ -223,7 +227,7 @@ OC.L10N.register(
"Storage & database" : "Stockage & base de données",
"Data folder" : "Répertoire des données",
"Configure the database" : "Configurer la base de données",
- "Only %s is available." : "%s seulement est disponible.",
+ "Only %s is available." : "Seul(e) %s est disponible.",
"Install and activate additional PHP modules to choose other database types." : "Installez et activez les modules PHP additionnels adéquats pour choisir d'autres types de base de données.",
"For more details check out the documentation." : "Consultez la documentation pour plus de détails.",
"Database user" : "Utilisateur de la base de données",
@@ -231,7 +235,7 @@ OC.L10N.register(
"Database name" : "Nom de la base de données",
"Database tablespace" : "Tablespace de la base de données",
"Database host" : "Hôte de la base de données",
- "Performance warning" : "Avertissement de performance",
+ "Performance warning" : "Avertissement à propos des performances",
"SQLite will be used as database." : "SQLite sera utilisé comme gestionnaire de base de données.",
"For larger installations we recommend to choose a different database backend." : "Pour des installations plus volumineuses, nous vous conseillons d'utiliser un autre gestionnaire de base de données.",
"Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "En particulier si vous utilisez le client de bureau pour synchroniser vos données : l'utilisation de SQLite est alors déconseillée.",
@@ -262,7 +266,7 @@ OC.L10N.register(
"App update required" : "Mise à jour de l'application nécessaire",
"%s will be updated to version %s" : "%s sera mis à jour vers la version %s.",
"These apps will be updated:" : "Les applications suivantes seront mises à jour:",
- "These incompatible apps will be disabled:" : "Ces applications incompatibles ont été désactivés:",
+ "These incompatible apps will be disabled:" : "Ces applications incompatibles ont été désactivées:",
"The theme %s has been disabled." : "Le thème %s a été désactivé.",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Veuillez vous assurer qu'une copie de sauvegarde de la base de données, du dossier de configuration (config) et du dossier de données (data) a été réalisée avant de commencer.",
"Start update" : "Démarrer la mise à jour",
diff --git a/core/l10n/fr.json b/core/l10n/fr.json
index 62e6ba164f6..18817897c43 100644
--- a/core/l10n/fr.json
+++ b/core/l10n/fr.json
@@ -1,6 +1,7 @@
{ "translations": {
"Couldn't send mail to following users: %s " : "Impossible d'envoyer un courriel aux utilisateurs suivants : %s",
"Preparing update" : "Préparation de la mise à jour",
+ "Migration tests are skipped - \"update.skip-migration-test\" is activated in config.php" : "Les tests de migration sont ignorés - \"update.skip-migration-test\" est activé dans config.php",
"Turned on maintenance mode" : "Mode de maintenance activé",
"Turned off maintenance mode" : "Mode de maintenance désactivé",
"Maintenance mode is kept active" : "Le mode de maintenance est laissé actif",
@@ -10,6 +11,8 @@
"Updated \"%s\" to %s" : "Mise à jour de « %s » vers %s",
"Repair warning: " : "Avertissement de réparation :",
"Repair error: " : "Erreur de réparation :",
+ "Set log level to debug - current level: \"%s\"" : "Réglage du niveau de log à \"debug\" - niveau actuel: \"%s\"",
+ "Reset log level to \"%s\"" : "Réglage du niveau de log à \"%s\"",
"Following incompatible apps have been disabled: %s" : "Les applications incompatibles suivantes ont été désactivées : %s",
"Following apps have been disabled: %s" : "Les applications suivantes ont été désactivées : %s",
"Already up to date" : "Déjà à jour",
@@ -69,7 +72,7 @@
"Dec." : "Déc.",
"Settings" : "Paramètres",
"Saving..." : "Enregistrement…",
- "seconds ago" : "il y a quelques secondes",
+ "seconds ago" : "à l'instant",
"Couldn't send reset email. Please contact your administrator." : "Impossible d'envoyer le courriel de réinitialisation. Veuillez contacter votre administrateur.",
"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." : "Un lien permettant de réinitialiser votre mot de passe vient de vous être envoyé par courriel.<br>Si vous ne le recevez pas dans un délai raisonnable, contactez votre administrateur.<br>N'oubliez pas de vérifier dans votre dossier pourriel / spam!",
"Your files are encrypted. If you haven't enabled the recovery key, 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?" : "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura aucun moyen de récupérer vos données une fois le mot de passe réinitialisé.<br />Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. <br />Voulez-vous vraiment continuer ?",
@@ -104,7 +107,7 @@
"No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Aucun cache de la mémoire n'est configuré. Si possible, configurez un \"memcache\" pour augmenter les performances. Pour plus d'information consultez la <a href=\"{docLink}\">documentation</a>.",
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom n'est pas lisible par PHP, ce qui est fortement déconseillé pour des raisons de sécurité. Plus d'informations peuvent être trouvées dans notre <a href=\"{docLink}\">documentation</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "La version de PHP utilisée ({version}) <a href=\"{phpLink}\">n'est plus prise en charge par les créateurs de PHP</a>. Nous vous recommandons de mettre à niveau votre installation de PHP pour bénéficier de meilleures performances et des mises à jour de sécurité fournies par PHP.",
- "The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "L'entête du fichier de configuration du reverse proxy est incorrect, ou vous accédez ownCloud depuis un proxy de confiance. Si vous n'êtes pas en train d’accédé ownCloud depuis un proxy de confiance, ceci est un problème de sécurité and peut permettre à un attaquant de parodier son adresse IP visible par ownCloud. Plus d'information est accessible dans notre <a href=\"{docLink}\">documentation</a>.",
+ "The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "La configuration des headers du reverse proxy est incorrecte, ou vous accédez ownCloud depuis un proxy de confiance. Si vous n'êtes pas en train d’accéder à ownCloud depuis un proxy de confiance, ceci est un problème de sécurité qui peut permettre à un attaquant de masquer sa véritable adresse IP. <a href=\"{docLink}\">Plus d'info dans la documentation.</a>",
"Error occurred while checking server setup" : "Une erreur s'est produite lors de la vérification de la configuration du serveur",
"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 donc recommandé d'ajuster ce paramètre.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "L'en-tête HTTP \"Strict-Transport-Security\" n'est pas configurée à \"{seconds}\" secondes. Pour renforcer la sécurité nous recommandons d'activer HSTS comme décrit dans notre <a href=\"{docUrl}\">Guide pour le renforcement et la sécurité</a>.",
@@ -140,9 +143,9 @@
"Unshare" : "Ne plus partager",
"can share" : "peut partager",
"can edit" : "peut modifier",
- "create" : "créer",
+ "create" : "création",
"change" : "modification",
- "delete" : "supprimer",
+ "delete" : "suppression",
"access control" : "contrôle d'accès",
"Share details could not be loaded for this item." : "Les informations de partage n'ont pu être chargées pour cet élément.",
"An error occured. Please try again" : "Une erreur est survenue. Merci de réessayer",
@@ -181,6 +184,7 @@
"New Password" : "Nouveau mot de passe",
"Reset password" : "Réinitialiser le mot de passe",
"Searching other places" : "Recherche en cours dans d'autres emplacements",
+ "No search results in other folders" : "Aucun résultat dans d'autres dossiers",
"Personal" : "Personnel",
"Users" : "Utilisateurs",
"Apps" : "Applications",
@@ -221,7 +225,7 @@
"Storage & database" : "Stockage & base de données",
"Data folder" : "Répertoire des données",
"Configure the database" : "Configurer la base de données",
- "Only %s is available." : "%s seulement est disponible.",
+ "Only %s is available." : "Seul(e) %s est disponible.",
"Install and activate additional PHP modules to choose other database types." : "Installez et activez les modules PHP additionnels adéquats pour choisir d'autres types de base de données.",
"For more details check out the documentation." : "Consultez la documentation pour plus de détails.",
"Database user" : "Utilisateur de la base de données",
@@ -229,7 +233,7 @@
"Database name" : "Nom de la base de données",
"Database tablespace" : "Tablespace de la base de données",
"Database host" : "Hôte de la base de données",
- "Performance warning" : "Avertissement de performance",
+ "Performance warning" : "Avertissement à propos des performances",
"SQLite will be used as database." : "SQLite sera utilisé comme gestionnaire de base de données.",
"For larger installations we recommend to choose a different database backend." : "Pour des installations plus volumineuses, nous vous conseillons d'utiliser un autre gestionnaire de base de données.",
"Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "En particulier si vous utilisez le client de bureau pour synchroniser vos données : l'utilisation de SQLite est alors déconseillée.",
@@ -260,7 +264,7 @@
"App update required" : "Mise à jour de l'application nécessaire",
"%s will be updated to version %s" : "%s sera mis à jour vers la version %s.",
"These apps will be updated:" : "Les applications suivantes seront mises à jour:",
- "These incompatible apps will be disabled:" : "Ces applications incompatibles ont été désactivés:",
+ "These incompatible apps will be disabled:" : "Ces applications incompatibles ont été désactivées:",
"The theme %s has been disabled." : "Le thème %s a été désactivé.",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Veuillez vous assurer qu'une copie de sauvegarde de la base de données, du dossier de configuration (config) et du dossier de données (data) a été réalisée avant de commencer.",
"Start update" : "Démarrer la mise à jour",
diff --git a/core/l10n/hu_HU.js b/core/l10n/hu_HU.js
index 17edf5dd286..f90cd8d2b62 100644
--- a/core/l10n/hu_HU.js
+++ b/core/l10n/hu_HU.js
@@ -110,6 +110,7 @@ OC.L10N.register(
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "a /dev/urandom eszköz nem elérhető PHP-ből, ami nagyon nagy biztonsági problémát jelent. További információ található az alábbi <a href=\"{docLink}\">dokumentációban</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "A PHP verziód ({version}) már nem <a href=\"{phpLink}\">támogatott a PHP által</a>. Javasoljuk, hogy frissítsd a PHP verziót, hogy kihasználd a teljesítménybeli és biztonsági javításokat.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "A fordított proxy fejlécek konfigurációs beállításai helytelenek, vagy egy megbízható proxy-ból próbálja az ownCloud-ot elérni. Ha nem megbízható proxy-ból próbálja elérni az ownCloud-ot, akkor ez egy biztonsági probléma, a támadó az ownCloud számára látható IP cím csalást tud végrehajtani. További információ található a <a href=\"{docLink}\">dokumentációban</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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached be van konfigurálva gyorsítótárnak, de rossz \"memcache\" PHP modul van telepítve. \\OC\\Memcache\\Memcached csak a \"memcached\"-t támogatja, és nem a \"memcache\"-t. Kérjük, nézd meg a <a href=\"{wikiLink}\">memcached wiki oldalt a modulokkal kapcsolatban</a>.",
"Error occurred while checking server setup" : "Hiba történt a szerver beállítások ellenőrzése közben",
"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." : "A \"{header}\" HTTP fejléc nincs beállítva, hogy megegyezzen az elvárttal \"{expected}\". Ez egy potenciális biztonsági kockázat és kérjük, hogy változtassa meg a beállításokat.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "A \"Strict-Transport-Security\" HTTP fejléc nincs beállítva hogy \"{seconds}\" másodpercig tartson. Biztonsági okokból ajánljuk, hogy engedélyezze a HSTS, ahogyan ezt részletezzük a <a href=\"{docUrl}\">biztonsági tippek</a> dokumentációban.",
diff --git a/core/l10n/hu_HU.json b/core/l10n/hu_HU.json
index 976fd0050fe..429c5e095ea 100644
--- a/core/l10n/hu_HU.json
+++ b/core/l10n/hu_HU.json
@@ -108,6 +108,7 @@
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "a /dev/urandom eszköz nem elérhető PHP-ből, ami nagyon nagy biztonsági problémát jelent. További információ található az alábbi <a href=\"{docLink}\">dokumentációban</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "A PHP verziód ({version}) már nem <a href=\"{phpLink}\">támogatott a PHP által</a>. Javasoljuk, hogy frissítsd a PHP verziót, hogy kihasználd a teljesítménybeli és biztonsági javításokat.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "A fordított proxy fejlécek konfigurációs beállításai helytelenek, vagy egy megbízható proxy-ból próbálja az ownCloud-ot elérni. Ha nem megbízható proxy-ból próbálja elérni az ownCloud-ot, akkor ez egy biztonsági probléma, a támadó az ownCloud számára látható IP cím csalást tud végrehajtani. További információ található a <a href=\"{docLink}\">dokumentációban</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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached be van konfigurálva gyorsítótárnak, de rossz \"memcache\" PHP modul van telepítve. \\OC\\Memcache\\Memcached csak a \"memcached\"-t támogatja, és nem a \"memcache\"-t. Kérjük, nézd meg a <a href=\"{wikiLink}\">memcached wiki oldalt a modulokkal kapcsolatban</a>.",
"Error occurred while checking server setup" : "Hiba történt a szerver beállítások ellenőrzése közben",
"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." : "A \"{header}\" HTTP fejléc nincs beállítva, hogy megegyezzen az elvárttal \"{expected}\". Ez egy potenciális biztonsági kockázat és kérjük, hogy változtassa meg a beállításokat.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "A \"Strict-Transport-Security\" HTTP fejléc nincs beállítva hogy \"{seconds}\" másodpercig tartson. Biztonsági okokból ajánljuk, hogy engedélyezze a HSTS, ahogyan ezt részletezzük a <a href=\"{docUrl}\">biztonsági tippek</a> dokumentációban.",
diff --git a/core/l10n/id.js b/core/l10n/id.js
index c113b1cd555..7213844072f 100644
--- a/core/l10n/id.js
+++ b/core/l10n/id.js
@@ -3,6 +3,7 @@ OC.L10N.register(
{
"Couldn't send mail to following users: %s " : "Tidak dapat mengirim Email ke pengguna berikut: %s",
"Preparing update" : "Mempersiapkan pembaruan",
+ "Migration tests are skipped - \"update.skip-migration-test\" is activated in config.php" : "Percobaan migrasi dilompati - \"update.skip-migration-test\" diaktikan di config.php",
"Turned on maintenance mode" : "Hidupkan mode perawatan",
"Turned off maintenance mode" : "Matikan mode perawatan",
"Maintenance mode is kept active" : "Mode Pemeliharaan masih aktif",
@@ -12,6 +13,8 @@ OC.L10N.register(
"Updated \"%s\" to %s" : "Terbaru \"%s\" sampai %s",
"Repair warning: " : "Peringatan perbaikan:",
"Repair error: " : "Kesalahan perbaikan:",
+ "Set log level to debug - current level: \"%s\"" : "Atur level log untuk debug - level saat ini: \"%s\"",
+ "Reset log level to \"%s\"" : "Atur ulang level log menjadi \"%s\"",
"Following incompatible apps have been disabled: %s" : "Aplikasi tidak kompatibel berikut telah dinonaktifkan: %s",
"Following apps have been disabled: %s" : "Aplikasi berikut telah dinonaktifkan: %s",
"Already up to date" : "Sudah yang terbaru",
@@ -107,6 +110,7 @@ OC.L10N.register(
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom tidak terbaca oleh PHP sangat disarankan untuk alasan keamanan. Informasi lebih lanjut dapat ditemukan di <a href=\"{docLink}\">dokumentasi</a> kami.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Versi PHP Anda ({version}) tidak lagi <a href=\"{phpLink}\">didukung oleh PHP</a>. Kami menyarankan Anda untuk meningkatkan versi PHP Anda agar mendapatkan keuntungan pembaruan kinerja dan keamanan yang disediakan oleh PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Konfigurasi header reverse proxy tidak benar atau Anda mengakses ownCloud dari proxy yang tidak terpercaya. Jika Anda tidak mengakses ownCloud dari proxy yang terpercaya, ini merupakan masalah keamanan dan memungkinkan peretas dapat memalsukan alamat IP mereka yang terlihat pada ownCloud. Informasi lebih lanjut dapat ditemukan pada <a href=\"{docLink}\">dokumentasi</a> kami.",
+ "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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached diatur sebagai cache terdistribusi, namun modul PHP \"memcache\" yang dipasang salah. \\OC\\Memcache\\Memcached hanya mendukung \"memcached\" bukan \"memcache\". Lihat <a href=\"{wikiLink}\">wiki memcached tentang kedua modul</a>.",
"Error occurred while checking server setup" : "Kesalahan tidak terduga saat memeriksa setelan server",
"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." : "Header HTTP \"{header}\" tidak dikonfigurasi sama dengan \"{expected}\". Hal ini berpotensi pada resiko keamanan dan privasi. Kami sarankan untuk menyesuaikan pengaturan ini.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "HTTP header \"Strict-Transport-Security\" tidak diatur kurang dari \"{seconds}\" detik. Untuk peningkatan keamanan, kami menyarankan untuk mengaktifkan HSTS seperti yang dijelaskan di <a href=\"{docUrl}\">tips keamanan</a>.",
@@ -183,6 +187,8 @@ OC.L10N.register(
"New Password" : "Sandi Baru",
"Reset password" : "Setel ulang sandi",
"Searching other places" : "Mencari tempat lainnya",
+ "No search results in other folders" : "Tidak ada hasil penelusuran didalam folder yang lain",
+ "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} hasil pencarian di folder lain"],
"Personal" : "Pribadi",
"Users" : "Pengguna",
"Apps" : "Aplikasi",
diff --git a/core/l10n/id.json b/core/l10n/id.json
index f99a6568c01..1c71260efec 100644
--- a/core/l10n/id.json
+++ b/core/l10n/id.json
@@ -1,6 +1,7 @@
{ "translations": {
"Couldn't send mail to following users: %s " : "Tidak dapat mengirim Email ke pengguna berikut: %s",
"Preparing update" : "Mempersiapkan pembaruan",
+ "Migration tests are skipped - \"update.skip-migration-test\" is activated in config.php" : "Percobaan migrasi dilompati - \"update.skip-migration-test\" diaktikan di config.php",
"Turned on maintenance mode" : "Hidupkan mode perawatan",
"Turned off maintenance mode" : "Matikan mode perawatan",
"Maintenance mode is kept active" : "Mode Pemeliharaan masih aktif",
@@ -10,6 +11,8 @@
"Updated \"%s\" to %s" : "Terbaru \"%s\" sampai %s",
"Repair warning: " : "Peringatan perbaikan:",
"Repair error: " : "Kesalahan perbaikan:",
+ "Set log level to debug - current level: \"%s\"" : "Atur level log untuk debug - level saat ini: \"%s\"",
+ "Reset log level to \"%s\"" : "Atur ulang level log menjadi \"%s\"",
"Following incompatible apps have been disabled: %s" : "Aplikasi tidak kompatibel berikut telah dinonaktifkan: %s",
"Following apps have been disabled: %s" : "Aplikasi berikut telah dinonaktifkan: %s",
"Already up to date" : "Sudah yang terbaru",
@@ -105,6 +108,7 @@
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom tidak terbaca oleh PHP sangat disarankan untuk alasan keamanan. Informasi lebih lanjut dapat ditemukan di <a href=\"{docLink}\">dokumentasi</a> kami.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Versi PHP Anda ({version}) tidak lagi <a href=\"{phpLink}\">didukung oleh PHP</a>. Kami menyarankan Anda untuk meningkatkan versi PHP Anda agar mendapatkan keuntungan pembaruan kinerja dan keamanan yang disediakan oleh PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Konfigurasi header reverse proxy tidak benar atau Anda mengakses ownCloud dari proxy yang tidak terpercaya. Jika Anda tidak mengakses ownCloud dari proxy yang terpercaya, ini merupakan masalah keamanan dan memungkinkan peretas dapat memalsukan alamat IP mereka yang terlihat pada ownCloud. Informasi lebih lanjut dapat ditemukan pada <a href=\"{docLink}\">dokumentasi</a> kami.",
+ "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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached diatur sebagai cache terdistribusi, namun modul PHP \"memcache\" yang dipasang salah. \\OC\\Memcache\\Memcached hanya mendukung \"memcached\" bukan \"memcache\". Lihat <a href=\"{wikiLink}\">wiki memcached tentang kedua modul</a>.",
"Error occurred while checking server setup" : "Kesalahan tidak terduga saat memeriksa setelan server",
"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." : "Header HTTP \"{header}\" tidak dikonfigurasi sama dengan \"{expected}\". Hal ini berpotensi pada resiko keamanan dan privasi. Kami sarankan untuk menyesuaikan pengaturan ini.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "HTTP header \"Strict-Transport-Security\" tidak diatur kurang dari \"{seconds}\" detik. Untuk peningkatan keamanan, kami menyarankan untuk mengaktifkan HSTS seperti yang dijelaskan di <a href=\"{docUrl}\">tips keamanan</a>.",
@@ -181,6 +185,8 @@
"New Password" : "Sandi Baru",
"Reset password" : "Setel ulang sandi",
"Searching other places" : "Mencari tempat lainnya",
+ "No search results in other folders" : "Tidak ada hasil penelusuran didalam folder yang lain",
+ "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} hasil pencarian di folder lain"],
"Personal" : "Pribadi",
"Users" : "Pengguna",
"Apps" : "Aplikasi",
diff --git a/core/l10n/it.js b/core/l10n/it.js
index 1409fe93c8c..af406d665e2 100644
--- a/core/l10n/it.js
+++ b/core/l10n/it.js
@@ -77,7 +77,7 @@ OC.L10N.register(
"seconds ago" : "secondi fa",
"Couldn't send reset email. Please contact your administrator." : "Impossibile inviare l'email di reimpostazione. Contatta il tuo amministratore.",
"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." : "Il collegamento per reimpostare la password è stato inviato al tuo indirizzo di posta. Se non lo ricevi in tempi ragionevoli, controlla le cartelle della posta indesiderata.<br>Se non dovesse essere nemmeno lì, contatta il tuo amministratore locale.",
- "Your files are encrypted. If you haven't enabled the recovery key, 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?" : "I tuoi file sono cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà reimpostata.<br />Se non sei sicuro, per favore contatta l'amministratore prima di proseguire.<br />Vuoi davvero continuare?",
+ "Your files are encrypted. If you haven't enabled the recovery key, 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?" : "I tuoi file sono cifrati. Se non hai precedentemente abilitato la chiave di ripristino, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà reimpostata.<br />Se non sei sicuro, contatta l'amministratore prima di proseguire.<br />Vuoi davvero continuare?",
"I know what I'm doing" : "So cosa sto facendo",
"Password can not be changed. Please contact your administrator." : "La password non può essere cambiata. Contatta il tuo amministratore.",
"No" : "No",
@@ -110,6 +110,7 @@ OC.L10N.register(
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom non è leggibile da PHP e ciò è vivamente sconsigliato per motivi di sicurezza. Ulteriori informazioni sono disponibili nella nostra <a href=\"{docLink}\">documentazione</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "La tua versione ({version}) di PHP non è più <a href=\"{phpLink}\">supportata da PHP</a>. Ti esortiamo ad aggiornare la versione di PHP per trarre vantaggio dagli aggiornamenti in termini di prestazioni e sicurezza forniti da PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "La configurazione delle intestazioni del proxy inverso non è corretta, o stai effettuando l'accesso a ownCloud 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, rendendo visibile a ownCloud. Ulteriori informazioni sono disponibili nella nostra <a 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 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 href=\"{wikiLink}\">wiki di memcached per informazioni su entrambi i moduli</a>.",
"Error occurred while checking server setup" : "Si è verificato un errore durante il controllo della configurazione del server",
"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.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "L'intestazione HTTP \"Strict-Transport-Security\" non è configurata con un valore almeno di \"{seconds}\" secondi. Per migliorare la sicurezza, consigliamo di abilitare HSTS come descritto nei nostri <a href=\"{docUrl}\">consigli sulla sicurezza</a>.",
diff --git a/core/l10n/it.json b/core/l10n/it.json
index 94d434cffd3..ef768b358a4 100644
--- a/core/l10n/it.json
+++ b/core/l10n/it.json
@@ -75,7 +75,7 @@
"seconds ago" : "secondi fa",
"Couldn't send reset email. Please contact your administrator." : "Impossibile inviare l'email di reimpostazione. Contatta il tuo amministratore.",
"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." : "Il collegamento per reimpostare la password è stato inviato al tuo indirizzo di posta. Se non lo ricevi in tempi ragionevoli, controlla le cartelle della posta indesiderata.<br>Se non dovesse essere nemmeno lì, contatta il tuo amministratore locale.",
- "Your files are encrypted. If you haven't enabled the recovery key, 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?" : "I tuoi file sono cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà reimpostata.<br />Se non sei sicuro, per favore contatta l'amministratore prima di proseguire.<br />Vuoi davvero continuare?",
+ "Your files are encrypted. If you haven't enabled the recovery key, 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?" : "I tuoi file sono cifrati. Se non hai precedentemente abilitato la chiave di ripristino, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà reimpostata.<br />Se non sei sicuro, contatta l'amministratore prima di proseguire.<br />Vuoi davvero continuare?",
"I know what I'm doing" : "So cosa sto facendo",
"Password can not be changed. Please contact your administrator." : "La password non può essere cambiata. Contatta il tuo amministratore.",
"No" : "No",
@@ -108,6 +108,7 @@
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom non è leggibile da PHP e ciò è vivamente sconsigliato per motivi di sicurezza. Ulteriori informazioni sono disponibili nella nostra <a href=\"{docLink}\">documentazione</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "La tua versione ({version}) di PHP non è più <a href=\"{phpLink}\">supportata da PHP</a>. Ti esortiamo ad aggiornare la versione di PHP per trarre vantaggio dagli aggiornamenti in termini di prestazioni e sicurezza forniti da PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "La configurazione delle intestazioni del proxy inverso non è corretta, o stai effettuando l'accesso a ownCloud 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, rendendo visibile a ownCloud. Ulteriori informazioni sono disponibili nella nostra <a 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 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 href=\"{wikiLink}\">wiki di memcached per informazioni su entrambi i moduli</a>.",
"Error occurred while checking server setup" : "Si è verificato un errore durante il controllo della configurazione del server",
"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.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "L'intestazione HTTP \"Strict-Transport-Security\" non è configurata con un valore almeno di \"{seconds}\" secondi. Per migliorare la sicurezza, consigliamo di abilitare HSTS come descritto nei nostri <a href=\"{docUrl}\">consigli sulla sicurezza</a>.",
diff --git a/core/l10n/lt_LT.js b/core/l10n/lt_LT.js
index a5f9d19ac1e..622dbb5ab3d 100644
--- a/core/l10n/lt_LT.js
+++ b/core/l10n/lt_LT.js
@@ -104,6 +104,7 @@ OC.L10N.register(
"Error while unsharing" : "Klaida, kai atšaukiamas dalijimasis",
"Error while changing permissions" : "Klaida, keičiant privilegijas",
"Error setting expiration date" : "Klaida nustatant galiojimo laiką",
+ "The public link will expire no later than {days} days after it is created" : "Vieša nuoroda galios ne mažiau kaip {days} dienas nuo sukūrimo",
"Set expiration date" : "Nustatykite galiojimo laiką",
"Expiration" : "Galiojimo laikas",
"Expiration date" : "Galiojimo laikas",
@@ -114,6 +115,8 @@ OC.L10N.register(
"Link" : "Nuoroda",
"Password protect" : "Apsaugotas slaptažodžiu",
"Password" : "Slaptažodis",
+ "Choose a password for the public link" : "Viešos nuorodos slaptažodis",
+ "Allow editing" : "Leisti redaguoti",
"Email link to person" : "Nusiųsti nuorodą paštu",
"Send" : "Siųsti",
"Shared with you and the group {group} by {owner}" : "Pasidalino su Jumis ir {group} grupe {owner}",
@@ -129,7 +132,11 @@ OC.L10N.register(
"change" : "keisti",
"delete" : "ištrinti",
"access control" : "priėjimo kontrolė",
+ "An error occured. Please try again" : "Klaida, prašau bandyti dar kartą.",
"Share" : "Dalintis",
+ "Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Dalintis su vartotoju kitame ownCloud debesyje, sintaksė vartotojas@example.com/owncloud",
+ "Share with users or groups …" : "Dalintis su vartotoju ar grupe",
+ "Share with users, groups or remote users …" : "Dalintis su vartotoju, grupe, ar nutolusiu vartotoju...",
"Warning" : "Įspėjimas",
"The object type is not specified." : "Objekto tipas nenurodytas.",
"Enter new" : "Įveskite naują",
diff --git a/core/l10n/lt_LT.json b/core/l10n/lt_LT.json
index defe7eece9b..998cd62a5b2 100644
--- a/core/l10n/lt_LT.json
+++ b/core/l10n/lt_LT.json
@@ -102,6 +102,7 @@
"Error while unsharing" : "Klaida, kai atšaukiamas dalijimasis",
"Error while changing permissions" : "Klaida, keičiant privilegijas",
"Error setting expiration date" : "Klaida nustatant galiojimo laiką",
+ "The public link will expire no later than {days} days after it is created" : "Vieša nuoroda galios ne mažiau kaip {days} dienas nuo sukūrimo",
"Set expiration date" : "Nustatykite galiojimo laiką",
"Expiration" : "Galiojimo laikas",
"Expiration date" : "Galiojimo laikas",
@@ -112,6 +113,8 @@
"Link" : "Nuoroda",
"Password protect" : "Apsaugotas slaptažodžiu",
"Password" : "Slaptažodis",
+ "Choose a password for the public link" : "Viešos nuorodos slaptažodis",
+ "Allow editing" : "Leisti redaguoti",
"Email link to person" : "Nusiųsti nuorodą paštu",
"Send" : "Siųsti",
"Shared with you and the group {group} by {owner}" : "Pasidalino su Jumis ir {group} grupe {owner}",
@@ -127,7 +130,11 @@
"change" : "keisti",
"delete" : "ištrinti",
"access control" : "priėjimo kontrolė",
+ "An error occured. Please try again" : "Klaida, prašau bandyti dar kartą.",
"Share" : "Dalintis",
+ "Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Dalintis su vartotoju kitame ownCloud debesyje, sintaksė vartotojas@example.com/owncloud",
+ "Share with users or groups …" : "Dalintis su vartotoju ar grupe",
+ "Share with users, groups or remote users …" : "Dalintis su vartotoju, grupe, ar nutolusiu vartotoju...",
"Warning" : "Įspėjimas",
"The object type is not specified." : "Objekto tipas nenurodytas.",
"Enter new" : "Įveskite naują",
diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js
index 895fab159f3..fc5b0c053dd 100644
--- a/core/l10n/pt_BR.js
+++ b/core/l10n/pt_BR.js
@@ -110,6 +110,7 @@ OC.L10N.register(
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom não pode ser lido por PHP o que é altamente desencorajado por razões de segurança. Mais informações podem ser encontradas em nossa <a href=\"{docLink}\">documentation</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "A sua versão do PHP ({version}) não é <a href=\"{phpLink}\">suportada pela PHP</a>. Nós o incentivamos a atualizar sua versão do PHP para tirar proveito de atualizações de desempenho e de segurança fornecidos pela PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "A configuração de cabeçalhos do proxy reverso está incorreta, ou você está acessando ownCloud de um proxy confiável. Se você não está acessando ownCloud de um proxy confiável, esta é uma questão de segurança e pode permitir a um invasor falsificar seu endereço IP como visível para ownCloud. Mais informações podem ser encontradas em nossa <a href=\"{docLink}\">documentação</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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached está configurado como cache distribuído, mas o módulo PHP errado \"memcache\" está instalado. \\OC\\Memcache\\Memcached somente suporta \"memcached\" e não \"memcache\". Veja o <a href=\"{wikiLink}\">memcached wiki sobre esse módulo</a>.",
"Error occurred while checking server setup" : "Erro ao verificar a configuração do servidor",
"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.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "O cabeçalho \"Transporte-de-Segurança-Restrita\"HTTP não está configurada para menos de \"{seconds}\" segundos. Para uma maior segurança recomendamos a ativação HSTS conforme descrito em nossas <a href=\"{docUrl}\">dicas de segurança</a>.",
diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json
index 817c9e1fa98..90d361b57f6 100644
--- a/core/l10n/pt_BR.json
+++ b/core/l10n/pt_BR.json
@@ -108,6 +108,7 @@
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "/dev/urandom não pode ser lido por PHP o que é altamente desencorajado por razões de segurança. Mais informações podem ser encontradas em nossa <a href=\"{docLink}\">documentation</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "A sua versão do PHP ({version}) não é <a href=\"{phpLink}\">suportada pela PHP</a>. Nós o incentivamos a atualizar sua versão do PHP para tirar proveito de atualizações de desempenho e de segurança fornecidos pela PHP.",
"The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "A configuração de cabeçalhos do proxy reverso está incorreta, ou você está acessando ownCloud de um proxy confiável. Se você não está acessando ownCloud de um proxy confiável, esta é uma questão de segurança e pode permitir a um invasor falsificar seu endereço IP como visível para ownCloud. Mais informações podem ser encontradas em nossa <a href=\"{docLink}\">documentação</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 href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached está configurado como cache distribuído, mas o módulo PHP errado \"memcache\" está instalado. \\OC\\Memcache\\Memcached somente suporta \"memcached\" e não \"memcache\". Veja o <a href=\"{wikiLink}\">memcached wiki sobre esse módulo</a>.",
"Error occurred while checking server setup" : "Erro ao verificar a configuração do servidor",
"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.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "O cabeçalho \"Transporte-de-Segurança-Restrita\"HTTP não está configurada para menos de \"{seconds}\" segundos. Para uma maior segurança recomendamos a ativação HSTS conforme descrito em nossas <a href=\"{docUrl}\">dicas de segurança</a>.",
diff --git a/core/l10n/sq.js b/core/l10n/sq.js
index 794b9bc553d..aa91e052861 100644
--- a/core/l10n/sq.js
+++ b/core/l10n/sq.js
@@ -97,23 +97,31 @@ OC.L10N.register(
"Email sent" : "Email-i u dërgua",
"Resharing is not allowed" : "Rindarja nuk lejohet",
"Share link" : "Ndaje lidhjen",
+ "Link" : "Lidhje",
"Password protect" : "Mbro me kod",
"Password" : "Kodi",
"Choose a password for the public link" : "Zgjidhni një fjalëkalim për lidhjen publike",
+ "Allow editing" : "Lejo përpunim",
"Email link to person" : "Dërgo email me lidhjen",
"Send" : "Dërgo",
"Shared with you and the group {group} by {owner}" : "Ndarë me ju dhe me grupin {group} nga {owner}",
"Shared with you by {owner}" : "Ndarë me ju nga {owner}",
"Shared in {item} with {user}" : "Ndarë në {item} me {user}",
"group" : "grupi",
+ "remote" : "e largët",
"notify by email" : "njofto me email",
"Unshare" : "Hiq ndarjen",
"can share" : "mund të ndajnë",
"can edit" : "mund të ndryshosh",
"create" : "krijo",
+ "change" : "ndërroje",
"delete" : "elimino",
"access control" : "kontrollimi i hyrjeve",
+ "An error occured. Please try again" : "Ndodhi një gabim. Ju lutemi, riprovoni",
"Share" : "Nda",
+ "Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Ndani me persona në ownCloud-e të tjera duke përdorur sintaksën username@example.com/owncloud",
+ "Share with users or groups …" : "Ndajeni me përdorues ose grupe …",
+ "Share with users, groups or remote users …" : "Ndajeni me përdorues, grupe ose përdorues të largët …",
"Warning" : "Kujdes",
"The object type is not specified." : "Nuk është specifikuar tipi i objektit.",
"Enter new" : "Jep të re",
@@ -182,6 +190,7 @@ OC.L10N.register(
"Database name" : "Emri i database-it",
"Database tablespace" : "Tablespace-i i database-it",
"Database host" : "Pozicioni (host) i database-it",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Përdorimi i SQLite-it nuk këshillohet veçanërisht kur përdoret klienti desktop për njëkohësim kartelash.",
"Finish setup" : "Mbaro setup-in",
"Finishing …" : "Duke përfunduar ...",
"Log out" : "Dalje",
diff --git a/core/l10n/sq.json b/core/l10n/sq.json
index 09461855de2..a14de6a9d07 100644
--- a/core/l10n/sq.json
+++ b/core/l10n/sq.json
@@ -95,23 +95,31 @@
"Email sent" : "Email-i u dërgua",
"Resharing is not allowed" : "Rindarja nuk lejohet",
"Share link" : "Ndaje lidhjen",
+ "Link" : "Lidhje",
"Password protect" : "Mbro me kod",
"Password" : "Kodi",
"Choose a password for the public link" : "Zgjidhni një fjalëkalim për lidhjen publike",
+ "Allow editing" : "Lejo përpunim",
"Email link to person" : "Dërgo email me lidhjen",
"Send" : "Dërgo",
"Shared with you and the group {group} by {owner}" : "Ndarë me ju dhe me grupin {group} nga {owner}",
"Shared with you by {owner}" : "Ndarë me ju nga {owner}",
"Shared in {item} with {user}" : "Ndarë në {item} me {user}",
"group" : "grupi",
+ "remote" : "e largët",
"notify by email" : "njofto me email",
"Unshare" : "Hiq ndarjen",
"can share" : "mund të ndajnë",
"can edit" : "mund të ndryshosh",
"create" : "krijo",
+ "change" : "ndërroje",
"delete" : "elimino",
"access control" : "kontrollimi i hyrjeve",
+ "An error occured. Please try again" : "Ndodhi një gabim. Ju lutemi, riprovoni",
"Share" : "Nda",
+ "Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Ndani me persona në ownCloud-e të tjera duke përdorur sintaksën username@example.com/owncloud",
+ "Share with users or groups …" : "Ndajeni me përdorues ose grupe …",
+ "Share with users, groups or remote users …" : "Ndajeni me përdorues, grupe ose përdorues të largët …",
"Warning" : "Kujdes",
"The object type is not specified." : "Nuk është specifikuar tipi i objektit.",
"Enter new" : "Jep të re",
@@ -180,6 +188,7 @@
"Database name" : "Emri i database-it",
"Database tablespace" : "Tablespace-i i database-it",
"Database host" : "Pozicioni (host) i database-it",
+ "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Përdorimi i SQLite-it nuk këshillohet veçanërisht kur përdoret klienti desktop për njëkohësim kartelash.",
"Finish setup" : "Mbaro setup-in",
"Finishing …" : "Duke përfunduar ...",
"Log out" : "Dalje",
diff --git a/core/l10n/sr.js b/core/l10n/sr.js
index 17b0f7aa0c0..f34b4213f0f 100644
--- a/core/l10n/sr.js
+++ b/core/l10n/sr.js
@@ -2,6 +2,7 @@ OC.L10N.register(
"core",
{
"Couldn't send mail to following users: %s " : "Не могу да пошаљем е-пошту следећим корисницима: %s ",
+ "Preparing update" : "Припремам надоградњу",
"Turned on maintenance mode" : "Режим одржавања укључен",
"Turned off maintenance mode" : "Режим одржавања искључен",
"Maintenance mode is kept active" : "Режим одржавања се држи активним",
@@ -13,6 +14,7 @@ OC.L10N.register(
"Repair error: " : "Грешка поправке:",
"Following incompatible apps have been disabled: %s" : "Следеће неусаглашене апликације су искључене: %s",
"Following apps have been disabled: %s" : "Следеће апликације су искључене: %s",
+ "File is too big" : "Фајл је превелик",
"Invalid file provided" : "Понуђени фајл је неисправан",
"No image or file provided" : "Није дата ни слика ни фајл",
"Unknown filetype" : "Непознат тип фајла",
@@ -35,6 +37,13 @@ OC.L10N.register(
"Thu." : "чет",
"Fri." : "пет",
"Sat." : "суб",
+ "Su" : "Не",
+ "Mo" : "По",
+ "Tu" : "Ут",
+ "We" : "Ср",
+ "Th" : "Че",
+ "Fr" : "Пе",
+ "Sa" : "Су",
"January" : "јануар",
"February" : "фебруар",
"March" : "март",
diff --git a/core/l10n/sr.json b/core/l10n/sr.json
index e9436162144..3825ab821cb 100644
--- a/core/l10n/sr.json
+++ b/core/l10n/sr.json
@@ -1,5 +1,6 @@
{ "translations": {
"Couldn't send mail to following users: %s " : "Не могу да пошаљем е-пошту следећим корисницима: %s ",
+ "Preparing update" : "Припремам надоградњу",
"Turned on maintenance mode" : "Режим одржавања укључен",
"Turned off maintenance mode" : "Режим одржавања искључен",
"Maintenance mode is kept active" : "Режим одржавања се држи активним",
@@ -11,6 +12,7 @@
"Repair error: " : "Грешка поправке:",
"Following incompatible apps have been disabled: %s" : "Следеће неусаглашене апликације су искључене: %s",
"Following apps have been disabled: %s" : "Следеће апликације су искључене: %s",
+ "File is too big" : "Фајл је превелик",
"Invalid file provided" : "Понуђени фајл је неисправан",
"No image or file provided" : "Није дата ни слика ни фајл",
"Unknown filetype" : "Непознат тип фајла",
@@ -33,6 +35,13 @@
"Thu." : "чет",
"Fri." : "пет",
"Sat." : "суб",
+ "Su" : "Не",
+ "Mo" : "По",
+ "Tu" : "Ут",
+ "We" : "Ср",
+ "Th" : "Че",
+ "Fr" : "Пе",
+ "Sa" : "Су",
"January" : "јануар",
"February" : "фебруар",
"March" : "март",
diff --git a/core/l10n/th_TH.js b/core/l10n/th_TH.js
index 1ceb8e7d2dd..07324c614a8 100644
--- a/core/l10n/th_TH.js
+++ b/core/l10n/th_TH.js
@@ -3,6 +3,7 @@ OC.L10N.register(
{
"Couldn't send mail to following users: %s " : "ไม่สามารถส่งอีเมลไปยังผู้ใช้: %s",
"Preparing update" : "เตรียมอัพเดท",
+ "Migration tests are skipped - \"update.skip-migration-test\" is activated in config.php" : "ทดสอบการย้ายจะถูกข้าม \"update.skip-migration-test\" สามารถเปิดใช้งานได้ใน config.php",
"Turned on maintenance mode" : "เปิดโหมดการบำรุงรักษา",
"Turned off maintenance mode" : "ปิดโหมดการบำรุงรักษา",
"Maintenance mode is kept active" : "โหมดการบำรุงรักษาจะถูกเก็บไว้ใช้งาน",
diff --git a/core/l10n/th_TH.json b/core/l10n/th_TH.json
index 53954b3110b..7d700b9adf6 100644
--- a/core/l10n/th_TH.json
+++ b/core/l10n/th_TH.json
@@ -1,6 +1,7 @@
{ "translations": {
"Couldn't send mail to following users: %s " : "ไม่สามารถส่งอีเมลไปยังผู้ใช้: %s",
"Preparing update" : "เตรียมอัพเดท",
+ "Migration tests are skipped - \"update.skip-migration-test\" is activated in config.php" : "ทดสอบการย้ายจะถูกข้าม \"update.skip-migration-test\" สามารถเปิดใช้งานได้ใน config.php",
"Turned on maintenance mode" : "เปิดโหมดการบำรุงรักษา",
"Turned off maintenance mode" : "ปิดโหมดการบำรุงรักษา",
"Maintenance mode is kept active" : "โหมดการบำรุงรักษาจะถูกเก็บไว้ใช้งาน",
diff --git a/core/l10n/zh_CN.js b/core/l10n/zh_CN.js
index 7af3d403f5d..305caeb0b80 100644
--- a/core/l10n/zh_CN.js
+++ b/core/l10n/zh_CN.js
@@ -12,6 +12,8 @@ OC.L10N.register(
"Updated \"%s\" to %s" : "更新 \"%s\" 为 %s",
"Repair warning: " : "修复警告:",
"Repair error: " : "修复错误:",
+ "Set log level to debug - current level: \"%s\"" : "设置日志级别为 调试 - 目前级别:%s",
+ "Reset log level to \"%s\"" : "重设日志级别为 \"%s\"",
"Following incompatible apps have been disabled: %s" : "下列不兼容应用已经被禁用:%s",
"Following apps have been disabled: %s" : "下列应用已经被禁用:%s",
"Already up to date" : "已经是最新",
@@ -146,12 +148,14 @@ OC.L10N.register(
"change" : "更改",
"delete" : "删除",
"access control" : "访问控制",
+ "Share details could not be loaded for this item." : "无法加载这个项目的分享详情",
"An error occured. Please try again" : "发生了一个错误请重新尝试",
"Share" : "分享",
"Share with people on other ownClouds using the syntax username@example.com/owncloud" : "使用语法 username@example.com/owncloud 分享给其他 ownCloud 上的用户",
"Share with users or groups …" : "分享给其他用户或组 ...",
"Share with users, groups or remote users …" : "分享给其他用户、组或远程用户 ...",
"Warning" : "警告",
+ "Error while sending notification" : "发送通知时出现错误",
"The object type is not specified." : "未指定对象类型。",
"Enter new" : "输入新...",
"Delete" : "删除",
@@ -181,6 +185,8 @@ OC.L10N.register(
"New Password" : "新密码",
"Reset password" : "重置密码",
"Searching other places" : "搜索其他地方",
+ "No search results in other folders" : "在其他文件夹中没有得到任何搜索结果",
+ "_{count} search result in another folder_::_{count} search results in other folders_" : ["在其他文件夹中找到 {count} 条搜索结果"],
"Personal" : "个人",
"Users" : "用户",
"Apps" : "应用",
diff --git a/core/l10n/zh_CN.json b/core/l10n/zh_CN.json
index 4eff4881d64..001338a4383 100644
--- a/core/l10n/zh_CN.json
+++ b/core/l10n/zh_CN.json
@@ -10,6 +10,8 @@
"Updated \"%s\" to %s" : "更新 \"%s\" 为 %s",
"Repair warning: " : "修复警告:",
"Repair error: " : "修复错误:",
+ "Set log level to debug - current level: \"%s\"" : "设置日志级别为 调试 - 目前级别:%s",
+ "Reset log level to \"%s\"" : "重设日志级别为 \"%s\"",
"Following incompatible apps have been disabled: %s" : "下列不兼容应用已经被禁用:%s",
"Following apps have been disabled: %s" : "下列应用已经被禁用:%s",
"Already up to date" : "已经是最新",
@@ -144,12 +146,14 @@
"change" : "更改",
"delete" : "删除",
"access control" : "访问控制",
+ "Share details could not be loaded for this item." : "无法加载这个项目的分享详情",
"An error occured. Please try again" : "发生了一个错误请重新尝试",
"Share" : "分享",
"Share with people on other ownClouds using the syntax username@example.com/owncloud" : "使用语法 username@example.com/owncloud 分享给其他 ownCloud 上的用户",
"Share with users or groups …" : "分享给其他用户或组 ...",
"Share with users, groups or remote users …" : "分享给其他用户、组或远程用户 ...",
"Warning" : "警告",
+ "Error while sending notification" : "发送通知时出现错误",
"The object type is not specified." : "未指定对象类型。",
"Enter new" : "输入新...",
"Delete" : "删除",
@@ -179,6 +183,8 @@
"New Password" : "新密码",
"Reset password" : "重置密码",
"Searching other places" : "搜索其他地方",
+ "No search results in other folders" : "在其他文件夹中没有得到任何搜索结果",
+ "_{count} search result in another folder_::_{count} search results in other folders_" : ["在其他文件夹中找到 {count} 条搜索结果"],
"Personal" : "个人",
"Users" : "用户",
"Apps" : "应用",
diff --git a/core/register_command.php b/core/register_command.php
index 460e8626e5e..4044d2d200c 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -94,7 +94,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
$application->add(new OC\Core\Command\Maintenance\Repair(new \OC\Repair(\OC\Repair::getRepairSteps()), \OC::$server->getConfig()));
$application->add(new OC\Core\Command\Maintenance\SingleUser(\OC::$server->getConfig()));
- $application->add(new OC\Core\Command\Upgrade(\OC::$server->getConfig()));
+ $application->add(new OC\Core\Command\Upgrade(\OC::$server->getConfig(), \OC::$server->getLogger()));
$application->add(new OC\Core\Command\User\Add(\OC::$server->getUserManager(), \OC::$server->getGroupManager()));
$application->add(new OC\Core\Command\User\Delete(\OC::$server->getUserManager()));