summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/Command/Upgrade.php8
-rw-r--r--core/Controller/LoginController.php2
-rw-r--r--core/Controller/LostController.php16
-rw-r--r--core/ajax/update.php9
-rw-r--r--core/css/guest.css4
-rw-r--r--core/js/lostpassword.js4
-rw-r--r--core/l10n/bg.js4
-rw-r--r--core/l10n/bg.json4
-rw-r--r--core/l10n/cs.js4
-rw-r--r--core/l10n/cs.json4
-rw-r--r--core/l10n/de.js9
-rw-r--r--core/l10n/de.json9
-rw-r--r--core/l10n/de_DE.js9
-rw-r--r--core/l10n/de_DE.json9
-rw-r--r--core/l10n/el.js8
-rw-r--r--core/l10n/el.json8
-rw-r--r--core/l10n/en_GB.js256
-rw-r--r--core/l10n/en_GB.json254
-rw-r--r--core/l10n/es.js4
-rw-r--r--core/l10n/es.json4
-rw-r--r--core/l10n/es_MX.js8
-rw-r--r--core/l10n/es_MX.json8
-rw-r--r--core/l10n/eu.js4
-rw-r--r--core/l10n/eu.json4
-rw-r--r--core/l10n/fi.js4
-rw-r--r--core/l10n/fi.json4
-rw-r--r--core/l10n/fr.js9
-rw-r--r--core/l10n/fr.json9
-rw-r--r--core/l10n/hu.js4
-rw-r--r--core/l10n/hu.json4
-rw-r--r--core/l10n/id.js4
-rw-r--r--core/l10n/id.json4
-rw-r--r--core/l10n/is.js16
-rw-r--r--core/l10n/is.json16
-rw-r--r--core/l10n/it.js4
-rw-r--r--core/l10n/it.json4
-rw-r--r--core/l10n/ja.js4
-rw-r--r--core/l10n/ja.json4
-rw-r--r--core/l10n/ko.js4
-rw-r--r--core/l10n/ko.json4
-rw-r--r--core/l10n/nb.js4
-rw-r--r--core/l10n/nb.json4
-rw-r--r--core/l10n/nl.js8
-rw-r--r--core/l10n/nl.json8
-rw-r--r--core/l10n/pl.js9
-rw-r--r--core/l10n/pl.json9
-rw-r--r--core/l10n/pt_BR.js9
-rw-r--r--core/l10n/pt_BR.json9
-rw-r--r--core/l10n/pt_PT.js4
-rw-r--r--core/l10n/pt_PT.json4
-rw-r--r--core/l10n/ro.js4
-rw-r--r--core/l10n/ro.json4
-rw-r--r--core/l10n/ru.js9
-rw-r--r--core/l10n/ru.json9
-rw-r--r--core/l10n/sk.js4
-rw-r--r--core/l10n/sk.json4
-rw-r--r--core/l10n/sl.js256
-rw-r--r--core/l10n/sl.json254
-rw-r--r--core/l10n/sq.js12
-rw-r--r--core/l10n/sq.json12
-rw-r--r--core/l10n/sv.js4
-rw-r--r--core/l10n/sv.json4
-rw-r--r--core/l10n/tr.js9
-rw-r--r--core/l10n/tr.json9
-rw-r--r--core/l10n/zh_CN.js15
-rw-r--r--core/l10n/zh_CN.json15
-rw-r--r--core/l10n/zh_TW.js257
-rw-r--r--core/l10n/zh_TW.json255
68 files changed, 309 insertions, 1646 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php
index 2e518f52e21..abc37527d2a 100644
--- a/core/Command/Upgrade.php
+++ b/core/Command/Upgrade.php
@@ -220,8 +220,14 @@ class Upgrade extends Command {
$updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use ($output) {
$output->writeln('<comment>Disabled 3rd-party app: ' . $app . '</comment>');
});
+ $updater->listen('\OC\Updater', 'checkAppStoreAppBefore', function ($app) use($output) {
+ $output->writeln('<info>Checking for update of app ' . $app . ' in appstore</info>');
+ });
$updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
- $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
+ $output->writeln('<info>Update app ' . $app . ' from appstore</info>');
+ });
+ $updater->listen('\OC\Updater', 'checkAppStoreApp', function ($app) use($output) {
+ $output->writeln('<info>Checked for update of app "' . $app . '" in appstore </info>');
});
$updater->listen('\OC\Updater', 'appUpgradeCheckBefore', function () use ($output) {
$output->writeln('<info>Checking updates of apps</info>');
diff --git a/core/Controller/LoginController.php b/core/Controller/LoginController.php
index 691d74cdc60..93b695dd999 100644
--- a/core/Controller/LoginController.php
+++ b/core/Controller/LoginController.php
@@ -159,6 +159,8 @@ class LoginController extends Controller {
$parameters['canResetPassword'] = $userObj->canChangePassword();
}
}
+ } elseif ($parameters['resetPasswordLink'] === 'disabled') {
+ $parameters['canResetPassword'] = false;
}
$parameters['alt_login'] = OC_App::getAlternativeLogIns();
diff --git a/core/Controller/LostController.php b/core/Controller/LostController.php
index 3f9ef172365..0d5988a2495 100644
--- a/core/Controller/LostController.php
+++ b/core/Controller/LostController.php
@@ -131,6 +131,14 @@ class LostController extends Controller {
* @return TemplateResponse
*/
public function resetform($token, $userId) {
+ if ($this->config->getSystemValue('lost_password_link', '') !== '') {
+ return new TemplateResponse('core', 'error', [
+ 'errors' => [['error' => $this->l10n->t('Password reset is disabled')]]
+ ],
+ 'guest'
+ );
+ }
+
try {
$this->checkPasswordResetToken($token, $userId);
} catch (\Exception $e) {
@@ -211,6 +219,10 @@ class LostController extends Controller {
* @return JSONResponse
*/
public function email($user){
+ if ($this->config->getSystemValue('lost_password_link', '') !== '') {
+ return new JSONResponse($this->error($this->l10n->t('Password reset is disabled')));
+ }
+
// FIXME: use HTTP error codes
try {
$this->sendEmail($user);
@@ -234,6 +246,10 @@ class LostController extends Controller {
* @return array
*/
public function setPassword($token, $userId, $password, $proceed) {
+ if ($this->config->getSystemValue('lost_password_link', '') !== '') {
+ return $this->error($this->l10n->t('Password reset is disabled'));
+ }
+
if ($this->encryptionManager->isEnabled() && !$proceed) {
return $this->error('', array('encryption' => true));
}
diff --git a/core/ajax/update.php b/core/ajax/update.php
index 37abdc5dc3b..d23e3b0d56d 100644
--- a/core/ajax/update.php
+++ b/core/ajax/update.php
@@ -160,6 +160,15 @@ if (OC::checkUpgrade(false)) {
$updater->listen('\OC\Updater', 'appUpgradeCheckBefore', function () use ($eventSource, $l) {
$eventSource->send('success', (string)$l->t('Checking updates of apps'));
});
+ $updater->listen('\OC\Updater', 'checkAppStoreAppBefore', function ($app) use ($eventSource, $l) {
+ $eventSource->send('success', (string)$l->t('Checking for update of app "%s" in appstore', [$app]));
+ });
+ $updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use ($eventSource, $l) {
+ $eventSource->send('success', (string)$l->t('Update app "%s" from appstore', [$app]));
+ });
+ $updater->listen('\OC\Updater', 'checkAppStoreApp', function ($app) use ($eventSource, $l) {
+ $eventSource->send('success', (string)$l->t('Checked for update of app "%s" in appstore', [$app]));
+ });
$updater->listen('\OC\Updater', 'appSimulateUpdate', function ($app) use ($eventSource, $l) {
$eventSource->send('success', (string)$l->t('Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)', [$app]));
});
diff --git a/core/css/guest.css b/core/css/guest.css
index cf9bec50dc3..657a4adbdef 100644
--- a/core/css/guest.css
+++ b/core/css/guest.css
@@ -646,6 +646,10 @@ footer,
height: 70px;
}
+footer .info a {
+ font-weight: 600;
+}
+
.hidden {
display: none;
}
diff --git a/core/js/lostpassword.js b/core/js/lostpassword.js
index 2f96911f162..1923b73a179 100644
--- a/core/js/lostpassword.js
+++ b/core/js/lostpassword.js
@@ -22,7 +22,9 @@ OC.Lostpassword = {
if (!$('#user').val().length){
$('#submit').trigger('click');
} else {
- if (OC.config.lost_password_link) {
+ if (OC.config.lost_password_link === 'disabled') {
+ return;
+ } else if (OC.config.lost_password_link) {
window.location = OC.config.lost_password_link;
} else {
$.post(
diff --git a/core/l10n/bg.js b/core/l10n/bg.js
index 61a4a3581a8..f67b78a6281 100644
--- a/core/l10n/bg.js
+++ b/core/l10n/bg.js
@@ -249,7 +249,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "За да избегнеш таймаутове при по-големи инсталации, можеш да изпълниш следните команди в инсталанционната директория:",
"Detailed logs" : "Подробни логове",
"Update needed" : "Нужно е обновяване",
- "Please use the command line updater because you have a big instance." : "Моля използвайте съветникът за обновяване в команден ред, защото инстанцията ви е голяма.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "За помощ, вижте <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документацията</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "В момента този %s се обновява, а това може да отнеме време.",
"This page will refresh itself when the %s instance is available again." : "Страницата ще се зареди автоматично, когато %s е отново на линия.",
@@ -285,6 +284,7 @@ OC.L10N.register(
"The share will expire on %s." : "Споделянето ще изтече на %s.",
"Cheers!" : "Поздрави!",
"Use the following link to reset your password: {link}" : "Използвайте следната връзка, за да възстановите паролата си: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Здравейте,<br><br>само ви уведомяваме, че %s сподели <strong>%s</strong> с вас.\n<br><a href=\"%s\">Разгледай го!</a><br><br>."
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Здравейте,<br><br>само ви уведомяваме, че %s сподели <strong>%s</strong> с вас.\n<br><a href=\"%s\">Разгледай го!</a><br><br>.",
+ "Please use the command line updater because you have a big instance." : "Моля използвайте съветникът за обновяване в команден ред, защото инстанцията ви е голяма."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/bg.json b/core/l10n/bg.json
index 4483911793c..3efb3f99f52 100644
--- a/core/l10n/bg.json
+++ b/core/l10n/bg.json
@@ -247,7 +247,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "За да избегнеш таймаутове при по-големи инсталации, можеш да изпълниш следните команди в инсталанционната директория:",
"Detailed logs" : "Подробни логове",
"Update needed" : "Нужно е обновяване",
- "Please use the command line updater because you have a big instance." : "Моля използвайте съветникът за обновяване в команден ред, защото инстанцията ви е голяма.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "За помощ, вижте <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документацията</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "В момента този %s се обновява, а това може да отнеме време.",
"This page will refresh itself when the %s instance is available again." : "Страницата ще се зареди автоматично, когато %s е отново на линия.",
@@ -283,6 +282,7 @@
"The share will expire on %s." : "Споделянето ще изтече на %s.",
"Cheers!" : "Поздрави!",
"Use the following link to reset your password: {link}" : "Използвайте следната връзка, за да възстановите паролата си: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Здравейте,<br><br>само ви уведомяваме, че %s сподели <strong>%s</strong> с вас.\n<br><a href=\"%s\">Разгледай го!</a><br><br>."
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Здравейте,<br><br>само ви уведомяваме, че %s сподели <strong>%s</strong> с вас.\n<br><a href=\"%s\">Разгледай го!</a><br><br>.",
+ "Please use the command line updater because you have a big instance." : "Моля използвайте съветникът за обновяване в команден ред, защото инстанцията ви е голяма."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/cs.js b/core/l10n/cs.js
index b29e1f0dd00..c8347c4d3ab 100644
--- a/core/l10n/cs.js
+++ b/core/l10n/cs.js
@@ -297,7 +297,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Abyste zabránili vypršení časového limitu u větších instalací, můžete namísto toho spustit následující příkaz v hlavním adresáři:",
"Detailed logs" : "Podrobné logy",
"Update needed" : "Potřeba aktualizace",
- "Please use the command line updater because you have a big instance." : "Prosím použijte aktualizační příkazový řádek, protože máte velkou instanci.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Pro pomoc, shlédněte <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentaci</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Tato instalace %s je právě ve stavu údržby a to může chvíli trvat.",
"This page will refresh itself when the %s instance is available again." : "Tato stránka se automaticky načte poté, co bude opět dostupná instance %s.",
@@ -333,6 +332,7 @@ OC.L10N.register(
"The share will expire on %s." : "Sdílení vyprší %s.",
"Cheers!" : "Ať slouží!",
"Use the following link to reset your password: {link}" : "Heslo obnovíte použitím následujícího odkazu: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ahoj,<br><br>jen ti dávám vědět, že s tebou %s sdílí <strong>%s</strong>.<br><a href=\"%s\">Zkontroluj to!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ahoj,<br><br>jen ti dávám vědět, že s tebou %s sdílí <strong>%s</strong>.<br><a href=\"%s\">Zkontroluj to!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Prosím použijte aktualizační příkazový řádek, protože máte velkou instanci."
},
"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;");
diff --git a/core/l10n/cs.json b/core/l10n/cs.json
index a23b093e1a5..890b80d915e 100644
--- a/core/l10n/cs.json
+++ b/core/l10n/cs.json
@@ -295,7 +295,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Abyste zabránili vypršení časového limitu u větších instalací, můžete namísto toho spustit následující příkaz v hlavním adresáři:",
"Detailed logs" : "Podrobné logy",
"Update needed" : "Potřeba aktualizace",
- "Please use the command line updater because you have a big instance." : "Prosím použijte aktualizační příkazový řádek, protože máte velkou instanci.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Pro pomoc, shlédněte <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentaci</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Tato instalace %s je právě ve stavu údržby a to může chvíli trvat.",
"This page will refresh itself when the %s instance is available again." : "Tato stránka se automaticky načte poté, co bude opět dostupná instance %s.",
@@ -331,6 +330,7 @@
"The share will expire on %s." : "Sdílení vyprší %s.",
"Cheers!" : "Ať slouží!",
"Use the following link to reset your password: {link}" : "Heslo obnovíte použitím následujícího odkazu: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ahoj,<br><br>jen ti dávám vědět, že s tebou %s sdílí <strong>%s</strong>.<br><a href=\"%s\">Zkontroluj to!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ahoj,<br><br>jen ti dávám vědět, že s tebou %s sdílí <strong>%s</strong>.<br><a href=\"%s\">Zkontroluj to!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Prosím použijte aktualizační příkazový řádek, protože máte velkou instanci."
},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
} \ No newline at end of file
diff --git a/core/l10n/de.js b/core/l10n/de.js
index 89fae89bb8b..08ea6d1e0eb 100644
--- a/core/l10n/de.js
+++ b/core/l10n/de.js
@@ -16,6 +16,7 @@ OC.L10N.register(
"Crop is not square" : "Zuschnitt ist nicht quadratisch",
"State token does not match" : "Status-Token stimmen nicht überein",
"Auth flow can only be started unauthenticated." : "Der Authentifizierungs-Ablauf kann nur als \"nicht angemeldet\" gestartet werden.",
+ "Password reset is disabled" : "Passwort-Reset ist deaktiviert",
"Couldn't reset password because the token is invalid" : "Das Passwort konnte aufgrund eines ungültigen Tokens nicht zurückgesetzt werden",
"Couldn't reset password because the token is expired" : "Das Passwort konnte nicht zurückgesetzt werden, da der Token abgelaufen ist",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Es konnte keine E-Mail verschickt werden um das Passwort zurückzusetzten, da keine E-Mail im Benutzerkonto hinterlegt ist. Bitte kontaktiere deinen Administrator.",
@@ -40,6 +41,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Prüfen, ob das Datenbankschema aktualisiert werden kann (dies kann je nach Datenbankgröße sehr lange dauern)",
"Checked database schema update" : "Datenbankschema-Aktualisierung überprüft",
"Checking updates of apps" : "Es wird nach Aktualisierungen für die Apps gesucht",
+ "Checking for update of app \"%s\" in appstore" : "Suche nach einer Aktualisierung für die App \"%s\" im App-Store",
+ "Update app \"%s\" from appstore" : "Aktualisiere die App \"%s\" aus dem App-Store",
+ "Checked for update of app \"%s\" in appstore" : "App-Store auf Aktualalisierung für die App \"%s\" geprüft",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Prüfen, ob das Datenbankschema für %s aktualisiert werden kann (dies kann je nach Datenbankgröße sehr lange dauern)",
"Checked database schema update for apps" : "Datenbankschema-Aktualisierung für Apps überprüft",
"Updated \"%s\" to %s" : "„%s“ zu %s aktualisiert",
@@ -298,7 +302,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Zur Vermeidung von Zeitüberschreitungen bei größeren Installationen kannst Du stattdessen den folgenden Befehl in deinem Installationsverzeichnis ausführen:",
"Detailed logs" : "Detaillierte Protokollmeldungen",
"Update needed" : "Update wird benötigt",
- "Please use the command line updater because you have a big instance." : "Da Du eine große Instanz nutzt, verwende bitte das Aktualisierungsprogramm über die Kommandozeile.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Bitte verwende den Komandozeilen-Updater, da Du eine große Installation mit mehr als 50 Nutzern betreibst.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Für weitere Hilfen, schaue bitte in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Diese %s-Instanz befindet sich gerade im Wartungsmodus, was eine Weile dauern kann.",
"This page will refresh itself when the %s instance is available again." : "Diese Seite aktualisiert sich automatisch, wenn die %s-Instanz wieder verfügbar ist.",
@@ -334,6 +338,7 @@ OC.L10N.register(
"The share will expire on %s." : "Die Freigabe wird am %s ablaufen.",
"Cheers!" : "Noch einen schönen Tag!",
"Use the following link to reset your password: {link}" : "Verwende den folgenden Link, um dein Passwort zurückzusetzen: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass %s <strong>%s</strong> mit dir geteilt hat.<br><a href=\"%s\">Sieh es Dir an!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass %s <strong>%s</strong> mit dir geteilt hat.<br><a href=\"%s\">Sieh es Dir an!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Da Du eine große Instanz nutzt, verwende bitte das Aktualisierungsprogramm über die Kommandozeile."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/de.json b/core/l10n/de.json
index 2b2a62ff7bc..075c1beb87e 100644
--- a/core/l10n/de.json
+++ b/core/l10n/de.json
@@ -14,6 +14,7 @@
"Crop is not square" : "Zuschnitt ist nicht quadratisch",
"State token does not match" : "Status-Token stimmen nicht überein",
"Auth flow can only be started unauthenticated." : "Der Authentifizierungs-Ablauf kann nur als \"nicht angemeldet\" gestartet werden.",
+ "Password reset is disabled" : "Passwort-Reset ist deaktiviert",
"Couldn't reset password because the token is invalid" : "Das Passwort konnte aufgrund eines ungültigen Tokens nicht zurückgesetzt werden",
"Couldn't reset password because the token is expired" : "Das Passwort konnte nicht zurückgesetzt werden, da der Token abgelaufen ist",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Es konnte keine E-Mail verschickt werden um das Passwort zurückzusetzten, da keine E-Mail im Benutzerkonto hinterlegt ist. Bitte kontaktiere deinen Administrator.",
@@ -38,6 +39,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Prüfen, ob das Datenbankschema aktualisiert werden kann (dies kann je nach Datenbankgröße sehr lange dauern)",
"Checked database schema update" : "Datenbankschema-Aktualisierung überprüft",
"Checking updates of apps" : "Es wird nach Aktualisierungen für die Apps gesucht",
+ "Checking for update of app \"%s\" in appstore" : "Suche nach einer Aktualisierung für die App \"%s\" im App-Store",
+ "Update app \"%s\" from appstore" : "Aktualisiere die App \"%s\" aus dem App-Store",
+ "Checked for update of app \"%s\" in appstore" : "App-Store auf Aktualalisierung für die App \"%s\" geprüft",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Prüfen, ob das Datenbankschema für %s aktualisiert werden kann (dies kann je nach Datenbankgröße sehr lange dauern)",
"Checked database schema update for apps" : "Datenbankschema-Aktualisierung für Apps überprüft",
"Updated \"%s\" to %s" : "„%s“ zu %s aktualisiert",
@@ -296,7 +300,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Zur Vermeidung von Zeitüberschreitungen bei größeren Installationen kannst Du stattdessen den folgenden Befehl in deinem Installationsverzeichnis ausführen:",
"Detailed logs" : "Detaillierte Protokollmeldungen",
"Update needed" : "Update wird benötigt",
- "Please use the command line updater because you have a big instance." : "Da Du eine große Instanz nutzt, verwende bitte das Aktualisierungsprogramm über die Kommandozeile.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Bitte verwende den Komandozeilen-Updater, da Du eine große Installation mit mehr als 50 Nutzern betreibst.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Für weitere Hilfen, schaue bitte in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Diese %s-Instanz befindet sich gerade im Wartungsmodus, was eine Weile dauern kann.",
"This page will refresh itself when the %s instance is available again." : "Diese Seite aktualisiert sich automatisch, wenn die %s-Instanz wieder verfügbar ist.",
@@ -332,6 +336,7 @@
"The share will expire on %s." : "Die Freigabe wird am %s ablaufen.",
"Cheers!" : "Noch einen schönen Tag!",
"Use the following link to reset your password: {link}" : "Verwende den folgenden Link, um dein Passwort zurückzusetzen: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass %s <strong>%s</strong> mit dir geteilt hat.<br><a href=\"%s\">Sieh es Dir an!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass %s <strong>%s</strong> mit dir geteilt hat.<br><a href=\"%s\">Sieh es Dir an!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Da Du eine große Instanz nutzt, verwende bitte das Aktualisierungsprogramm über die Kommandozeile."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/de_DE.js b/core/l10n/de_DE.js
index 5a79d96372c..46eb405827c 100644
--- a/core/l10n/de_DE.js
+++ b/core/l10n/de_DE.js
@@ -16,6 +16,7 @@ OC.L10N.register(
"Crop is not square" : "Zuschnitt ist nicht quadratisch",
"State token does not match" : "Status-Token stimmen nicht überein",
"Auth flow can only be started unauthenticated." : "Der Authentifizierungs-Ablauf kann nur als \"nicht angemeldet\" gestartet werden.",
+ "Password reset is disabled" : "Passwort-Reset ist deaktiviert",
"Couldn't reset password because the token is invalid" : "Das Passwort konnte aufgrund eines ungültigen Tokens nicht zurückgesetzt werden",
"Couldn't reset password because the token is expired" : "Das Passwort konnte nicht zurückgesetzt werden, da der Token abgelaufen ist",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Es konnte keine E-Mail verschickt werden um das Passwort zurückzusetzten, da keine E-Mail im Benutzerkonto hinterlegt ist. Bitte kontaktieren Sie den Administrator.",
@@ -40,6 +41,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Prüft, ob das Datenbankschema aktualisiert werden kann (dies kann je nach Datenbankgröße sehr lange dauern)",
"Checked database schema update" : "Datenbankschema-Aktualisierung überprüft",
"Checking updates of apps" : "Es wird nach Updates für die Apps gesucht",
+ "Checking for update of app \"%s\" in appstore" : "Suche nach einer Aktualisierung für die App \"%s\" im App-Store",
+ "Update app \"%s\" from appstore" : "Aktualisiere die App \"%s\" aus dem App-Store",
+ "Checked for update of app \"%s\" in appstore" : "App-Store auf Aktualalisierung für die App \"%s\" geprüft",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Prüft, ob das Datenbankschema für %s aktualisiert werden kann (dies kann je nach Datenbankgröße sehr lange dauern)",
"Checked database schema update for apps" : "Datenbankschema-Aktualisierung für Apps überprüft",
"Updated \"%s\" to %s" : "„%s“ zu %s aktualisiert",
@@ -298,7 +302,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Zur Vermeidung von Zeitüberschreitungen bei größeren Installationen können Sie stattdessen den folgenden Befehl in Ihrem Installationsverzeichnis ausführen:",
"Detailed logs" : "Detaillierte Protokollmeldungen",
"Update needed" : "Aktualisierung erforderlich",
- "Please use the command line updater because you have a big instance." : "Da Sie eine große Instanz von Nextcloud besitzen, wird die Benutzung des Aktualisierungsprogrammes über die Kommandozeile empfohlen.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Bitte verwenden Sie den Komandozeilen-Updater, da Sie eine große Installation mit mehr als 50 Nutzern betreiben.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Für weitere Hilfen, schauen Sie bitte in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Diese %s-Instanz befindet sich gerade im Wartungsmodus, was eine Weile dauern kann.",
"This page will refresh itself when the %s instance is available again." : "Diese Seite aktualisiert sich automatisch, wenn die %s-Instanz wieder verfügbar ist.",
@@ -334,6 +338,7 @@ OC.L10N.register(
"The share will expire on %s." : "Die Freigabe wird am %s ablaufen.",
"Cheers!" : "Noch einen schönen Tag!",
"Use the following link to reset your password: {link}" : "Benutzen Sie den folgenden Link, um Ihr Passwort zurückzusetzen: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass %s <strong>%s</strong> mit Ihnen geteilt hat.<br><a href=\"%s\">Sehen Sie es sich an!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass %s <strong>%s</strong> mit Ihnen geteilt hat.<br><a href=\"%s\">Sehen Sie es sich an!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Da Sie eine große Instanz von Nextcloud besitzen, wird die Benutzung des Aktualisierungsprogrammes über die Kommandozeile empfohlen."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/de_DE.json b/core/l10n/de_DE.json
index c298f9004ea..0a20f8f0934 100644
--- a/core/l10n/de_DE.json
+++ b/core/l10n/de_DE.json
@@ -14,6 +14,7 @@
"Crop is not square" : "Zuschnitt ist nicht quadratisch",
"State token does not match" : "Status-Token stimmen nicht überein",
"Auth flow can only be started unauthenticated." : "Der Authentifizierungs-Ablauf kann nur als \"nicht angemeldet\" gestartet werden.",
+ "Password reset is disabled" : "Passwort-Reset ist deaktiviert",
"Couldn't reset password because the token is invalid" : "Das Passwort konnte aufgrund eines ungültigen Tokens nicht zurückgesetzt werden",
"Couldn't reset password because the token is expired" : "Das Passwort konnte nicht zurückgesetzt werden, da der Token abgelaufen ist",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Es konnte keine E-Mail verschickt werden um das Passwort zurückzusetzten, da keine E-Mail im Benutzerkonto hinterlegt ist. Bitte kontaktieren Sie den Administrator.",
@@ -38,6 +39,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Prüft, ob das Datenbankschema aktualisiert werden kann (dies kann je nach Datenbankgröße sehr lange dauern)",
"Checked database schema update" : "Datenbankschema-Aktualisierung überprüft",
"Checking updates of apps" : "Es wird nach Updates für die Apps gesucht",
+ "Checking for update of app \"%s\" in appstore" : "Suche nach einer Aktualisierung für die App \"%s\" im App-Store",
+ "Update app \"%s\" from appstore" : "Aktualisiere die App \"%s\" aus dem App-Store",
+ "Checked for update of app \"%s\" in appstore" : "App-Store auf Aktualalisierung für die App \"%s\" geprüft",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Prüft, ob das Datenbankschema für %s aktualisiert werden kann (dies kann je nach Datenbankgröße sehr lange dauern)",
"Checked database schema update for apps" : "Datenbankschema-Aktualisierung für Apps überprüft",
"Updated \"%s\" to %s" : "„%s“ zu %s aktualisiert",
@@ -296,7 +300,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Zur Vermeidung von Zeitüberschreitungen bei größeren Installationen können Sie stattdessen den folgenden Befehl in Ihrem Installationsverzeichnis ausführen:",
"Detailed logs" : "Detaillierte Protokollmeldungen",
"Update needed" : "Aktualisierung erforderlich",
- "Please use the command line updater because you have a big instance." : "Da Sie eine große Instanz von Nextcloud besitzen, wird die Benutzung des Aktualisierungsprogrammes über die Kommandozeile empfohlen.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Bitte verwenden Sie den Komandozeilen-Updater, da Sie eine große Installation mit mehr als 50 Nutzern betreiben.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Für weitere Hilfen, schauen Sie bitte in die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Dokumentation</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Diese %s-Instanz befindet sich gerade im Wartungsmodus, was eine Weile dauern kann.",
"This page will refresh itself when the %s instance is available again." : "Diese Seite aktualisiert sich automatisch, wenn die %s-Instanz wieder verfügbar ist.",
@@ -332,6 +336,7 @@
"The share will expire on %s." : "Die Freigabe wird am %s ablaufen.",
"Cheers!" : "Noch einen schönen Tag!",
"Use the following link to reset your password: {link}" : "Benutzen Sie den folgenden Link, um Ihr Passwort zurückzusetzen: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass %s <strong>%s</strong> mit Ihnen geteilt hat.<br><a href=\"%s\">Sehen Sie es sich an!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass %s <strong>%s</strong> mit Ihnen geteilt hat.<br><a href=\"%s\">Sehen Sie es sich an!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Da Sie eine große Instanz von Nextcloud besitzen, wird die Benutzung des Aktualisierungsprogrammes über die Kommandozeile empfohlen."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/el.js b/core/l10n/el.js
index d347b706b97..9b4d073f6e1 100644
--- a/core/l10n/el.js
+++ b/core/l10n/el.js
@@ -15,6 +15,7 @@ OC.L10N.register(
"No valid crop data provided" : "Έχουν δοθεί μη έγκυρα δεδομένα περικοπής",
"Crop is not square" : "Η περικοπή δεν εχει τετραγωνικό σχήμα",
"State token does not match" : "Το αναγνωριστικό κατάστασης δεν ταιριάζει",
+ "Password reset is disabled" : "Η επαναφορά συνθηματικού είναι απενεργοποιημένη",
"Couldn't reset password because the token is invalid" : "Αδυναμία επαναφοράς συνθηματικού λόγω μη έγκυρου διακριτικού",
"Couldn't reset password because the token is expired" : "Αδυναμία επαναφοράς συνθηματικού επειδή το διακριτικό έχει λήξει",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Αδυναμία αποστολής ηλεκτρονικού μηνύματος επαναφοράς διότι δεν υπάρχει διεύθυνση ηλεκτρινικής αλληλογραφίας για αυτόν τον χρήστη. Παρακαλώ επικοινωνήστε με το διαχειριστή.",
@@ -39,6 +40,8 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Έλεγχος αν η διάταξη της βάσης δεδομένων μπορεί να ενημερωθεί (αυτό μπορεί να πάρει αρκετή ώρα ανάλογα με το μέγεθος της βάσης δεδομένων)",
"Checked database schema update" : "Έλεγχος ενημέρωσης διάταξης βάσης δεδομένων",
"Checking updates of apps" : "Έλεγχος ενημερώσεων εφαρμογών",
+ "Checking for update of app \"%s\" in appstore" : "Έλεγχος για ενημέρωση της εφαρμογής \"%s\" στο κέτρο εφαρμογών",
+ "Update app \"%s\" from appstore" : "Ενημέρωση εφαρμογής \"%s\" από το κέντρο εφαρμογών",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Έλεγχος αν η διάταξη της βάσης δεδομένων για %s μπορεί να ενημερωθεί (αυτό μπορεί να πάρει αρκετή ώρα ανάλογα με το μέγεθος της βάσης δεδομένων)",
"Checked database schema update for apps" : "Έλεγχος ενημέρωσης διάταξης βάσης δεδομένων για εφαρμογές",
"Updated \"%s\" to %s" : "Ενημερώθηκε \"%s\" σε %s",
@@ -296,7 +299,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Για να αποφύγετε τη λήξη χρόνου με μεγαλύτερες εγκαταστάσεις, μπορείτε αντί αυτού να εκτελέσετε την ακόλουθη εντολή στον κατάλογο εγκατάστασης:",
"Detailed logs" : "Λεπτομερές ιστορικό",
"Update needed" : "Απαιτείται ενημέρωση",
- "Please use the command line updater because you have a big instance." : "Παρακαλούμε χρησιμοποιήστε την ενημέρωση μέσω γραμμής εντολών διότι έχετε μεγάλη εγκατάσταση.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Παρακαλούμε χρησιμοποιήστε την ενημέρωση μέσω γραμμής εντολών διότι έχετε μια μεγάλη εγκατάσταση με περισσότερους από 50 χρήστες.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Για βοήθεια, δείτε στην <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">τεκμηρίωση</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Αυτή %s η εγκατάσταση είναι σε λειτουργία συντήρησης, η οποία μπορεί να διαρκέσει κάποιο χρόνο.",
"This page will refresh itself when the %s instance is available again." : "Αυτή η σελίδα θα ανανεωθεί από μόνη της όταν η %s εγκατάσταση είναι διαθέσιμη ξανά.",
@@ -332,6 +335,7 @@ OC.L10N.register(
"The share will expire on %s." : "Ο διαμοιρασμός θα λήξει σε %s.",
"Cheers!" : "Με εκτίμηση!",
"Use the following link to reset your password: {link}" : "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επαναφέρετε το συνθηματικό: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Γεια χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το<strong>%s</strong> με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Γεια χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το<strong>%s</strong> με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Παρακαλούμε χρησιμοποιήστε την ενημέρωση μέσω γραμμής εντολών διότι έχετε μεγάλη εγκατάσταση."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/el.json b/core/l10n/el.json
index fbd6a98ab36..d98035a0863 100644
--- a/core/l10n/el.json
+++ b/core/l10n/el.json
@@ -13,6 +13,7 @@
"No valid crop data provided" : "Έχουν δοθεί μη έγκυρα δεδομένα περικοπής",
"Crop is not square" : "Η περικοπή δεν εχει τετραγωνικό σχήμα",
"State token does not match" : "Το αναγνωριστικό κατάστασης δεν ταιριάζει",
+ "Password reset is disabled" : "Η επαναφορά συνθηματικού είναι απενεργοποιημένη",
"Couldn't reset password because the token is invalid" : "Αδυναμία επαναφοράς συνθηματικού λόγω μη έγκυρου διακριτικού",
"Couldn't reset password because the token is expired" : "Αδυναμία επαναφοράς συνθηματικού επειδή το διακριτικό έχει λήξει",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Αδυναμία αποστολής ηλεκτρονικού μηνύματος επαναφοράς διότι δεν υπάρχει διεύθυνση ηλεκτρινικής αλληλογραφίας για αυτόν τον χρήστη. Παρακαλώ επικοινωνήστε με το διαχειριστή.",
@@ -37,6 +38,8 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Έλεγχος αν η διάταξη της βάσης δεδομένων μπορεί να ενημερωθεί (αυτό μπορεί να πάρει αρκετή ώρα ανάλογα με το μέγεθος της βάσης δεδομένων)",
"Checked database schema update" : "Έλεγχος ενημέρωσης διάταξης βάσης δεδομένων",
"Checking updates of apps" : "Έλεγχος ενημερώσεων εφαρμογών",
+ "Checking for update of app \"%s\" in appstore" : "Έλεγχος για ενημέρωση της εφαρμογής \"%s\" στο κέτρο εφαρμογών",
+ "Update app \"%s\" from appstore" : "Ενημέρωση εφαρμογής \"%s\" από το κέντρο εφαρμογών",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Έλεγχος αν η διάταξη της βάσης δεδομένων για %s μπορεί να ενημερωθεί (αυτό μπορεί να πάρει αρκετή ώρα ανάλογα με το μέγεθος της βάσης δεδομένων)",
"Checked database schema update for apps" : "Έλεγχος ενημέρωσης διάταξης βάσης δεδομένων για εφαρμογές",
"Updated \"%s\" to %s" : "Ενημερώθηκε \"%s\" σε %s",
@@ -294,7 +297,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Για να αποφύγετε τη λήξη χρόνου με μεγαλύτερες εγκαταστάσεις, μπορείτε αντί αυτού να εκτελέσετε την ακόλουθη εντολή στον κατάλογο εγκατάστασης:",
"Detailed logs" : "Λεπτομερές ιστορικό",
"Update needed" : "Απαιτείται ενημέρωση",
- "Please use the command line updater because you have a big instance." : "Παρακαλούμε χρησιμοποιήστε την ενημέρωση μέσω γραμμής εντολών διότι έχετε μεγάλη εγκατάσταση.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Παρακαλούμε χρησιμοποιήστε την ενημέρωση μέσω γραμμής εντολών διότι έχετε μια μεγάλη εγκατάσταση με περισσότερους από 50 χρήστες.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Για βοήθεια, δείτε στην <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">τεκμηρίωση</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Αυτή %s η εγκατάσταση είναι σε λειτουργία συντήρησης, η οποία μπορεί να διαρκέσει κάποιο χρόνο.",
"This page will refresh itself when the %s instance is available again." : "Αυτή η σελίδα θα ανανεωθεί από μόνη της όταν η %s εγκατάσταση είναι διαθέσιμη ξανά.",
@@ -330,6 +333,7 @@
"The share will expire on %s." : "Ο διαμοιρασμός θα λήξει σε %s.",
"Cheers!" : "Με εκτίμηση!",
"Use the following link to reset your password: {link}" : "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επαναφέρετε το συνθηματικό: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Γεια χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το<strong>%s</strong> με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Γεια χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το<strong>%s</strong> με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Παρακαλούμε χρησιμοποιήστε την ενημέρωση μέσω γραμμής εντολών διότι έχετε μεγάλη εγκατάσταση."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/en_GB.js b/core/l10n/en_GB.js
deleted file mode 100644
index aae14992022..00000000000
--- a/core/l10n/en_GB.js
+++ /dev/null
@@ -1,256 +0,0 @@
-OC.L10N.register(
- "core",
- {
- "Please select a file." : "Please select a file.",
- "File is too big" : "File is too big",
- "The selected file is not an image." : "The selected file is not an image.",
- "The selected file cannot be read." : "The selected file cannot be read.",
- "Invalid file provided" : "Invalid file provided",
- "No image or file provided" : "No image or file provided",
- "Unknown filetype" : "Unknown filetype",
- "Invalid image" : "Invalid image",
- "An error occurred. Please contact your admin." : "An error occurred. Please contact your admin.",
- "No temporary profile picture available, try again" : "No temporary profile picture available, try again",
- "No crop data provided" : "No crop data provided",
- "No valid crop data provided" : "No valid crop data provided",
- "Crop is not square" : "Crop is not square",
- "Couldn't reset password because the token is invalid" : "Couldn't reset password because the token is invalid",
- "Couldn't reset password because the token is expired" : "Couldn't reset password because the token is expired",
- "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Could not send reset email because there is no email address for this username. Please contact your administrator.",
- "%s password reset" : "%s password reset",
- "Couldn't send reset email. Please contact your administrator." : "Couldn't send reset email. Please contact your administrator.",
- "Couldn't send reset email. Please make sure your username is correct." : "Couldn't send reset email. Please make sure your username is correct.",
- "Preparing update" : "Preparing update",
- "[%d / %d]: %s" : "[%d / %d]: %s",
- "Repair warning: " : "Repair warning: ",
- "Repair error: " : "Repair error: ",
- "Please use the command line updater because automatic updating is disabled in the config.php." : "Please use the command line updater because automatic updating is disabled in the config.php.",
- "[%d / %d]: Checking table %s" : "[%d / %d]: Checking table %s",
- "Turned on maintenance mode" : "Turned on maintenance mode",
- "Turned off maintenance mode" : "Turned off maintenance mode",
- "Maintenance mode is kept active" : "Maintenance mode is kept active",
- "Updating database schema" : "Updating database schema",
- "Updated database" : "Updated database",
- "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Checking whether the database schema can be updated (this can take a long time depending on the database size)",
- "Checked database schema update" : "Checked database schema update",
- "Checking updates of apps" : "Checking updates of apps",
- "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)",
- "Checked database schema update for apps" : "Checked database schema update for apps",
- "Updated \"%s\" to %s" : "Updated \"%s\" to %s",
- "Set log level to debug" : "Set log level to debug",
- "Reset log level" : "Reset log level",
- "Starting code integrity check" : "Starting code integrity check",
- "Finished code integrity check" : "Finished code integrity check",
- "%s (3rdparty)" : "%s (3rdparty)",
- "%s (incompatible)" : "%s (incompatible)",
- "Following apps have been disabled: %s" : "Following apps have been disabled: %s",
- "Already up to date" : "Already up to date",
- "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>",
- "Settings" : "Settings",
- "Connection to server lost" : "Connection to server lost",
- "Saving..." : "Saving...",
- "Dismiss" : "Dismiss",
- "This action requires you to confirm your password" : "This action requires you to confirm your password",
- "Authentication required" : "Authentication required",
- "Password" : "Password",
- "Cancel" : "Cancel",
- "Confirm" : "Confirm",
- "Failed to authenticate, try again" : "Failed to authenticate, try again",
- "seconds ago" : "seconds ago",
- "Logging in …" : "Logging in …",
- "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." : "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.",
- "I know what I'm doing" : "I know what I'm doing",
- "Password can not be changed. Please contact your administrator." : "Password can not be changed. Please contact your administrator.",
- "No" : "No",
- "Yes" : "Yes",
- "No files in here" : "No files in here",
- "Choose" : "Choose",
- "Error loading file picker template: {error}" : "Error loading file picker template: {error}",
- "Error loading message template: {error}" : "Error loading message template: {error}",
- "read-only" : "read-only",
- "_{count} file conflict_::_{count} file conflicts_" : ["{count} file conflict","{count} file conflicts"],
- "One file conflict" : "One file conflict",
- "New Files" : "New Files",
- "Already existing files" : "Already existing files",
- "Which files do you want to keep?" : "Which files do you wish to keep?",
- "If you select both versions, the copied file will have a number added to its name." : "If you select both versions, the copied file will have a number added to its name.",
- "Continue" : "Continue",
- "(all selected)" : "(all selected)",
- "({count} selected)" : "({count} selected)",
- "Error loading file exists template" : "Error loading file exists template",
- "Pending" : "Pending",
- "Very weak password" : "Very weak password",
- "Weak password" : "Weak password",
- "So-so password" : "So-so password",
- "Good password" : "Good password",
- "Strong password" : "Strong password",
- "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Your web server is not yet set up properly to allow file synchronisation because the WebDAV interface seems to be broken.",
- "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>.",
- "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features.",
- "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" 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 target=\"_blank\" rel=\"noreferrer\" 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 target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>.",
- "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it.",
- "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>.",
- "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>.",
- "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)",
- "Error occurred while checking server setup" : "Error occurred whilst 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." : "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.",
- "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>.",
- "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>.",
- "Shared" : "Shared",
- "Shared with {recipients}" : "Shared with {recipients}",
- "Error setting expiration date" : "Error setting expiration date",
- "The public link will expire no later than {days} days after it is created" : "The public link will expire no later than {days} days after it is created",
- "Set expiration date" : "Set expiration date",
- "Expiration" : "Expiration",
- "Expiration date" : "Expiration date",
- "Choose a password for the public link" : "Choose a password for the public link",
- "Copied!" : "Copied!",
- "Resharing is not allowed" : "Resharing is not allowed",
- "Share link" : "Share link",
- "Link" : "Link",
- "Password protect" : "Password protect",
- "Allow editing" : "Allow editing",
- "Email link to person" : "Email link to person",
- "Send" : "Send",
- "Shared with you and the group {group} by {owner}" : "Shared with you and the group {group} by {owner}",
- "Shared with you by {owner}" : "Shared with you by {owner}",
- "group" : "group",
- "remote" : "remote",
- "Unshare" : "Unshare",
- "Could not unshare" : "Could not unshare",
- "Error while sharing" : "Error whilst sharing",
- "Share details could not be loaded for this item." : "Share details could not be loaded for this item.",
- "No users or groups found for {search}" : "No users or groups found for {search}",
- "No users found for {search}" : "No users found for {search}",
- "An error occurred. Please try again" : "An error occurred. Please try again",
- "{sharee} (group)" : "{sharee} (group)",
- "{sharee} (remote)" : "{sharee} (remote)",
- "Share" : "Share",
- "Error" : "Error",
- "Error removing share" : "Error removing share",
- "Non-existing tag #{tag}" : "Non-existing tag #{tag}",
- "restricted" : "restricted",
- "invisible" : "invisible",
- "({scope})" : "({scope})",
- "Delete" : "Delete",
- "Rename" : "Rename",
- "Collaborative tags" : "Collaborative tags",
- "unknown text" : "unknown text",
- "Hello world!" : "Hello world!",
- "sunny" : "sunny",
- "Hello {name}, the weather is {weather}" : "Hello {name}, the weather is {weather}",
- "Hello {name}" : "Hello {name}",
- "new" : "new",
- "_download %n file_::_download %n files_" : ["download %n file","download %n files"],
- "An error occurred." : "An error occurred.",
- "Please reload the page." : "Please reload the page.",
- "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue.",
- "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>.",
- "Searching other places" : "Searching other places",
- "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} search result in another folder","{count} search results in other folders"],
- "Personal" : "Personal",
- "Users" : "Users",
- "Apps" : "Apps",
- "Admin" : "Admin",
- "Help" : "Help",
- "Access forbidden" : "Access denied",
- "File not found" : "File not found",
- "The specified document has not been found on the server." : "The specified document has not been found on the server.",
- "You can click here to return to %s." : "You can click here to return to %s.",
- "Internal Server Error" : "Internal Server Error",
- "The server encountered an internal error and was unable to complete your request." : "The server encountered an internal error and was unable to complete your request.",
- "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." : "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.",
- "More details can be found in the server log." : "More details can be found in the server log.",
- "Technical details" : "Technical details",
- "Remote Address: %s" : "Remote Address: %s",
- "Request ID: %s" : "Request ID: %s",
- "Type: %s" : "Type: %s",
- "Code: %s" : "Code: %s",
- "Message: %s" : "Message: %s",
- "File: %s" : "File: %s",
- "Line: %s" : "Line: %s",
- "Trace" : "Trace",
- "Security warning" : "Security warning",
- "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Your data directory and files are probably accessible from the internet because the .htaccess file does not work.",
- "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>.",
- "Create an <strong>admin account</strong>" : "Create an <strong>admin account</strong>",
- "Username" : "Username",
- "Storage & database" : "Storage & database",
- "Data folder" : "Data folder",
- "Configure the database" : "Configure the database",
- "Only %s is available." : "Only %s is available.",
- "Install and activate additional PHP modules to choose other database types." : "Install and activate additional PHP modules to choose other database types.",
- "For more details check out the documentation." : "For more details check out the documentation.",
- "Database user" : "Database user",
- "Database password" : "Database password",
- "Database name" : "Database name",
- "Database tablespace" : "Database tablespace",
- "Database host" : "Database host",
- "Performance warning" : "Performance warning",
- "SQLite will be used as database." : "SQLite will be used as database.",
- "For larger installations we recommend to choose a different database backend." : "For larger installations we recommend to choose a different database backend.",
- "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Especially when using the desktop client for file syncing, the use of SQLite is discouraged.",
- "Finish setup" : "Finish setup",
- "Finishing …" : "Finishing …",
- "Need help?" : "Need help?",
- "See the documentation" : "See the documentation",
- "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page.",
- "Search" : "Search",
- "Server side authentication failed!" : "Server side authentication failed!",
- "Please contact your administrator." : "Please contact your administrator.",
- "An internal error occurred." : "An internal error occurred.",
- "Please try again or contact your administrator." : "Please try again or contact your administrator.",
- "Username or email" : "Username or email",
- "Wrong password. Reset it?" : "Wrong password. Reset it?",
- "Wrong password." : "Wrong password.",
- "Log in" : "Log in",
- "Stay logged in" : "Stay logged in",
- "Alternative Logins" : "Alternative Logins",
- "New password" : "New password",
- "New Password" : "New Password",
- "Reset password" : "Reset password",
- "This Nextcloud instance is currently in single user mode." : "This Nextcloud instance is currently in single user mode.",
- "This means only administrators can use the instance." : "This means only administrators can use the instance.",
- "Contact your system administrator if this message persists or appeared unexpectedly." : "Contact your system administrator if this message persists or appeared unexpectedly.",
- "Thank you for your patience." : "Thank you for your patience.",
- "Log out" : "Log out",
- "You are accessing the server from an untrusted domain." : "You are accessing the server from an untrusted domain.",
- "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php.",
- "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain.",
- "Add \"%s\" as trusted domain" : "Add \"%s\" as a trusted domain",
- "App update required" : "App update required",
- "%s will be updated to version %s" : "%s will be updated to version %s",
- "These apps will be updated:" : "These apps will be updated:",
- "These incompatible apps will be disabled:" : "These incompatible apps will be disabled:",
- "The theme %s has been disabled." : "The theme %s has been disabled.",
- "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Please make sure that the database, the config folder and the data folder have been backed up before proceeding.",
- "Start update" : "Start update",
- "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:",
- "Detailed logs" : "Detailed logs",
- "Update needed" : "Update needed",
- "Please use the command line updater because you have a big instance." : "Please use the command line updater because you have a big instance.",
- "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>.",
- "This %s instance is currently in maintenance mode, which may take a while." : "This %s instance is currently in maintenance mode, which may take a while.",
- "This page will refresh itself when the %s instance is available again." : "This page will refresh itself when the %s instance is available again.",
- "Problem loading page, reloading in 5 seconds" : "Problem loading page, reloading in 5 seconds",
- "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?" : "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?",
- "Ok" : "OK",
- "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.",
- "Error while unsharing" : "Error whilst unsharing",
- "can edit" : "can edit",
- "access control" : "access control",
- "The object type is not specified." : "The object type is not specified.",
- "Enter new" : "Enter new",
- "Add" : "Add",
- "Edit tags" : "Edit tags",
- "Error loading dialog template: {error}" : "Error loading dialog template: {error}",
- "No tags selected for deletion." : "No tags selected for deletion.",
- "The update was successful. Redirecting you to Nextcloud now." : "The update was successful. Redirecting you to Nextcloud.",
- "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" : "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n",
- "The share will expire on %s." : "The share will expire on %s.",
- "Cheers!" : "Cheers!",
- "Use the following link to reset your password: {link}" : "Use the following link to reset your password: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>"
-},
-"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/en_GB.json b/core/l10n/en_GB.json
deleted file mode 100644
index a44f18dd91e..00000000000
--- a/core/l10n/en_GB.json
+++ /dev/null
@@ -1,254 +0,0 @@
-{ "translations": {
- "Please select a file." : "Please select a file.",
- "File is too big" : "File is too big",
- "The selected file is not an image." : "The selected file is not an image.",
- "The selected file cannot be read." : "The selected file cannot be read.",
- "Invalid file provided" : "Invalid file provided",
- "No image or file provided" : "No image or file provided",
- "Unknown filetype" : "Unknown filetype",
- "Invalid image" : "Invalid image",
- "An error occurred. Please contact your admin." : "An error occurred. Please contact your admin.",
- "No temporary profile picture available, try again" : "No temporary profile picture available, try again",
- "No crop data provided" : "No crop data provided",
- "No valid crop data provided" : "No valid crop data provided",
- "Crop is not square" : "Crop is not square",
- "Couldn't reset password because the token is invalid" : "Couldn't reset password because the token is invalid",
- "Couldn't reset password because the token is expired" : "Couldn't reset password because the token is expired",
- "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Could not send reset email because there is no email address for this username. Please contact your administrator.",
- "%s password reset" : "%s password reset",
- "Couldn't send reset email. Please contact your administrator." : "Couldn't send reset email. Please contact your administrator.",
- "Couldn't send reset email. Please make sure your username is correct." : "Couldn't send reset email. Please make sure your username is correct.",
- "Preparing update" : "Preparing update",
- "[%d / %d]: %s" : "[%d / %d]: %s",
- "Repair warning: " : "Repair warning: ",
- "Repair error: " : "Repair error: ",
- "Please use the command line updater because automatic updating is disabled in the config.php." : "Please use the command line updater because automatic updating is disabled in the config.php.",
- "[%d / %d]: Checking table %s" : "[%d / %d]: Checking table %s",
- "Turned on maintenance mode" : "Turned on maintenance mode",
- "Turned off maintenance mode" : "Turned off maintenance mode",
- "Maintenance mode is kept active" : "Maintenance mode is kept active",
- "Updating database schema" : "Updating database schema",
- "Updated database" : "Updated database",
- "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Checking whether the database schema can be updated (this can take a long time depending on the database size)",
- "Checked database schema update" : "Checked database schema update",
- "Checking updates of apps" : "Checking updates of apps",
- "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)",
- "Checked database schema update for apps" : "Checked database schema update for apps",
- "Updated \"%s\" to %s" : "Updated \"%s\" to %s",
- "Set log level to debug" : "Set log level to debug",
- "Reset log level" : "Reset log level",
- "Starting code integrity check" : "Starting code integrity check",
- "Finished code integrity check" : "Finished code integrity check",
- "%s (3rdparty)" : "%s (3rdparty)",
- "%s (incompatible)" : "%s (incompatible)",
- "Following apps have been disabled: %s" : "Following apps have been disabled: %s",
- "Already up to date" : "Already up to date",
- "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>",
- "Settings" : "Settings",
- "Connection to server lost" : "Connection to server lost",
- "Saving..." : "Saving...",
- "Dismiss" : "Dismiss",
- "This action requires you to confirm your password" : "This action requires you to confirm your password",
- "Authentication required" : "Authentication required",
- "Password" : "Password",
- "Cancel" : "Cancel",
- "Confirm" : "Confirm",
- "Failed to authenticate, try again" : "Failed to authenticate, try again",
- "seconds ago" : "seconds ago",
- "Logging in …" : "Logging in …",
- "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." : "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.",
- "I know what I'm doing" : "I know what I'm doing",
- "Password can not be changed. Please contact your administrator." : "Password can not be changed. Please contact your administrator.",
- "No" : "No",
- "Yes" : "Yes",
- "No files in here" : "No files in here",
- "Choose" : "Choose",
- "Error loading file picker template: {error}" : "Error loading file picker template: {error}",
- "Error loading message template: {error}" : "Error loading message template: {error}",
- "read-only" : "read-only",
- "_{count} file conflict_::_{count} file conflicts_" : ["{count} file conflict","{count} file conflicts"],
- "One file conflict" : "One file conflict",
- "New Files" : "New Files",
- "Already existing files" : "Already existing files",
- "Which files do you want to keep?" : "Which files do you wish to keep?",
- "If you select both versions, the copied file will have a number added to its name." : "If you select both versions, the copied file will have a number added to its name.",
- "Continue" : "Continue",
- "(all selected)" : "(all selected)",
- "({count} selected)" : "({count} selected)",
- "Error loading file exists template" : "Error loading file exists template",
- "Pending" : "Pending",
- "Very weak password" : "Very weak password",
- "Weak password" : "Weak password",
- "So-so password" : "So-so password",
- "Good password" : "Good password",
- "Strong password" : "Strong password",
- "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Your web server is not yet set up properly to allow file synchronisation because the WebDAV interface seems to be broken.",
- "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>.",
- "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features.",
- "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" 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 target=\"_blank\" rel=\"noreferrer\" 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 target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>.",
- "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it.",
- "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>.",
- "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>.",
- "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)",
- "Error occurred while checking server setup" : "Error occurred whilst 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." : "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.",
- "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>.",
- "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>.",
- "Shared" : "Shared",
- "Shared with {recipients}" : "Shared with {recipients}",
- "Error setting expiration date" : "Error setting expiration date",
- "The public link will expire no later than {days} days after it is created" : "The public link will expire no later than {days} days after it is created",
- "Set expiration date" : "Set expiration date",
- "Expiration" : "Expiration",
- "Expiration date" : "Expiration date",
- "Choose a password for the public link" : "Choose a password for the public link",
- "Copied!" : "Copied!",
- "Resharing is not allowed" : "Resharing is not allowed",
- "Share link" : "Share link",
- "Link" : "Link",
- "Password protect" : "Password protect",
- "Allow editing" : "Allow editing",
- "Email link to person" : "Email link to person",
- "Send" : "Send",
- "Shared with you and the group {group} by {owner}" : "Shared with you and the group {group} by {owner}",
- "Shared with you by {owner}" : "Shared with you by {owner}",
- "group" : "group",
- "remote" : "remote",
- "Unshare" : "Unshare",
- "Could not unshare" : "Could not unshare",
- "Error while sharing" : "Error whilst sharing",
- "Share details could not be loaded for this item." : "Share details could not be loaded for this item.",
- "No users or groups found for {search}" : "No users or groups found for {search}",
- "No users found for {search}" : "No users found for {search}",
- "An error occurred. Please try again" : "An error occurred. Please try again",
- "{sharee} (group)" : "{sharee} (group)",
- "{sharee} (remote)" : "{sharee} (remote)",
- "Share" : "Share",
- "Error" : "Error",
- "Error removing share" : "Error removing share",
- "Non-existing tag #{tag}" : "Non-existing tag #{tag}",
- "restricted" : "restricted",
- "invisible" : "invisible",
- "({scope})" : "({scope})",
- "Delete" : "Delete",
- "Rename" : "Rename",
- "Collaborative tags" : "Collaborative tags",
- "unknown text" : "unknown text",
- "Hello world!" : "Hello world!",
- "sunny" : "sunny",
- "Hello {name}, the weather is {weather}" : "Hello {name}, the weather is {weather}",
- "Hello {name}" : "Hello {name}",
- "new" : "new",
- "_download %n file_::_download %n files_" : ["download %n file","download %n files"],
- "An error occurred." : "An error occurred.",
- "Please reload the page." : "Please reload the page.",
- "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue.",
- "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>.",
- "Searching other places" : "Searching other places",
- "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} search result in another folder","{count} search results in other folders"],
- "Personal" : "Personal",
- "Users" : "Users",
- "Apps" : "Apps",
- "Admin" : "Admin",
- "Help" : "Help",
- "Access forbidden" : "Access denied",
- "File not found" : "File not found",
- "The specified document has not been found on the server." : "The specified document has not been found on the server.",
- "You can click here to return to %s." : "You can click here to return to %s.",
- "Internal Server Error" : "Internal Server Error",
- "The server encountered an internal error and was unable to complete your request." : "The server encountered an internal error and was unable to complete your request.",
- "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." : "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.",
- "More details can be found in the server log." : "More details can be found in the server log.",
- "Technical details" : "Technical details",
- "Remote Address: %s" : "Remote Address: %s",
- "Request ID: %s" : "Request ID: %s",
- "Type: %s" : "Type: %s",
- "Code: %s" : "Code: %s",
- "Message: %s" : "Message: %s",
- "File: %s" : "File: %s",
- "Line: %s" : "Line: %s",
- "Trace" : "Trace",
- "Security warning" : "Security warning",
- "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Your data directory and files are probably accessible from the internet because the .htaccess file does not work.",
- "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>.",
- "Create an <strong>admin account</strong>" : "Create an <strong>admin account</strong>",
- "Username" : "Username",
- "Storage & database" : "Storage & database",
- "Data folder" : "Data folder",
- "Configure the database" : "Configure the database",
- "Only %s is available." : "Only %s is available.",
- "Install and activate additional PHP modules to choose other database types." : "Install and activate additional PHP modules to choose other database types.",
- "For more details check out the documentation." : "For more details check out the documentation.",
- "Database user" : "Database user",
- "Database password" : "Database password",
- "Database name" : "Database name",
- "Database tablespace" : "Database tablespace",
- "Database host" : "Database host",
- "Performance warning" : "Performance warning",
- "SQLite will be used as database." : "SQLite will be used as database.",
- "For larger installations we recommend to choose a different database backend." : "For larger installations we recommend to choose a different database backend.",
- "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Especially when using the desktop client for file syncing, the use of SQLite is discouraged.",
- "Finish setup" : "Finish setup",
- "Finishing …" : "Finishing …",
- "Need help?" : "Need help?",
- "See the documentation" : "See the documentation",
- "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page.",
- "Search" : "Search",
- "Server side authentication failed!" : "Server side authentication failed!",
- "Please contact your administrator." : "Please contact your administrator.",
- "An internal error occurred." : "An internal error occurred.",
- "Please try again or contact your administrator." : "Please try again or contact your administrator.",
- "Username or email" : "Username or email",
- "Wrong password. Reset it?" : "Wrong password. Reset it?",
- "Wrong password." : "Wrong password.",
- "Log in" : "Log in",
- "Stay logged in" : "Stay logged in",
- "Alternative Logins" : "Alternative Logins",
- "New password" : "New password",
- "New Password" : "New Password",
- "Reset password" : "Reset password",
- "This Nextcloud instance is currently in single user mode." : "This Nextcloud instance is currently in single user mode.",
- "This means only administrators can use the instance." : "This means only administrators can use the instance.",
- "Contact your system administrator if this message persists or appeared unexpectedly." : "Contact your system administrator if this message persists or appeared unexpectedly.",
- "Thank you for your patience." : "Thank you for your patience.",
- "Log out" : "Log out",
- "You are accessing the server from an untrusted domain." : "You are accessing the server from an untrusted domain.",
- "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php.",
- "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain.",
- "Add \"%s\" as trusted domain" : "Add \"%s\" as a trusted domain",
- "App update required" : "App update required",
- "%s will be updated to version %s" : "%s will be updated to version %s",
- "These apps will be updated:" : "These apps will be updated:",
- "These incompatible apps will be disabled:" : "These incompatible apps will be disabled:",
- "The theme %s has been disabled." : "The theme %s has been disabled.",
- "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Please make sure that the database, the config folder and the data folder have been backed up before proceeding.",
- "Start update" : "Start update",
- "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:",
- "Detailed logs" : "Detailed logs",
- "Update needed" : "Update needed",
- "Please use the command line updater because you have a big instance." : "Please use the command line updater because you have a big instance.",
- "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>.",
- "This %s instance is currently in maintenance mode, which may take a while." : "This %s instance is currently in maintenance mode, which may take a while.",
- "This page will refresh itself when the %s instance is available again." : "This page will refresh itself when the %s instance is available again.",
- "Problem loading page, reloading in 5 seconds" : "Problem loading page, reloading in 5 seconds",
- "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?" : "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?",
- "Ok" : "OK",
- "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root.",
- "Error while unsharing" : "Error whilst unsharing",
- "can edit" : "can edit",
- "access control" : "access control",
- "The object type is not specified." : "The object type is not specified.",
- "Enter new" : "Enter new",
- "Add" : "Add",
- "Edit tags" : "Edit tags",
- "Error loading dialog template: {error}" : "Error loading dialog template: {error}",
- "No tags selected for deletion." : "No tags selected for deletion.",
- "The update was successful. Redirecting you to Nextcloud now." : "The update was successful. Redirecting you to Nextcloud.",
- "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" : "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n",
- "The share will expire on %s." : "The share will expire on %s.",
- "Cheers!" : "Cheers!",
- "Use the following link to reset your password: {link}" : "Use the following link to reset your password: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>"
-},"pluralForm" :"nplurals=2; plural=(n != 1);"
-} \ No newline at end of file
diff --git a/core/l10n/es.js b/core/l10n/es.js
index 5d35a93474f..3a362ebd8a9 100644
--- a/core/l10n/es.js
+++ b/core/l10n/es.js
@@ -298,7 +298,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Para evitar tiempos de espera en grandes instalaciones, en su lugar puede ejecutar el siguiente comando desde el directorio de instalación:",
"Detailed logs" : "Registros detallados",
"Update needed" : "Se necesita actualización",
- "Please use the command line updater because you have a big instance." : "Por favor utilice la actualización mediante la linea de comandos porque tiene pendiente una gran actualización.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Para ayuda, mirar <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> la documentación</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Está instancia %s está en modo mantenimiento, por lo que puede llevar un tiempo.",
"This page will refresh itself when the %s instance is available again." : "La página se refrescará cuando la instalación %s vuelva a estar disponible.",
@@ -334,6 +333,7 @@ OC.L10N.register(
"The share will expire on %s." : "El objeto dejará de ser compartido el %s.",
"Cheers!" : "¡Saludos!",
"Use the following link to reset your password: {link}" : "Utilice el siguiente enlace para restablecer su contraseña: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola:<br><br>Te comentamos que %s compartió <strong>%s</strong> contigo.<br><a href=\"%s\">¡Échale un vistazo!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola:<br><br>Te comentamos que %s compartió <strong>%s</strong> contigo.<br><a href=\"%s\">¡Échale un vistazo!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Por favor utilice la actualización mediante la linea de comandos porque tiene pendiente una gran actualización."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/es.json b/core/l10n/es.json
index c4f38f116fd..dbdf2300c89 100644
--- a/core/l10n/es.json
+++ b/core/l10n/es.json
@@ -296,7 +296,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Para evitar tiempos de espera en grandes instalaciones, en su lugar puede ejecutar el siguiente comando desde el directorio de instalación:",
"Detailed logs" : "Registros detallados",
"Update needed" : "Se necesita actualización",
- "Please use the command line updater because you have a big instance." : "Por favor utilice la actualización mediante la linea de comandos porque tiene pendiente una gran actualización.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Para ayuda, mirar <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> la documentación</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Está instancia %s está en modo mantenimiento, por lo que puede llevar un tiempo.",
"This page will refresh itself when the %s instance is available again." : "La página se refrescará cuando la instalación %s vuelva a estar disponible.",
@@ -332,6 +331,7 @@
"The share will expire on %s." : "El objeto dejará de ser compartido el %s.",
"Cheers!" : "¡Saludos!",
"Use the following link to reset your password: {link}" : "Utilice el siguiente enlace para restablecer su contraseña: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola:<br><br>Te comentamos que %s compartió <strong>%s</strong> contigo.<br><a href=\"%s\">¡Échale un vistazo!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola:<br><br>Te comentamos que %s compartió <strong>%s</strong> contigo.<br><a href=\"%s\">¡Échale un vistazo!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Por favor utilice la actualización mediante la linea de comandos porque tiene pendiente una gran actualización."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/es_MX.js b/core/l10n/es_MX.js
index 60946f5a0f8..8546aefbd72 100644
--- a/core/l10n/es_MX.js
+++ b/core/l10n/es_MX.js
@@ -40,6 +40,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Verificando si el archivo del esquema de base de datos puede ser actualizado (esto puedo tomar mucho tiempo dependiendo del tamaño de la base de datos)",
"Checked database schema update" : "Actualización del esquema de base de datos verificada",
"Checking updates of apps" : "Verificando actualizaciónes para aplicaciones",
+ "Checking for update of app \"%s\" in appstore" : "Verificando actualizaciones para la aplicacion \"%s\" en la appstore",
+ "Update app \"%s\" from appstore" : "Actualizar la aplicación \"%s\" desde la appstore",
+ "Checked for update of app \"%s\" in appstore" : "Se verificaron actualizaciones para la aplicación \"%s\" en la appstore",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Verificando si el esquema de la base de datos para %s puede ser actualizado (esto puede tomar mucho tiempo dependiendo del tamaño de la base de datos)",
"Checked database schema update for apps" : "Se verificó la actualización del esquema de la base de datos para las aplicaciones",
"Updated \"%s\" to %s" : "Actualizando \"%s\" a %s",
@@ -298,7 +301,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Para evitar que la expiración de tiempo en instalaciones grandes, usted puede ejeuctar el siguiente comando desde su directorio de instalación:",
"Detailed logs" : "Bitácoras detalladas",
"Update needed" : "Actualización requerida",
- "Please use the command line updater because you have a big instance." : "Favor de usar el actualizador de línea de comando porque usted tiene una instancia grande. ",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Favor de usar el actualizador desde la línea de comandos ya que su instancia cuenta con más de 50 usuarios.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Para más ayuda, consulte la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">doccumentación</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Esta instancia %s se encuentra actualmente en modo mantenimiento, que podría tomar algo de tiempo. ",
"This page will refresh itself when the %s instance is available again." : "Esta página se actualizará sola cuando la instancia %s esté disponible de nuevo. ",
@@ -334,6 +337,7 @@ OC.L10N.register(
"The share will expire on %s." : "El recurso dejará de ser compartido el %s.",
"Cheers!" : "¡Saludos!",
"Use the following link to reset your password: {link}" : "Use la siguiente liga para restablecer su contraseña: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola,<br><br> sólo queremos informarle que %s ha compartido <strong>%s</strong> con usted. <br><a href=\"%s\">¡Véalo!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola,<br><br> sólo queremos informarle que %s ha compartido <strong>%s</strong> con usted. <br><a href=\"%s\">¡Véalo!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Favor de usar el actualizador de línea de comando porque usted tiene una instancia grande. "
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/es_MX.json b/core/l10n/es_MX.json
index c19324cea6c..4c55582f7b9 100644
--- a/core/l10n/es_MX.json
+++ b/core/l10n/es_MX.json
@@ -38,6 +38,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Verificando si el archivo del esquema de base de datos puede ser actualizado (esto puedo tomar mucho tiempo dependiendo del tamaño de la base de datos)",
"Checked database schema update" : "Actualización del esquema de base de datos verificada",
"Checking updates of apps" : "Verificando actualizaciónes para aplicaciones",
+ "Checking for update of app \"%s\" in appstore" : "Verificando actualizaciones para la aplicacion \"%s\" en la appstore",
+ "Update app \"%s\" from appstore" : "Actualizar la aplicación \"%s\" desde la appstore",
+ "Checked for update of app \"%s\" in appstore" : "Se verificaron actualizaciones para la aplicación \"%s\" en la appstore",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Verificando si el esquema de la base de datos para %s puede ser actualizado (esto puede tomar mucho tiempo dependiendo del tamaño de la base de datos)",
"Checked database schema update for apps" : "Se verificó la actualización del esquema de la base de datos para las aplicaciones",
"Updated \"%s\" to %s" : "Actualizando \"%s\" a %s",
@@ -296,7 +299,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Para evitar que la expiración de tiempo en instalaciones grandes, usted puede ejeuctar el siguiente comando desde su directorio de instalación:",
"Detailed logs" : "Bitácoras detalladas",
"Update needed" : "Actualización requerida",
- "Please use the command line updater because you have a big instance." : "Favor de usar el actualizador de línea de comando porque usted tiene una instancia grande. ",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Favor de usar el actualizador desde la línea de comandos ya que su instancia cuenta con más de 50 usuarios.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Para más ayuda, consulte la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">doccumentación</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Esta instancia %s se encuentra actualmente en modo mantenimiento, que podría tomar algo de tiempo. ",
"This page will refresh itself when the %s instance is available again." : "Esta página se actualizará sola cuando la instancia %s esté disponible de nuevo. ",
@@ -332,6 +335,7 @@
"The share will expire on %s." : "El recurso dejará de ser compartido el %s.",
"Cheers!" : "¡Saludos!",
"Use the following link to reset your password: {link}" : "Use la siguiente liga para restablecer su contraseña: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola,<br><br> sólo queremos informarle que %s ha compartido <strong>%s</strong> con usted. <br><a href=\"%s\">¡Véalo!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola,<br><br> sólo queremos informarle que %s ha compartido <strong>%s</strong> con usted. <br><a href=\"%s\">¡Véalo!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Favor de usar el actualizador de línea de comando porque usted tiene una instancia grande. "
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/eu.js b/core/l10n/eu.js
index c19aabe6cdf..211dc333c4e 100644
--- a/core/l10n/eu.js
+++ b/core/l10n/eu.js
@@ -251,7 +251,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Instalazio handien itxarote-denbora saihesteko, ondoko komandoa exekuta dezakezu instalazio direktoriotik:",
"Detailed logs" : "Log xehea",
"Update needed" : "Eguneratzea beharrezkoa da",
- "Please use the command line updater because you have a big instance." : "Mesedez, erabili komando lerroa eguneratzeko, instantzia handi duzulako.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Laguntza lortzeko, ikusi <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentazioa</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Instantzia hau %s mantenu-moduan dago, honek denbora tarte bat iraun dezake.",
"This page will refresh itself when the %s instance is available again." : "Orri honek bere burua eguneratuko du %s instantzia berriz prest dagoenean.",
@@ -287,6 +286,7 @@ OC.L10N.register(
"The share will expire on %s." : "Elkarbanaketa %s-n iraungiko da.",
"Cheers!" : "Ongi izan!",
"Use the following link to reset your password: {link}" : "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s",
+ "Please use the command line updater because you have a big instance." : "Mesedez, erabili komando lerroa eguneratzeko, instantzia handi duzulako."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/eu.json b/core/l10n/eu.json
index e89b1f8eb68..4f29af53eb2 100644
--- a/core/l10n/eu.json
+++ b/core/l10n/eu.json
@@ -249,7 +249,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Instalazio handien itxarote-denbora saihesteko, ondoko komandoa exekuta dezakezu instalazio direktoriotik:",
"Detailed logs" : "Log xehea",
"Update needed" : "Eguneratzea beharrezkoa da",
- "Please use the command line updater because you have a big instance." : "Mesedez, erabili komando lerroa eguneratzeko, instantzia handi duzulako.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Laguntza lortzeko, ikusi <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentazioa</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Instantzia hau %s mantenu-moduan dago, honek denbora tarte bat iraun dezake.",
"This page will refresh itself when the %s instance is available again." : "Orri honek bere burua eguneratuko du %s instantzia berriz prest dagoenean.",
@@ -285,6 +284,7 @@
"The share will expire on %s." : "Elkarbanaketa %s-n iraungiko da.",
"Cheers!" : "Ongi izan!",
"Use the following link to reset your password: {link}" : "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s",
+ "Please use the command line updater because you have a big instance." : "Mesedez, erabili komando lerroa eguneratzeko, instantzia handi duzulako."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/fi.js b/core/l10n/fi.js
index 5bab688fc59..061ade60bc6 100644
--- a/core/l10n/fi.js
+++ b/core/l10n/fi.js
@@ -287,7 +287,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Välttääksesi aikakatkaisuja suurikokoisten asennusten kanssa, voit suorittaa vaihtoehtoisesti seuraavan komennon asennushakemistossa:",
"Detailed logs" : "Yksityiskohtainen loki",
"Update needed" : "Päivitys vaaditaan",
- "Please use the command line updater because you have a big instance." : "Käytä komentorivipäivitintä, koska käyttämäsi Nextcloud on sen verran suuri.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Apua saat <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentaatiosta</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Tämä %s-instanssi on parhaillaan huoltotilassa, huollossa saattaa kestää hetki.",
"This page will refresh itself when the %s instance is available again." : "Tämä sivu päivittää itsensä, kun %s on jälleen käytettävissä.",
@@ -323,6 +322,7 @@ OC.L10N.register(
"The share will expire on %s." : "Jakaminen päättyy %s.",
"Cheers!" : "Kiitos!",
"Use the following link to reset your password: {link}" : "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hei,<br><br>%s jakoi kanssasi kohteen <strong>%s</strong>.<br><a href=\"%s\">Tutustu siihen!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hei,<br><br>%s jakoi kanssasi kohteen <strong>%s</strong>.<br><a href=\"%s\">Tutustu siihen!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Käytä komentorivipäivitintä, koska käyttämäsi Nextcloud on sen verran suuri."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/fi.json b/core/l10n/fi.json
index 80db8e783f7..8f9cd01db21 100644
--- a/core/l10n/fi.json
+++ b/core/l10n/fi.json
@@ -285,7 +285,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Välttääksesi aikakatkaisuja suurikokoisten asennusten kanssa, voit suorittaa vaihtoehtoisesti seuraavan komennon asennushakemistossa:",
"Detailed logs" : "Yksityiskohtainen loki",
"Update needed" : "Päivitys vaaditaan",
- "Please use the command line updater because you have a big instance." : "Käytä komentorivipäivitintä, koska käyttämäsi Nextcloud on sen verran suuri.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Apua saat <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentaatiosta</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Tämä %s-instanssi on parhaillaan huoltotilassa, huollossa saattaa kestää hetki.",
"This page will refresh itself when the %s instance is available again." : "Tämä sivu päivittää itsensä, kun %s on jälleen käytettävissä.",
@@ -321,6 +320,7 @@
"The share will expire on %s." : "Jakaminen päättyy %s.",
"Cheers!" : "Kiitos!",
"Use the following link to reset your password: {link}" : "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hei,<br><br>%s jakoi kanssasi kohteen <strong>%s</strong>.<br><a href=\"%s\">Tutustu siihen!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hei,<br><br>%s jakoi kanssasi kohteen <strong>%s</strong>.<br><a href=\"%s\">Tutustu siihen!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Käytä komentorivipäivitintä, koska käyttämäsi Nextcloud on sen verran suuri."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/fr.js b/core/l10n/fr.js
index 049b35fcb2a..2518cbe1888 100644
--- a/core/l10n/fr.js
+++ b/core/l10n/fr.js
@@ -16,6 +16,7 @@ OC.L10N.register(
"Crop is not square" : "Le recadrage n'est pas carré",
"State token does not match" : "Les jetons de statut ne correspondent pas",
"Auth flow can only be started unauthenticated." : "Le processus d'authentification peut seulement démarrer en mode \"non connectée\".",
+ "Password reset is disabled" : "La réinitialisation du mot de passe est désactivée",
"Couldn't reset password because the token is invalid" : "Impossible de réinitialiser le mot de passe car le jeton n'est pas valable",
"Couldn't reset password because the token is expired" : "Impossible de réinitialiser le mot de passe car le jeton a expiré",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Impossible d'envoyer le courriel de réinitialisation car il n'y a aucune adresse de courriel pour cet utilisateur. Veuillez contacter votre administrateur.",
@@ -40,6 +41,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Vérification de la possibilité de mettre à jour le schéma de la base de données (cela peut prendre un certain temps selon la taille de la base de données)",
"Checked database schema update" : "Mise à jour du schéma de la base de données vérifiée",
"Checking updates of apps" : "Recherche de mises à jour d'applications",
+ "Checking for update of app \"%s\" in appstore" : "Vérification de la présence d'une mise à jour pour l'application \"%s\" dans l'appstore",
+ "Update app \"%s\" from appstore" : "Mise à jour de l'application \"%s\" depuis l'appstore",
+ "Checked for update of app \"%s\" in appstore" : "Présence de mise à jour vérifiée pour l'application \"%s\" dans l'appstore",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Vérification de la possibilité de mettre à jour le schéma de la base de données pour %s (cela peut prendre un certain temps selon la taille de la base de données)",
"Checked database schema update for apps" : "Mise à jour du schéma de la base de données pour les applications vérifiée",
"Updated \"%s\" to %s" : "Mise à jour de « %s » vers %s",
@@ -298,7 +302,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Afin d'éviter les timeouts avec les installations de volume conséquent, vous pouvez exécuter la commande suivante depuis le répertoire d'installation :",
"Detailed logs" : "Journaux détaillés",
"Update needed" : "Mise à jour nécessaire",
- "Please use the command line updater because you have a big instance." : "Veuillez utiliser la mise à jour en ligne de commande car votre instance est volumineuse.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Veuillez utiliser la mise à jour en ligne de commande car votre instance est volumineuse avec plus de 50 utilisateurs.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Pour obtenir de l'aide, lisez la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Cette instance de %s est en cours de maintenance, cela peut prendre du temps.",
"This page will refresh itself when the %s instance is available again." : "Cette page se rafraîchira d'elle-même lorsque l'instance %s sera à nouveau disponible.",
@@ -334,6 +338,7 @@ OC.L10N.register(
"The share will expire on %s." : "Le partage expirera le %s.",
"Cheers!" : "À bientôt !",
"Use the following link to reset your password: {link}" : "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Cliquez ici pour y accéder !</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Cliquez ici pour y accéder !</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Veuillez utiliser la mise à jour en ligne de commande car votre instance est volumineuse."
},
"nplurals=2; plural=(n > 1);");
diff --git a/core/l10n/fr.json b/core/l10n/fr.json
index 2861b081d80..420dfe2f2dd 100644
--- a/core/l10n/fr.json
+++ b/core/l10n/fr.json
@@ -14,6 +14,7 @@
"Crop is not square" : "Le recadrage n'est pas carré",
"State token does not match" : "Les jetons de statut ne correspondent pas",
"Auth flow can only be started unauthenticated." : "Le processus d'authentification peut seulement démarrer en mode \"non connectée\".",
+ "Password reset is disabled" : "La réinitialisation du mot de passe est désactivée",
"Couldn't reset password because the token is invalid" : "Impossible de réinitialiser le mot de passe car le jeton n'est pas valable",
"Couldn't reset password because the token is expired" : "Impossible de réinitialiser le mot de passe car le jeton a expiré",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Impossible d'envoyer le courriel de réinitialisation car il n'y a aucune adresse de courriel pour cet utilisateur. Veuillez contacter votre administrateur.",
@@ -38,6 +39,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Vérification de la possibilité de mettre à jour le schéma de la base de données (cela peut prendre un certain temps selon la taille de la base de données)",
"Checked database schema update" : "Mise à jour du schéma de la base de données vérifiée",
"Checking updates of apps" : "Recherche de mises à jour d'applications",
+ "Checking for update of app \"%s\" in appstore" : "Vérification de la présence d'une mise à jour pour l'application \"%s\" dans l'appstore",
+ "Update app \"%s\" from appstore" : "Mise à jour de l'application \"%s\" depuis l'appstore",
+ "Checked for update of app \"%s\" in appstore" : "Présence de mise à jour vérifiée pour l'application \"%s\" dans l'appstore",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Vérification de la possibilité de mettre à jour le schéma de la base de données pour %s (cela peut prendre un certain temps selon la taille de la base de données)",
"Checked database schema update for apps" : "Mise à jour du schéma de la base de données pour les applications vérifiée",
"Updated \"%s\" to %s" : "Mise à jour de « %s » vers %s",
@@ -296,7 +300,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Afin d'éviter les timeouts avec les installations de volume conséquent, vous pouvez exécuter la commande suivante depuis le répertoire d'installation :",
"Detailed logs" : "Journaux détaillés",
"Update needed" : "Mise à jour nécessaire",
- "Please use the command line updater because you have a big instance." : "Veuillez utiliser la mise à jour en ligne de commande car votre instance est volumineuse.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Veuillez utiliser la mise à jour en ligne de commande car votre instance est volumineuse avec plus de 50 utilisateurs.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Pour obtenir de l'aide, lisez la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Cette instance de %s est en cours de maintenance, cela peut prendre du temps.",
"This page will refresh itself when the %s instance is available again." : "Cette page se rafraîchira d'elle-même lorsque l'instance %s sera à nouveau disponible.",
@@ -332,6 +336,7 @@
"The share will expire on %s." : "Le partage expirera le %s.",
"Cheers!" : "À bientôt !",
"Use the following link to reset your password: {link}" : "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Cliquez ici pour y accéder !</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Cliquez ici pour y accéder !</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Veuillez utiliser la mise à jour en ligne de commande car votre instance est volumineuse."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/core/l10n/hu.js b/core/l10n/hu.js
index 097834ea472..f11a906e6e9 100644
--- a/core/l10n/hu.js
+++ b/core/l10n/hu.js
@@ -260,7 +260,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Nagyobb telepítések esetén úgy kerülhetők el az időtúllépések, hogy inkább a következő parancsot adja ki a telepítési alkönyvtárban:",
"Detailed logs" : "Részletezett naplók",
"Update needed" : "Frissítés szükséges",
- "Please use the command line updater because you have a big instance." : "Kérjük, a frissítéshez a parancssort használja, mert nagyobb frissítést készül telepíteni.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Segítségért keresse fel a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentációt</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Ez a %s folyamat éppen karbantartó üzemmódban van, ami eltarthat egy darabig.",
"This page will refresh itself when the %s instance is available again." : "Ez az oldal frissíteni fogja magát amint a(z) %s példány ismét elérhető.",
@@ -296,6 +295,7 @@ OC.L10N.register(
"The share will expire on %s." : "A megosztás lejár ekkor: %s.",
"Cheers!" : "Üdv.",
"Use the following link to reset your password: {link}" : "Használja ezt a hivatkozást a jelszó ismételt beállításához: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Üdv!<br /><br />\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: <strong>%s</strong><br />\n<a href=\"%s\">Itt nézheted meg.</a><br /><br />"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Üdv!<br /><br />\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: <strong>%s</strong><br />\n<a href=\"%s\">Itt nézheted meg.</a><br /><br />",
+ "Please use the command line updater because you have a big instance." : "Kérjük, a frissítéshez a parancssort használja, mert nagyobb frissítést készül telepíteni."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/hu.json b/core/l10n/hu.json
index 6462720387e..57518df8819 100644
--- a/core/l10n/hu.json
+++ b/core/l10n/hu.json
@@ -258,7 +258,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Nagyobb telepítések esetén úgy kerülhetők el az időtúllépések, hogy inkább a következő parancsot adja ki a telepítési alkönyvtárban:",
"Detailed logs" : "Részletezett naplók",
"Update needed" : "Frissítés szükséges",
- "Please use the command line updater because you have a big instance." : "Kérjük, a frissítéshez a parancssort használja, mert nagyobb frissítést készül telepíteni.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Segítségért keresse fel a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentációt</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Ez a %s folyamat éppen karbantartó üzemmódban van, ami eltarthat egy darabig.",
"This page will refresh itself when the %s instance is available again." : "Ez az oldal frissíteni fogja magát amint a(z) %s példány ismét elérhető.",
@@ -294,6 +293,7 @@
"The share will expire on %s." : "A megosztás lejár ekkor: %s.",
"Cheers!" : "Üdv.",
"Use the following link to reset your password: {link}" : "Használja ezt a hivatkozást a jelszó ismételt beállításához: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Üdv!<br /><br />\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: <strong>%s</strong><br />\n<a href=\"%s\">Itt nézheted meg.</a><br /><br />"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Üdv!<br /><br />\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: <strong>%s</strong><br />\n<a href=\"%s\">Itt nézheted meg.</a><br /><br />",
+ "Please use the command line updater because you have a big instance." : "Kérjük, a frissítéshez a parancssort használja, mert nagyobb frissítést készül telepíteni."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/id.js b/core/l10n/id.js
index fb4852db6f9..b60324c4cc2 100644
--- a/core/l10n/id.js
+++ b/core/l10n/id.js
@@ -254,7 +254,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Untuk menghindari waktu habis dengan instalasi yang lebih besar, Anda bisa menjalankan perintah berikut dari direktori instalasi Anda:",
"Detailed logs" : "Log detail",
"Update needed" : "Pembaruan dibutuhkan",
- "Please use the command line updater because you have a big instance." : "Gunakan pembaruan command-line karena Anda mempunyai instansi yang besar.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Untuk bantuan, lihat <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentasi</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Instansi %s ini sedang dalam modus pemeliharaan, mungkin memerlukan beberapa saat.",
"This page will refresh itself when the %s instance is available again." : "Halaman ini akan disegarkan dengan sendiri saat instansi %s tersebut tersedia kembali.",
@@ -290,6 +289,7 @@ OC.L10N.register(
"The share will expire on %s." : "Pembagian akan berakhir pada %s.",
"Cheers!" : "Horee!",
"Use the following link to reset your password: {link}" : "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hai,<br><br>hanya memberi tahu jika %s membagikan <strong>%s</strong> dengan Anda.<br><a href=\"%s\">Lihat!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hai,<br><br>hanya memberi tahu jika %s membagikan <strong>%s</strong> dengan Anda.<br><a href=\"%s\">Lihat!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Gunakan pembaruan command-line karena Anda mempunyai instansi yang besar."
},
"nplurals=1; plural=0;");
diff --git a/core/l10n/id.json b/core/l10n/id.json
index 8639c6b818d..bedb8381410 100644
--- a/core/l10n/id.json
+++ b/core/l10n/id.json
@@ -252,7 +252,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Untuk menghindari waktu habis dengan instalasi yang lebih besar, Anda bisa menjalankan perintah berikut dari direktori instalasi Anda:",
"Detailed logs" : "Log detail",
"Update needed" : "Pembaruan dibutuhkan",
- "Please use the command line updater because you have a big instance." : "Gunakan pembaruan command-line karena Anda mempunyai instansi yang besar.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Untuk bantuan, lihat <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentasi</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Instansi %s ini sedang dalam modus pemeliharaan, mungkin memerlukan beberapa saat.",
"This page will refresh itself when the %s instance is available again." : "Halaman ini akan disegarkan dengan sendiri saat instansi %s tersebut tersedia kembali.",
@@ -288,6 +287,7 @@
"The share will expire on %s." : "Pembagian akan berakhir pada %s.",
"Cheers!" : "Horee!",
"Use the following link to reset your password: {link}" : "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hai,<br><br>hanya memberi tahu jika %s membagikan <strong>%s</strong> dengan Anda.<br><a href=\"%s\">Lihat!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hai,<br><br>hanya memberi tahu jika %s membagikan <strong>%s</strong> dengan Anda.<br><a href=\"%s\">Lihat!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Gunakan pembaruan command-line karena Anda mempunyai instansi yang besar."
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/core/l10n/is.js b/core/l10n/is.js
index 0ed52aa0d0b..3bfc699a493 100644
--- a/core/l10n/is.js
+++ b/core/l10n/is.js
@@ -15,10 +15,13 @@ OC.L10N.register(
"No valid crop data provided" : "Enginn gild gögn um utanskurð gefin",
"Crop is not square" : "Utanskurður er ekki ferningslaga",
"State token does not match" : "Stöðuteikn samsvarar ekki",
+ "Password reset is disabled" : "Endurstilling lykilorðs er óvirk",
"Couldn't reset password because the token is invalid" : "Gat ekki endurstillt lykilorðið vegna þess að teiknið er ógilt",
"Couldn't reset password because the token is expired" : "Gat ekki endurstillt lykilorðið vegna þess að teiknið er útrunnið",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Gat ekki sent endurstillingu í tölvupósti því það er ekkert gilt tölvupóstfang fyrir þennan notanda. Hafðu samband við kerfisstjóra.",
"Password reset" : "Endurstilling lykilorðs",
+ "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Smelltu á eftirfarandi hnapp til að endurstilla lykilorðið þitt. Ef þú hefur ekki beðið um endurstillingu lykilorðs, skaltu hunsa þennan tölvupóst.",
+ "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Smelltu á eftirfarandi tengil til að endurstilla lykilorðið þitt. Ef þú hefur ekki beðið um endurstillingu lykilorðs, skaltu hunsa þennan tölvupóst.",
"Reset your password" : "Endurstilltu lykilorðið þitt",
"%s password reset" : "%s lykilorð endurstillt",
"Couldn't send reset email. Please contact your administrator." : "Gat ekki sent endurstillingu í tölvupósti. Hafðu samband við kerfisstjóra.",
@@ -37,6 +40,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Athuga hvort hægt sé að uppfæra gagnagrunnsskema (þetta getur tekið langan tíma ef gagnagrunnurinn er mjög stór)",
"Checked database schema update" : "Athugaði uppfærslu á gagnagrunnsskema.",
"Checking updates of apps" : "Athuga með uppfærslur á öppum",
+ "Checking for update of app \"%s\" in appstore" : "Athuga með uppfærslur á \"%s\"-forriti í hugbúnaðarsafni",
+ "Update app \"%s\" from appstore" : "Uppfæra \"%s\" úr hugbúnaðarsafni",
+ "Checked for update of app \"%s\" in appstore" : "Athugaði með uppfærslur á \"%s\"-forriti í hugbúnaðarsafni",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Athuga hvort hægt sé að uppfæra gagnagrunnsskema fyrir %s (þetta getur tekið langan tíma ef gagnagrunnurinn er mjög stór)",
"Checked database schema update for apps" : "Athugaði uppfærslu á gagnagrunnsskema fyrir öpp",
"Updated \"%s\" to %s" : "Uppfærði \"%s\" í %s",
@@ -55,6 +61,7 @@ OC.L10N.register(
"Looking for {term} …" : "Leita að {term} …",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Það komu upp vandamál með athugun á áreiðanleika kóða. Nánari upplýsingar…</a>",
"No action available" : "Engin aðgerð tiltæk",
+ "Error fetching contact actions" : "Villa við að sækja aðgerðir tengiliða",
"Settings" : "Stillingar",
"Connection to server lost" : "Tenging við miðlara rofnaði",
"_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Vandamál við að hlaða inn síðu, endurhleð eftir %n sekúndu","Vandamál við að hlaða inn síðu, endurhleð eftir %n sekúndur"],
@@ -135,6 +142,7 @@ OC.L10N.register(
"Email link to person" : "Senda veftengil í tölvupósti til notanda",
"Send" : "Senda",
"Allow upload and editing" : "Leyfa innsendingu og breytingar",
+ "Read only" : "Skrifvarið",
"Secure drop (upload only)" : "Örugg slepping skráa (einungis innsending)",
"Shared with you and the group {group} by {owner}" : "Deilt með þér og hópnum {group} af {owner}",
"Shared with you by {owner}" : "Deilt með þér af {owner}",
@@ -164,6 +172,9 @@ OC.L10N.register(
"{sharee} (email)" : "{sharee} (tölvupóstur)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Deila",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Deildu með öðru fólki með því að setja inn notanda, hóp, skýjasambandsauðkenni eða tölvupóstfang.",
+ "Share with other people by entering a user or group or a federated cloud ID." : "Deildu með öðru fólki með því að setja inn notanda, hóp eða skýjasambandsauðkenni.",
+ "Share with other people by entering a user or group or an email address." : "Deildu með öðru fólki með því að setja inn notanda, hóp eða tölvupóstfang.",
"Name or email address..." : "Nafn eða tölvupóstfang...",
"Name or federated cloud ID..." : "Nafn eða skýjasambandsauðkenni (Federated Cloud ID)...",
"Name, federated cloud ID or email address..." : "Nafn, skýjasambandsauðkenni eða tölvupóstfang...",
@@ -290,7 +301,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Til að forðast að falla á tímamörkum með stærri uppsetningar, getur þú í staðinn keyrt eftirfarandi skipun úr uppsetningarmöppunni:",
"Detailed logs" : "Ítarlegir annálar",
"Update needed" : "Þarfnast uppfærslu",
- "Please use the command line updater because you have a big instance." : "Endilega notaðu uppfærslutólið af skipanalínu, því þú ert með mjög stóra uppsetningu.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Endilega notaðu uppfærslutólið af skipanalínu, því þú ert með mjög stóra uppsetningu með fleiri en 50 notendum.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Til að fá hjálp er best að skoða fyrst <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">hjálparskjölin</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Þessi %s er nú í viðhaldsham, sem getur tekið smá stund.",
"This page will refresh itself when the %s instance is available again." : "Þessi síða mun uppfæra sig þegar %s er í boði á ný.",
@@ -326,6 +337,7 @@ OC.L10N.register(
"The share will expire on %s." : "Gildistími sameignar rennur út %s.",
"Cheers!" : "Skál!",
"Use the following link to reset your password: {link}" : "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hæ þú,<br><br>bara að láta þig vita að %s deildi <strong>%s</strong> með þér.<br><a href=\"%s\">Skoðaðu það!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hæ þú,<br><br>bara að láta þig vita að %s deildi <strong>%s</strong> með þér.<br><a href=\"%s\">Skoðaðu það!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Endilega notaðu uppfærslutólið af skipanalínu, því þú ert með mjög stóra uppsetningu."
},
"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);");
diff --git a/core/l10n/is.json b/core/l10n/is.json
index c84bed42b8a..8a625f6a7b8 100644
--- a/core/l10n/is.json
+++ b/core/l10n/is.json
@@ -13,10 +13,13 @@
"No valid crop data provided" : "Enginn gild gögn um utanskurð gefin",
"Crop is not square" : "Utanskurður er ekki ferningslaga",
"State token does not match" : "Stöðuteikn samsvarar ekki",
+ "Password reset is disabled" : "Endurstilling lykilorðs er óvirk",
"Couldn't reset password because the token is invalid" : "Gat ekki endurstillt lykilorðið vegna þess að teiknið er ógilt",
"Couldn't reset password because the token is expired" : "Gat ekki endurstillt lykilorðið vegna þess að teiknið er útrunnið",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Gat ekki sent endurstillingu í tölvupósti því það er ekkert gilt tölvupóstfang fyrir þennan notanda. Hafðu samband við kerfisstjóra.",
"Password reset" : "Endurstilling lykilorðs",
+ "Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Smelltu á eftirfarandi hnapp til að endurstilla lykilorðið þitt. Ef þú hefur ekki beðið um endurstillingu lykilorðs, skaltu hunsa þennan tölvupóst.",
+ "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Smelltu á eftirfarandi tengil til að endurstilla lykilorðið þitt. Ef þú hefur ekki beðið um endurstillingu lykilorðs, skaltu hunsa þennan tölvupóst.",
"Reset your password" : "Endurstilltu lykilorðið þitt",
"%s password reset" : "%s lykilorð endurstillt",
"Couldn't send reset email. Please contact your administrator." : "Gat ekki sent endurstillingu í tölvupósti. Hafðu samband við kerfisstjóra.",
@@ -35,6 +38,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Athuga hvort hægt sé að uppfæra gagnagrunnsskema (þetta getur tekið langan tíma ef gagnagrunnurinn er mjög stór)",
"Checked database schema update" : "Athugaði uppfærslu á gagnagrunnsskema.",
"Checking updates of apps" : "Athuga með uppfærslur á öppum",
+ "Checking for update of app \"%s\" in appstore" : "Athuga með uppfærslur á \"%s\"-forriti í hugbúnaðarsafni",
+ "Update app \"%s\" from appstore" : "Uppfæra \"%s\" úr hugbúnaðarsafni",
+ "Checked for update of app \"%s\" in appstore" : "Athugaði með uppfærslur á \"%s\"-forriti í hugbúnaðarsafni",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Athuga hvort hægt sé að uppfæra gagnagrunnsskema fyrir %s (þetta getur tekið langan tíma ef gagnagrunnurinn er mjög stór)",
"Checked database schema update for apps" : "Athugaði uppfærslu á gagnagrunnsskema fyrir öpp",
"Updated \"%s\" to %s" : "Uppfærði \"%s\" í %s",
@@ -53,6 +59,7 @@
"Looking for {term} …" : "Leita að {term} …",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Það komu upp vandamál með athugun á áreiðanleika kóða. Nánari upplýsingar…</a>",
"No action available" : "Engin aðgerð tiltæk",
+ "Error fetching contact actions" : "Villa við að sækja aðgerðir tengiliða",
"Settings" : "Stillingar",
"Connection to server lost" : "Tenging við miðlara rofnaði",
"_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Vandamál við að hlaða inn síðu, endurhleð eftir %n sekúndu","Vandamál við að hlaða inn síðu, endurhleð eftir %n sekúndur"],
@@ -133,6 +140,7 @@
"Email link to person" : "Senda veftengil í tölvupósti til notanda",
"Send" : "Senda",
"Allow upload and editing" : "Leyfa innsendingu og breytingar",
+ "Read only" : "Skrifvarið",
"Secure drop (upload only)" : "Örugg slepping skráa (einungis innsending)",
"Shared with you and the group {group} by {owner}" : "Deilt með þér og hópnum {group} af {owner}",
"Shared with you by {owner}" : "Deilt með þér af {owner}",
@@ -162,6 +170,9 @@
"{sharee} (email)" : "{sharee} (tölvupóstur)",
"{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})",
"Share" : "Deila",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Deildu með öðru fólki með því að setja inn notanda, hóp, skýjasambandsauðkenni eða tölvupóstfang.",
+ "Share with other people by entering a user or group or a federated cloud ID." : "Deildu með öðru fólki með því að setja inn notanda, hóp eða skýjasambandsauðkenni.",
+ "Share with other people by entering a user or group or an email address." : "Deildu með öðru fólki með því að setja inn notanda, hóp eða tölvupóstfang.",
"Name or email address..." : "Nafn eða tölvupóstfang...",
"Name or federated cloud ID..." : "Nafn eða skýjasambandsauðkenni (Federated Cloud ID)...",
"Name, federated cloud ID or email address..." : "Nafn, skýjasambandsauðkenni eða tölvupóstfang...",
@@ -288,7 +299,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Til að forðast að falla á tímamörkum með stærri uppsetningar, getur þú í staðinn keyrt eftirfarandi skipun úr uppsetningarmöppunni:",
"Detailed logs" : "Ítarlegir annálar",
"Update needed" : "Þarfnast uppfærslu",
- "Please use the command line updater because you have a big instance." : "Endilega notaðu uppfærslutólið af skipanalínu, því þú ert með mjög stóra uppsetningu.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Endilega notaðu uppfærslutólið af skipanalínu, því þú ert með mjög stóra uppsetningu með fleiri en 50 notendum.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Til að fá hjálp er best að skoða fyrst <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">hjálparskjölin</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Þessi %s er nú í viðhaldsham, sem getur tekið smá stund.",
"This page will refresh itself when the %s instance is available again." : "Þessi síða mun uppfæra sig þegar %s er í boði á ný.",
@@ -324,6 +335,7 @@
"The share will expire on %s." : "Gildistími sameignar rennur út %s.",
"Cheers!" : "Skál!",
"Use the following link to reset your password: {link}" : "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hæ þú,<br><br>bara að láta þig vita að %s deildi <strong>%s</strong> með þér.<br><a href=\"%s\">Skoðaðu það!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hæ þú,<br><br>bara að láta þig vita að %s deildi <strong>%s</strong> með þér.<br><a href=\"%s\">Skoðaðu það!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Endilega notaðu uppfærslutólið af skipanalínu, því þú ert með mjög stóra uppsetningu."
},"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"
} \ No newline at end of file
diff --git a/core/l10n/it.js b/core/l10n/it.js
index baf6fc6c3bc..e2c3d6102fd 100644
--- a/core/l10n/it.js
+++ b/core/l10n/it.js
@@ -272,7 +272,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Per evitare timeout con installazioni di grandi dimensioni, puoi eseguire il comando che segue dalla cartella di installazione:",
"Detailed logs" : "Log dettagliati",
"Update needed" : "Aggiornamento necessario",
- "Please use the command line updater because you have a big instance." : "Utilizza lo strumento da riga di comando per la grandezza della tua istanza.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Per la guida, vedi la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentazione</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Questa istanza di %s è attualmente in manutenzione, potrebbe richiedere del tempo.",
"This page will refresh itself when the %s instance is available again." : "Questa pagina si aggiornerà quando l'istanza di %s sarà nuovamente disponibile.",
@@ -308,6 +307,7 @@ OC.L10N.register(
"The share will expire on %s." : "La condivisione scadrà il %s.",
"Cheers!" : "Saluti!",
"Use the following link to reset your password: {link}" : "Usa il collegamento seguente per ripristinare la password: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ciao,<br><br>volevo informarti che %s ha condiviso <strong>%s</strong> con te.<br><a href=\"%s\">Guarda!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ciao,<br><br>volevo informarti che %s ha condiviso <strong>%s</strong> con te.<br><a href=\"%s\">Guarda!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Utilizza lo strumento da riga di comando per la grandezza della tua istanza."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/it.json b/core/l10n/it.json
index 8f44d1c2f1e..0627a15af2a 100644
--- a/core/l10n/it.json
+++ b/core/l10n/it.json
@@ -270,7 +270,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Per evitare timeout con installazioni di grandi dimensioni, puoi eseguire il comando che segue dalla cartella di installazione:",
"Detailed logs" : "Log dettagliati",
"Update needed" : "Aggiornamento necessario",
- "Please use the command line updater because you have a big instance." : "Utilizza lo strumento da riga di comando per la grandezza della tua istanza.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Per la guida, vedi la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentazione</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Questa istanza di %s è attualmente in manutenzione, potrebbe richiedere del tempo.",
"This page will refresh itself when the %s instance is available again." : "Questa pagina si aggiornerà quando l'istanza di %s sarà nuovamente disponibile.",
@@ -306,6 +305,7 @@
"The share will expire on %s." : "La condivisione scadrà il %s.",
"Cheers!" : "Saluti!",
"Use the following link to reset your password: {link}" : "Usa il collegamento seguente per ripristinare la password: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ciao,<br><br>volevo informarti che %s ha condiviso <strong>%s</strong> con te.<br><a href=\"%s\">Guarda!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ciao,<br><br>volevo informarti che %s ha condiviso <strong>%s</strong> con te.<br><a href=\"%s\">Guarda!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Utilizza lo strumento da riga di comando per la grandezza della tua istanza."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/ja.js b/core/l10n/ja.js
index 6bc2f471a4a..16c47f06648 100644
--- a/core/l10n/ja.js
+++ b/core/l10n/ja.js
@@ -274,7 +274,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "大規模なサイトの場合、ブラウザーがタイムアウトする可能性があるため、インストールディレクトリで以下のコマンドを実行することもできます。",
"Detailed logs" : "詳細ログ",
"Update needed" : "更新が必要です",
- "Please use the command line updater because you have a big instance." : "データ量が大きいため、コマンドラインでの更新を利用してください。",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "不明な場合、<a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">ドキュメント</a>を参照してください。",
"This %s instance is currently in maintenance mode, which may take a while." : "このサーバー %s は現在メンテナンスモードです。しばらくお待ちください。",
"This page will refresh itself when the %s instance is available again." : "この画面は、サーバー %s の再起動後に自動的に更新されます。",
@@ -310,6 +309,7 @@ OC.L10N.register(
"The share will expire on %s." : "共有は %s で有効期限が切れます。",
"Cheers!" : "それでは!",
"Use the following link to reset your password: {link}" : "パスワードをリセットするには次のリンクをクリックしてください: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "データ量が大きいため、コマンドラインでの更新を利用してください。"
},
"nplurals=1; plural=0;");
diff --git a/core/l10n/ja.json b/core/l10n/ja.json
index 192ea81c69d..62348edbad0 100644
--- a/core/l10n/ja.json
+++ b/core/l10n/ja.json
@@ -272,7 +272,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "大規模なサイトの場合、ブラウザーがタイムアウトする可能性があるため、インストールディレクトリで以下のコマンドを実行することもできます。",
"Detailed logs" : "詳細ログ",
"Update needed" : "更新が必要です",
- "Please use the command line updater because you have a big instance." : "データ量が大きいため、コマンドラインでの更新を利用してください。",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "不明な場合、<a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">ドキュメント</a>を参照してください。",
"This %s instance is currently in maintenance mode, which may take a while." : "このサーバー %s は現在メンテナンスモードです。しばらくお待ちください。",
"This page will refresh itself when the %s instance is available again." : "この画面は、サーバー %s の再起動後に自動的に更新されます。",
@@ -308,6 +307,7 @@
"The share will expire on %s." : "共有は %s で有効期限が切れます。",
"Cheers!" : "それでは!",
"Use the following link to reset your password: {link}" : "パスワードをリセットするには次のリンクをクリックしてください: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "データ量が大きいため、コマンドラインでの更新を利用してください。"
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/core/l10n/ko.js b/core/l10n/ko.js
index f1af50c0c5a..49a215f639c 100644
--- a/core/l10n/ko.js
+++ b/core/l10n/ko.js
@@ -297,7 +297,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "큰 파일을 설치하는 경우 시간이 초과될 수 있으므로, 설치 디렉터리에서 다음 명령을 실행하셔도 됩니다:",
"Detailed logs" : "자세한 로그",
"Update needed" : "업데이트 필요",
- "Please use the command line updater because you have a big instance." : "현재 인스턴스 크기가 크기 때문에 명령행 업데이터를 사용하십시오.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "도움이 필요한 경우 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">문서</a>를 참조하십시오.",
"This %s instance is currently in maintenance mode, which may take a while." : "이 %s 인스턴스는 현재 점검 모드입니다. 시간이 걸릴 수도 있습니다.",
"This page will refresh itself when the %s instance is available again." : "%s 인스턴스를 다시 사용할 수 있으면 자동으로 새로 고칩니다.",
@@ -333,6 +332,7 @@ OC.L10N.register(
"The share will expire on %s." : "이 공유는 %s에 만료됩니다.",
"Cheers!" : "감사합니다!",
"Use the following link to reset your password: {link}" : "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "안녕하세요,<br><br>%s 님이 <strong>%s</strong>을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">보러 가기!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "안녕하세요,<br><br>%s 님이 <strong>%s</strong>을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">보러 가기!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "현재 인스턴스 크기가 크기 때문에 명령행 업데이터를 사용하십시오."
},
"nplurals=1; plural=0;");
diff --git a/core/l10n/ko.json b/core/l10n/ko.json
index 78917f8a9cc..606d5cbb55d 100644
--- a/core/l10n/ko.json
+++ b/core/l10n/ko.json
@@ -295,7 +295,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "큰 파일을 설치하는 경우 시간이 초과될 수 있으므로, 설치 디렉터리에서 다음 명령을 실행하셔도 됩니다:",
"Detailed logs" : "자세한 로그",
"Update needed" : "업데이트 필요",
- "Please use the command line updater because you have a big instance." : "현재 인스턴스 크기가 크기 때문에 명령행 업데이터를 사용하십시오.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "도움이 필요한 경우 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">문서</a>를 참조하십시오.",
"This %s instance is currently in maintenance mode, which may take a while." : "이 %s 인스턴스는 현재 점검 모드입니다. 시간이 걸릴 수도 있습니다.",
"This page will refresh itself when the %s instance is available again." : "%s 인스턴스를 다시 사용할 수 있으면 자동으로 새로 고칩니다.",
@@ -331,6 +330,7 @@
"The share will expire on %s." : "이 공유는 %s에 만료됩니다.",
"Cheers!" : "감사합니다!",
"Use the following link to reset your password: {link}" : "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "안녕하세요,<br><br>%s 님이 <strong>%s</strong>을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">보러 가기!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "안녕하세요,<br><br>%s 님이 <strong>%s</strong>을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">보러 가기!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "현재 인스턴스 크기가 크기 때문에 명령행 업데이터를 사용하십시오."
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/core/l10n/nb.js b/core/l10n/nb.js
index de8088af803..dfa9d37e346 100644
--- a/core/l10n/nb.js
+++ b/core/l10n/nb.js
@@ -298,7 +298,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "For å unngå tidsavbrudd ved store installasjoner, kan du i stedet kjøre følgende kommando fra installasjonsmappen:",
"Detailed logs" : "Detaljerte logger",
"Update needed" : "Oppdatering er nødvendig",
- "Please use the command line updater because you have a big instance." : "Vennligst oppdater ved hjelp av kommandolinjen ettersom du har en stor installasjon.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "For hjelp, se i <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentasjonen</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Denne %s-instansen er for øyeblikket i vedlikeholdsmodus, noe som kan vare en stund.",
"This page will refresh itself when the %s instance is available again." : "Denne siden vil bli lastet på nytt når %s-instansen er tilgjengelig igjen.",
@@ -334,6 +333,7 @@ OC.L10N.register(
"The share will expire on %s." : "Delingen vil opphøre %s.",
"Cheers!" : "Ha det!",
"Use the following link to reset your password: {link}" : "Bruk følgende lenke for å tilbakestille passordet ditt: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hei,<br><br>Dette er en beskjed om at %s delte <strong>%s</strong> med deg.<br><a href=\"%s\">Vis den!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hei,<br><br>Dette er en beskjed om at %s delte <strong>%s</strong> med deg.<br><a href=\"%s\">Vis den!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Vennligst oppdater ved hjelp av kommandolinjen ettersom du har en stor installasjon."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/nb.json b/core/l10n/nb.json
index b4fba808425..7e5b1e938f3 100644
--- a/core/l10n/nb.json
+++ b/core/l10n/nb.json
@@ -296,7 +296,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "For å unngå tidsavbrudd ved store installasjoner, kan du i stedet kjøre følgende kommando fra installasjonsmappen:",
"Detailed logs" : "Detaljerte logger",
"Update needed" : "Oppdatering er nødvendig",
- "Please use the command line updater because you have a big instance." : "Vennligst oppdater ved hjelp av kommandolinjen ettersom du har en stor installasjon.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "For hjelp, se i <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentasjonen</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Denne %s-instansen er for øyeblikket i vedlikeholdsmodus, noe som kan vare en stund.",
"This page will refresh itself when the %s instance is available again." : "Denne siden vil bli lastet på nytt når %s-instansen er tilgjengelig igjen.",
@@ -332,6 +331,7 @@
"The share will expire on %s." : "Delingen vil opphøre %s.",
"Cheers!" : "Ha det!",
"Use the following link to reset your password: {link}" : "Bruk følgende lenke for å tilbakestille passordet ditt: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hei,<br><br>Dette er en beskjed om at %s delte <strong>%s</strong> med deg.<br><a href=\"%s\">Vis den!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hei,<br><br>Dette er en beskjed om at %s delte <strong>%s</strong> med deg.<br><a href=\"%s\">Vis den!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Vennligst oppdater ved hjelp av kommandolinjen ettersom du har en stor installasjon."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/nl.js b/core/l10n/nl.js
index b181bc9f9e2..70caf186e73 100644
--- a/core/l10n/nl.js
+++ b/core/l10n/nl.js
@@ -40,6 +40,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Controleert of het databaseschema geüpdatet kan worden (dit kan lang duren afhankelijk van de grootte van de de database)",
"Checked database schema update" : "Database schema-update gecontroleerd",
"Checking updates of apps" : "Controleert of er app updates zijn",
+ "Checking for update of app \"%s\" in appstore" : "Controleren of er updates zijn voor de app \"%s\"",
+ "Update app \"%s\" from appstore" : "App \"%s\" updaten in de appstore",
+ "Checked for update of app \"%s\" in appstore" : "Op updates gecontroleerd voor de app \"%s\"",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Controleert of het databaseschema voor %s geüpdatet kan worden (dit kan lang duren afhankelijk van de grootte van de database)",
"Checked database schema update for apps" : "Databaseschema update voor apps gecontroleerd",
"Updated \"%s\" to %s" : "Bijgewerkt \"%s\" naar %s",
@@ -298,7 +301,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Om time-outs tijdens grotere installaties te voorkomen, kun je in plaats hiervan de volgende opdracht geven vanaf je installatiedirectory:",
"Detailed logs" : "Gedetailleerde logs",
"Update needed" : "Update vereist",
- "Please use the command line updater because you have a big instance." : "Gebruik de commandoregel updater, omdat je een grote Nextcloud hebt.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Gebruik alsjeblieft de command line updater omdat je een installatie hebt met meer dan 50 gebruikers.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Voor hulp, lees de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentatie</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Deze %s staat momenteel in de onderhoudsstand, dat kan enige tijd duren.",
"This page will refresh itself when the %s instance is available again." : "Deze pagina wordt ververst als de %s-installatie weer beschikbaar is.",
@@ -334,6 +337,7 @@ OC.L10N.register(
"The share will expire on %s." : "Het gedeelde vervalt op %s.",
"Cheers!" : "Proficiat!",
"Use the following link to reset your password: {link}" : "Gebruik de volgende link om je wachtwoord te resetten: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo daar,<br><br>%s deelde <strong>%s</strong> met je.<br><a href=\"%s\">Bekijk het hier!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo daar,<br><br>%s deelde <strong>%s</strong> met je.<br><a href=\"%s\">Bekijk het hier!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Gebruik de commandoregel updater, omdat je een grote Nextcloud hebt."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/nl.json b/core/l10n/nl.json
index e2631655212..48a003563bc 100644
--- a/core/l10n/nl.json
+++ b/core/l10n/nl.json
@@ -38,6 +38,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Controleert of het databaseschema geüpdatet kan worden (dit kan lang duren afhankelijk van de grootte van de de database)",
"Checked database schema update" : "Database schema-update gecontroleerd",
"Checking updates of apps" : "Controleert of er app updates zijn",
+ "Checking for update of app \"%s\" in appstore" : "Controleren of er updates zijn voor de app \"%s\"",
+ "Update app \"%s\" from appstore" : "App \"%s\" updaten in de appstore",
+ "Checked for update of app \"%s\" in appstore" : "Op updates gecontroleerd voor de app \"%s\"",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Controleert of het databaseschema voor %s geüpdatet kan worden (dit kan lang duren afhankelijk van de grootte van de database)",
"Checked database schema update for apps" : "Databaseschema update voor apps gecontroleerd",
"Updated \"%s\" to %s" : "Bijgewerkt \"%s\" naar %s",
@@ -296,7 +299,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Om time-outs tijdens grotere installaties te voorkomen, kun je in plaats hiervan de volgende opdracht geven vanaf je installatiedirectory:",
"Detailed logs" : "Gedetailleerde logs",
"Update needed" : "Update vereist",
- "Please use the command line updater because you have a big instance." : "Gebruik de commandoregel updater, omdat je een grote Nextcloud hebt.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Gebruik alsjeblieft de command line updater omdat je een installatie hebt met meer dan 50 gebruikers.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Voor hulp, lees de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentatie</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Deze %s staat momenteel in de onderhoudsstand, dat kan enige tijd duren.",
"This page will refresh itself when the %s instance is available again." : "Deze pagina wordt ververst als de %s-installatie weer beschikbaar is.",
@@ -332,6 +335,7 @@
"The share will expire on %s." : "Het gedeelde vervalt op %s.",
"Cheers!" : "Proficiat!",
"Use the following link to reset your password: {link}" : "Gebruik de volgende link om je wachtwoord te resetten: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo daar,<br><br>%s deelde <strong>%s</strong> met je.<br><a href=\"%s\">Bekijk het hier!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo daar,<br><br>%s deelde <strong>%s</strong> met je.<br><a href=\"%s\">Bekijk het hier!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Gebruik de commandoregel updater, omdat je een grote Nextcloud hebt."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/pl.js b/core/l10n/pl.js
index 3d8144f23f2..497666105f9 100644
--- a/core/l10n/pl.js
+++ b/core/l10n/pl.js
@@ -16,6 +16,7 @@ OC.L10N.register(
"Crop is not square" : "Przycięcie nie jest prostokątem",
"State token does not match" : "Token stanu nie pasuje",
"Auth flow can only be started unauthenticated." : "Autoryzacja przepływu może być rozpoczęta tylko niezautoryzowana",
+ "Password reset is disabled" : "Resetowanie hasła jest wyłączone",
"Couldn't reset password because the token is invalid" : "Nie można zresetować hasła, ponieważ token jest niepoprawny",
"Couldn't reset password because the token is expired" : "Nie można zresetować hasła, ponieważ token wygasł",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Nie udało się wysłać ponownego e-maila, ponieważ nie ma adresu e-mail do tego użytkownika. Proszę skontaktować się z administratorem.",
@@ -40,6 +41,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Sprawdzam czy schemat bazy danych może zostać zaktualizowany (to może zająć sporo czasu i zależy od rozmiaru bazy danych)",
"Checked database schema update" : "Sprawdzono aktualizację schematu bazy danych",
"Checking updates of apps" : "Sprawdzam aktualizacje aplikacji",
+ "Checking for update of app \"%s\" in appstore" : "Sprawdzanie aktualizacji dla aplikacji \"%s\" w sklepie aplikacji",
+ "Update app \"%s\" from appstore" : "Zaktualizuj aplikację \"%s\" ze sklepu aplikacji",
+ "Checked for update of app \"%s\" in appstore" : "Sprawdzono aktualizację dla aplikacji \"%s\" w sklepie aplikacji.",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Sprawdzam czy schemat bazy danych %s może zostać zaktualizowany (to może zająć sporo czasu i zależy od rozmiaru bazy danych)",
"Checked database schema update for apps" : "Sprawdzono aktualizację schematu bazy danych dla aplikacji",
"Updated \"%s\" to %s" : "Zaktualizowano \"%s\" do %s",
@@ -298,7 +302,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Aby uniknąć timeout-ów przy większych instalacjach, możesz zamiast tego uruchomić następującą komendę w katalogu Twojej instalacji:",
"Detailed logs" : "Szczegółowe logi",
"Update needed" : "Wymagana aktualizacja",
- "Please use the command line updater because you have a big instance." : "Ze względu na rozmiar Twojej instalacji użyj programu do aktualizacji z linii poleceń.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Proszę uzyć aktualizatora z wiersza poleceń, ponieważ masz dużą instancję z ponad 50-cioma użytkownikami.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Aby uzyskać pomoc, zajrzyj do <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentacji</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Ta instalacja %s działa obecnie w trybie konserwacji. Może to potrwać jakiś czas.",
"This page will refresh itself when the %s instance is available again." : "Strona odświeży się gdy instancja %s będzie ponownie dostępna.",
@@ -334,6 +338,7 @@ OC.L10N.register(
"The share will expire on %s." : "Ten zasób wygaśnie %s",
"Cheers!" : "Pozdrawiam!",
"Use the following link to reset your password: {link}" : "Użyj tego odnośnika by zresetować hasło: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Witam, <br><br>informuję, że %s udostępnianych zasobów <strong>%s</strong> jest z Tobą.<br><a href=\"%s\">Zobacz!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Witam, <br><br>informuję, że %s udostępnianych zasobów <strong>%s</strong> jest z Tobą.<br><a href=\"%s\">Zobacz!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Ze względu na rozmiar Twojej instalacji użyj programu do aktualizacji z linii poleceń."
},
"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);");
diff --git a/core/l10n/pl.json b/core/l10n/pl.json
index 069d335940c..46bd9d31c60 100644
--- a/core/l10n/pl.json
+++ b/core/l10n/pl.json
@@ -14,6 +14,7 @@
"Crop is not square" : "Przycięcie nie jest prostokątem",
"State token does not match" : "Token stanu nie pasuje",
"Auth flow can only be started unauthenticated." : "Autoryzacja przepływu może być rozpoczęta tylko niezautoryzowana",
+ "Password reset is disabled" : "Resetowanie hasła jest wyłączone",
"Couldn't reset password because the token is invalid" : "Nie można zresetować hasła, ponieważ token jest niepoprawny",
"Couldn't reset password because the token is expired" : "Nie można zresetować hasła, ponieważ token wygasł",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Nie udało się wysłać ponownego e-maila, ponieważ nie ma adresu e-mail do tego użytkownika. Proszę skontaktować się z administratorem.",
@@ -38,6 +39,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Sprawdzam czy schemat bazy danych może zostać zaktualizowany (to może zająć sporo czasu i zależy od rozmiaru bazy danych)",
"Checked database schema update" : "Sprawdzono aktualizację schematu bazy danych",
"Checking updates of apps" : "Sprawdzam aktualizacje aplikacji",
+ "Checking for update of app \"%s\" in appstore" : "Sprawdzanie aktualizacji dla aplikacji \"%s\" w sklepie aplikacji",
+ "Update app \"%s\" from appstore" : "Zaktualizuj aplikację \"%s\" ze sklepu aplikacji",
+ "Checked for update of app \"%s\" in appstore" : "Sprawdzono aktualizację dla aplikacji \"%s\" w sklepie aplikacji.",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Sprawdzam czy schemat bazy danych %s może zostać zaktualizowany (to może zająć sporo czasu i zależy od rozmiaru bazy danych)",
"Checked database schema update for apps" : "Sprawdzono aktualizację schematu bazy danych dla aplikacji",
"Updated \"%s\" to %s" : "Zaktualizowano \"%s\" do %s",
@@ -296,7 +300,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Aby uniknąć timeout-ów przy większych instalacjach, możesz zamiast tego uruchomić następującą komendę w katalogu Twojej instalacji:",
"Detailed logs" : "Szczegółowe logi",
"Update needed" : "Wymagana aktualizacja",
- "Please use the command line updater because you have a big instance." : "Ze względu na rozmiar Twojej instalacji użyj programu do aktualizacji z linii poleceń.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Proszę uzyć aktualizatora z wiersza poleceń, ponieważ masz dużą instancję z ponad 50-cioma użytkownikami.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Aby uzyskać pomoc, zajrzyj do <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentacji</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Ta instalacja %s działa obecnie w trybie konserwacji. Może to potrwać jakiś czas.",
"This page will refresh itself when the %s instance is available again." : "Strona odświeży się gdy instancja %s będzie ponownie dostępna.",
@@ -332,6 +336,7 @@
"The share will expire on %s." : "Ten zasób wygaśnie %s",
"Cheers!" : "Pozdrawiam!",
"Use the following link to reset your password: {link}" : "Użyj tego odnośnika by zresetować hasło: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Witam, <br><br>informuję, że %s udostępnianych zasobów <strong>%s</strong> jest z Tobą.<br><a href=\"%s\">Zobacz!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Witam, <br><br>informuję, że %s udostępnianych zasobów <strong>%s</strong> jest z Tobą.<br><a href=\"%s\">Zobacz!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Ze względu na rozmiar Twojej instalacji użyj programu do aktualizacji z linii poleceń."
},"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"
} \ No newline at end of file
diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js
index f099c5a82c7..fd0c7ba9b3e 100644
--- a/core/l10n/pt_BR.js
+++ b/core/l10n/pt_BR.js
@@ -16,6 +16,7 @@ OC.L10N.register(
"Crop is not square" : "Recorte não é quadrado",
"State token does not match" : "O estado do token não coincide",
"Auth flow can only be started unauthenticated." : "O fluxo de autenticação só pode ser iniciado como não autenticado.",
+ "Password reset is disabled" : "A redefinição de senha está desabilitada",
"Couldn't reset password because the token is invalid" : "Não foi possível redefinir a senha porque o token é inválido",
"Couldn't reset password because the token is expired" : "Não foi possível redefinir a senha porque o token expirou",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Não foi possível enviar e-mail de redefinição porque não há nenhum endereço de e-mail para este nome de usuário. Entre em contato com o administrador.",
@@ -40,6 +41,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Verificando se o esquema do banco de dados pode ser atualizado (isso pode levar muito tempo, dependendo do tamanho do banco de dados)",
"Checked database schema update" : "Verificada a atualização do esquema de banco de dados",
"Checking updates of apps" : "Verificando atualizações de aplicativos",
+ "Checking for update of app \"%s\" in appstore" : "Verificando atualização para o aplicativo \"%s\" na appstore",
+ "Update app \"%s\" from appstore" : "Atualizar aplicativo \"%s\" a partir da appstore",
+ "Checked for update of app \"%s\" in appstore" : "Verificada atualização do aplicativo \"%s\" na appstore",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Verificando se o esquema do banco de dados para %s pode ser atualizado (isso pode levar muito tempo, dependendo do tamanho do banco de dados)",
"Checked database schema update for apps" : "Verificar atualização do esquema de banco de dados para aplicativos",
"Updated \"%s\" to %s" : "Atualizado \"%s\" para %s",
@@ -298,7 +302,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Para evitar tempos de espera com instalações maiores, você pode em vez disso executar o seguinte comando a partir do diretório de instalação:",
"Detailed logs" : "Logs detalhados",
"Update needed" : "Atualização necessária",
- "Please use the command line updater because you have a big instance." : "Por favor, use a atualização de linha de comando, porque você tem muitos dados em sua instância.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Use o atualizador pela linha de comando pois você tem uma grande instalação com mais de 50 usuários.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Para obter ajuda, consulte a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Esta instância %s está em modo de manutenção, o que pode demorar um pouco.",
"This page will refresh itself when the %s instance is available again." : "Esta página será atualizada automaticamente quando a instância %s estiver disponível novamente.",
@@ -334,6 +338,7 @@ OC.L10N.register(
"The share will expire on %s." : "O compartilhamento irá expirar em %s.",
"Cheers!" : "Saudações!",
"Use the following link to reset your password: {link}" : "Use o seguinte link para redefinir sua senha: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>só para avisar que %s compartilhou <strong>%s</strong> com você. <br><a href=\"%s\">Visualize-o!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>só para avisar que %s compartilhou <strong>%s</strong> com você. <br><a href=\"%s\">Visualize-o!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Por favor, use a atualização de linha de comando, porque você tem muitos dados em sua instância."
},
"nplurals=2; plural=(n > 1);");
diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json
index d981f5c5ebe..4646c950518 100644
--- a/core/l10n/pt_BR.json
+++ b/core/l10n/pt_BR.json
@@ -14,6 +14,7 @@
"Crop is not square" : "Recorte não é quadrado",
"State token does not match" : "O estado do token não coincide",
"Auth flow can only be started unauthenticated." : "O fluxo de autenticação só pode ser iniciado como não autenticado.",
+ "Password reset is disabled" : "A redefinição de senha está desabilitada",
"Couldn't reset password because the token is invalid" : "Não foi possível redefinir a senha porque o token é inválido",
"Couldn't reset password because the token is expired" : "Não foi possível redefinir a senha porque o token expirou",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Não foi possível enviar e-mail de redefinição porque não há nenhum endereço de e-mail para este nome de usuário. Entre em contato com o administrador.",
@@ -38,6 +39,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Verificando se o esquema do banco de dados pode ser atualizado (isso pode levar muito tempo, dependendo do tamanho do banco de dados)",
"Checked database schema update" : "Verificada a atualização do esquema de banco de dados",
"Checking updates of apps" : "Verificando atualizações de aplicativos",
+ "Checking for update of app \"%s\" in appstore" : "Verificando atualização para o aplicativo \"%s\" na appstore",
+ "Update app \"%s\" from appstore" : "Atualizar aplicativo \"%s\" a partir da appstore",
+ "Checked for update of app \"%s\" in appstore" : "Verificada atualização do aplicativo \"%s\" na appstore",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Verificando se o esquema do banco de dados para %s pode ser atualizado (isso pode levar muito tempo, dependendo do tamanho do banco de dados)",
"Checked database schema update for apps" : "Verificar atualização do esquema de banco de dados para aplicativos",
"Updated \"%s\" to %s" : "Atualizado \"%s\" para %s",
@@ -296,7 +300,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Para evitar tempos de espera com instalações maiores, você pode em vez disso executar o seguinte comando a partir do diretório de instalação:",
"Detailed logs" : "Logs detalhados",
"Update needed" : "Atualização necessária",
- "Please use the command line updater because you have a big instance." : "Por favor, use a atualização de linha de comando, porque você tem muitos dados em sua instância.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "Use o atualizador pela linha de comando pois você tem uma grande instalação com mais de 50 usuários.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Para obter ajuda, consulte a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Esta instância %s está em modo de manutenção, o que pode demorar um pouco.",
"This page will refresh itself when the %s instance is available again." : "Esta página será atualizada automaticamente quando a instância %s estiver disponível novamente.",
@@ -332,6 +336,7 @@
"The share will expire on %s." : "O compartilhamento irá expirar em %s.",
"Cheers!" : "Saudações!",
"Use the following link to reset your password: {link}" : "Use o seguinte link para redefinir sua senha: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>só para avisar que %s compartilhou <strong>%s</strong> com você. <br><a href=\"%s\">Visualize-o!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>só para avisar que %s compartilhou <strong>%s</strong> com você. <br><a href=\"%s\">Visualize-o!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Por favor, use a atualização de linha de comando, porque você tem muitos dados em sua instância."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/core/l10n/pt_PT.js b/core/l10n/pt_PT.js
index ce8531522c5..2327bae61a0 100644
--- a/core/l10n/pt_PT.js
+++ b/core/l10n/pt_PT.js
@@ -269,7 +269,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Para evitar tempos expirados com instalações maiores, em vez disso, pode executar o seguinte comando a partir da diretoria de instalação:",
"Detailed logs" : "Registos detalhados",
"Update needed" : "É necessário atualizar",
- "Please use the command line updater because you have a big instance." : "Por favor, utilize o atualizador de linha de comando porque a sua instância é grande.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Para obter ajuda, consulte a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Esta instância %s está atualmente no modo de manutenção, o que poderá demorar algum tempo.",
"This page will refresh itself when the %s instance is available again." : "Esta página irá ser atualizada quando a instância %s ficar novamente disponível.",
@@ -305,6 +304,7 @@ OC.L10N.register(
"The share will expire on %s." : "Esta partilha irá expirar em %s.",
"Cheers!" : "Parabéns!",
"Use the following link to reset your password: {link}" : "Utilize a seguinte hiperligação para repor a sua palavra-passe: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>apenas para informar que %s partilhou <strong>%s</strong> consigo.<br><a href=\"%s\">Consulte aqui!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>apenas para informar que %s partilhou <strong>%s</strong> consigo.<br><a href=\"%s\">Consulte aqui!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Por favor, utilize o atualizador de linha de comando porque a sua instância é grande."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/pt_PT.json b/core/l10n/pt_PT.json
index c1e584d1630..5ba2f81b155 100644
--- a/core/l10n/pt_PT.json
+++ b/core/l10n/pt_PT.json
@@ -267,7 +267,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Para evitar tempos expirados com instalações maiores, em vez disso, pode executar o seguinte comando a partir da diretoria de instalação:",
"Detailed logs" : "Registos detalhados",
"Update needed" : "É necessário atualizar",
- "Please use the command line updater because you have a big instance." : "Por favor, utilize o atualizador de linha de comando porque a sua instância é grande.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Para obter ajuda, consulte a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentação</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Esta instância %s está atualmente no modo de manutenção, o que poderá demorar algum tempo.",
"This page will refresh itself when the %s instance is available again." : "Esta página irá ser atualizada quando a instância %s ficar novamente disponível.",
@@ -303,6 +302,7 @@
"The share will expire on %s." : "Esta partilha irá expirar em %s.",
"Cheers!" : "Parabéns!",
"Use the following link to reset your password: {link}" : "Utilize a seguinte hiperligação para repor a sua palavra-passe: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>apenas para informar que %s partilhou <strong>%s</strong> consigo.<br><a href=\"%s\">Consulte aqui!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>apenas para informar que %s partilhou <strong>%s</strong> consigo.<br><a href=\"%s\">Consulte aqui!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Por favor, utilize o atualizador de linha de comando porque a sua instância é grande."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/ro.js b/core/l10n/ro.js
index 55092a78b35..3a1eae736f3 100644
--- a/core/l10n/ro.js
+++ b/core/l10n/ro.js
@@ -254,7 +254,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Pentru a evita timeout-uri la instalări de mari dimensiuni, poți rula în schimb următoarea comandă în folderul de instalare:",
"Detailed logs" : "Loguri detaliate",
"Update needed" : "E necesară actualizarea",
- "Please use the command line updater because you have a big instance." : "Folosește actualizarea din linia de comandă deoarece ai o instanță mare.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Pentru ajutor, verifică <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentația</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Instanța %s este acum în modul de mentenanță, ceea ce ar putea dura o vreme.",
"This page will refresh itself when the %s instance is available again." : "Această pagină se va reîmprospăta atunci când %s instance e disponibil din nou.",
@@ -290,6 +289,7 @@ OC.L10N.register(
"The share will expire on %s." : "Partajarea va expira în data de %s.",
"Cheers!" : "Noroc!",
"Use the following link to reset your password: {link}" : "Folosește următorul link pentru a reseta parola: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Salutare,<br><br>te anunțăm pe această cale că %s a partajat <strong>%s</strong> cu tine.<br><a href=\"%s\">Accesează!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Salutare,<br><br>te anunțăm pe această cale că %s a partajat <strong>%s</strong> cu tine.<br><a href=\"%s\">Accesează!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Folosește actualizarea din linia de comandă deoarece ai o instanță mare."
},
"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));");
diff --git a/core/l10n/ro.json b/core/l10n/ro.json
index c035873c17e..7868fce6117 100644
--- a/core/l10n/ro.json
+++ b/core/l10n/ro.json
@@ -252,7 +252,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Pentru a evita timeout-uri la instalări de mari dimensiuni, poți rula în schimb următoarea comandă în folderul de instalare:",
"Detailed logs" : "Loguri detaliate",
"Update needed" : "E necesară actualizarea",
- "Please use the command line updater because you have a big instance." : "Folosește actualizarea din linia de comandă deoarece ai o instanță mare.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Pentru ajutor, verifică <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentația</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Instanța %s este acum în modul de mentenanță, ceea ce ar putea dura o vreme.",
"This page will refresh itself when the %s instance is available again." : "Această pagină se va reîmprospăta atunci când %s instance e disponibil din nou.",
@@ -288,6 +287,7 @@
"The share will expire on %s." : "Partajarea va expira în data de %s.",
"Cheers!" : "Noroc!",
"Use the following link to reset your password: {link}" : "Folosește următorul link pentru a reseta parola: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Salutare,<br><br>te anunțăm pe această cale că %s a partajat <strong>%s</strong> cu tine.<br><a href=\"%s\">Accesează!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Salutare,<br><br>te anunțăm pe această cale că %s a partajat <strong>%s</strong> cu tine.<br><a href=\"%s\">Accesează!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Folosește actualizarea din linia de comandă deoarece ai o instanță mare."
},"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"
} \ No newline at end of file
diff --git a/core/l10n/ru.js b/core/l10n/ru.js
index 995bc3ffed2..465fca29aad 100644
--- a/core/l10n/ru.js
+++ b/core/l10n/ru.js
@@ -16,6 +16,7 @@ OC.L10N.register(
"Crop is not square" : "Кадр не является квадратом",
"State token does not match" : "Токен состояния не соответствует",
"Auth flow can only be started unauthenticated." : "Процесс аутентификации может быть запущен только неаутентифицированным.",
+ "Password reset is disabled" : "Сброс пароля отключен",
"Couldn't reset password because the token is invalid" : "Не удалось сбросить пароль, неверный токен",
"Couldn't reset password because the token is expired" : "Не удалось сбросить пароль, срок действия токена истёк",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Не удалось отправить письмо сброса так как у данного пользователя не задан адрес электронной почты. Пожалуйста, обратитесь к администратору.",
@@ -40,6 +41,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Проверка возможности обновления схемы базы данных (это может занять длительное время в зависимости от размера базы данных)",
"Checked database schema update" : "Проверено обновление схемы БД",
"Checking updates of apps" : "Проверка обновлений для приложений",
+ "Checking for update of app \"%s\" in appstore" : "Проверяется наличие обновления для приложения «%s»",
+ "Update app \"%s\" from appstore" : "Обновите приложение «%s» в магазине приложений",
+ "Checked for update of app \"%s\" in appstore" : "Проверено наличие обновления для приложения «%s» в магазине приложенеий",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Проверка возможности обновления схемы базы данных для %s (это может занять длительное время в зависимости от размера базы данных)",
"Checked database schema update for apps" : "Проверено обновление схемы БД приложений",
"Updated \"%s\" to %s" : "Обновлено \"%s\" до %s",
@@ -298,7 +302,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Чтобы избежать тайм-аутов в крупных установках, вместо этого можно выполнить следующую команду в каталоге установки:",
"Detailed logs" : "Подробные журналы",
"Update needed" : "Требуется обновление",
- "Please use the command line updater because you have a big instance." : "Пожалуйста, используйте обновление через командную строку, так как данная установка имеет большой размер.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "У вас система более чем с 50 пользователями, для обновления используйте инструмент командной строки.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Для помощи, ознакомьтесь с <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документацией</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Этот сервер %s находится в режиме технического обслуживания, которое может занять некоторое время.",
"This page will refresh itself when the %s instance is available again." : "Эта страница автоматически обновится, когда сервер %s снова станет доступен.",
@@ -334,6 +338,7 @@ OC.L10N.register(
"The share will expire on %s." : "Доступ будет закрыт %s",
"Cheers!" : "Всего наилучшего!",
"Use the following link to reset your password: {link}" : "Используйте следующую ссылку чтобы сбросить пароль: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Здравствуйте,<br><br>%s поделился с вами <strong>%s</strong>.<br>Перейдите по <a href=\"%s\">ссылке</a>, чтобы посмотреть<br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Здравствуйте,<br><br>%s поделился с вами <strong>%s</strong>.<br>Перейдите по <a href=\"%s\">ссылке</a>, чтобы посмотреть<br><br>",
+ "Please use the command line updater because you have a big instance." : "Пожалуйста, используйте обновление через командную строку, так как данная установка имеет большой размер."
},
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);");
diff --git a/core/l10n/ru.json b/core/l10n/ru.json
index f9a58afe9a3..02f1bb4c8d1 100644
--- a/core/l10n/ru.json
+++ b/core/l10n/ru.json
@@ -14,6 +14,7 @@
"Crop is not square" : "Кадр не является квадратом",
"State token does not match" : "Токен состояния не соответствует",
"Auth flow can only be started unauthenticated." : "Процесс аутентификации может быть запущен только неаутентифицированным.",
+ "Password reset is disabled" : "Сброс пароля отключен",
"Couldn't reset password because the token is invalid" : "Не удалось сбросить пароль, неверный токен",
"Couldn't reset password because the token is expired" : "Не удалось сбросить пароль, срок действия токена истёк",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Не удалось отправить письмо сброса так как у данного пользователя не задан адрес электронной почты. Пожалуйста, обратитесь к администратору.",
@@ -38,6 +39,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Проверка возможности обновления схемы базы данных (это может занять длительное время в зависимости от размера базы данных)",
"Checked database schema update" : "Проверено обновление схемы БД",
"Checking updates of apps" : "Проверка обновлений для приложений",
+ "Checking for update of app \"%s\" in appstore" : "Проверяется наличие обновления для приложения «%s»",
+ "Update app \"%s\" from appstore" : "Обновите приложение «%s» в магазине приложений",
+ "Checked for update of app \"%s\" in appstore" : "Проверено наличие обновления для приложения «%s» в магазине приложенеий",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Проверка возможности обновления схемы базы данных для %s (это может занять длительное время в зависимости от размера базы данных)",
"Checked database schema update for apps" : "Проверено обновление схемы БД приложений",
"Updated \"%s\" to %s" : "Обновлено \"%s\" до %s",
@@ -296,7 +300,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Чтобы избежать тайм-аутов в крупных установках, вместо этого можно выполнить следующую команду в каталоге установки:",
"Detailed logs" : "Подробные журналы",
"Update needed" : "Требуется обновление",
- "Please use the command line updater because you have a big instance." : "Пожалуйста, используйте обновление через командную строку, так как данная установка имеет большой размер.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "У вас система более чем с 50 пользователями, для обновления используйте инструмент командной строки.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Для помощи, ознакомьтесь с <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">документацией</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Этот сервер %s находится в режиме технического обслуживания, которое может занять некоторое время.",
"This page will refresh itself when the %s instance is available again." : "Эта страница автоматически обновится, когда сервер %s снова станет доступен.",
@@ -332,6 +336,7 @@
"The share will expire on %s." : "Доступ будет закрыт %s",
"Cheers!" : "Всего наилучшего!",
"Use the following link to reset your password: {link}" : "Используйте следующую ссылку чтобы сбросить пароль: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Здравствуйте,<br><br>%s поделился с вами <strong>%s</strong>.<br>Перейдите по <a href=\"%s\">ссылке</a>, чтобы посмотреть<br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Здравствуйте,<br><br>%s поделился с вами <strong>%s</strong>.<br>Перейдите по <a href=\"%s\">ссылке</a>, чтобы посмотреть<br><br>",
+ "Please use the command line updater because you have a big instance." : "Пожалуйста, используйте обновление через командную строку, так как данная установка имеет большой размер."
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
} \ No newline at end of file
diff --git a/core/l10n/sk.js b/core/l10n/sk.js
index 5d19503431d..4ca31fe6a93 100644
--- a/core/l10n/sk.js
+++ b/core/l10n/sk.js
@@ -236,7 +236,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Aby nedošlo k vypršaniu časového limitu vo väčších inštaláciách, môžete namiesto toho použiť nasledujúci príkaz z inštalačného priečinka:",
"Detailed logs" : "Podrobné záznamy",
"Update needed" : "Aktualizácia je potrebná",
- "Please use the command line updater because you have a big instance." : "Vaša inštancia je veľká, použite prosím aktualizáciu cez príkazový riadok.",
"This %s instance is currently in maintenance mode, which may take a while." : "Táto %s inštancia je v súčasnej dobe v režime údržby. Počkajte prosím.",
"This page will refresh itself when the %s instance is available again." : "Táto stránka sa obnoví sama hneď ako bude %s inštancia znovu dostupná.",
"Problem loading page, reloading in 5 seconds" : "Nastal problém pri načítaní stránky, pokus sa zopakuje o 5 sekúnd",
@@ -268,6 +267,7 @@ OC.L10N.register(
"The share will expire on %s." : "Sprístupnenie vyprší %s.",
"Cheers!" : "Pekný deň!",
"Use the following link to reset your password: {link}" : "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Dobrý deň,<br><br>používateľ %s Vám sprístupnil položku s názvom »%s«.<br><a href=\"%s\">Zobraziť!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Dobrý deň,<br><br>používateľ %s Vám sprístupnil položku s názvom »%s«.<br><a href=\"%s\">Zobraziť!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Vaša inštancia je veľká, použite prosím aktualizáciu cez príkazový riadok."
},
"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;");
diff --git a/core/l10n/sk.json b/core/l10n/sk.json
index 9b6dd1c04b1..efb4593a200 100644
--- a/core/l10n/sk.json
+++ b/core/l10n/sk.json
@@ -234,7 +234,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Aby nedošlo k vypršaniu časového limitu vo väčších inštaláciách, môžete namiesto toho použiť nasledujúci príkaz z inštalačného priečinka:",
"Detailed logs" : "Podrobné záznamy",
"Update needed" : "Aktualizácia je potrebná",
- "Please use the command line updater because you have a big instance." : "Vaša inštancia je veľká, použite prosím aktualizáciu cez príkazový riadok.",
"This %s instance is currently in maintenance mode, which may take a while." : "Táto %s inštancia je v súčasnej dobe v režime údržby. Počkajte prosím.",
"This page will refresh itself when the %s instance is available again." : "Táto stránka sa obnoví sama hneď ako bude %s inštancia znovu dostupná.",
"Problem loading page, reloading in 5 seconds" : "Nastal problém pri načítaní stránky, pokus sa zopakuje o 5 sekúnd",
@@ -266,6 +265,7 @@
"The share will expire on %s." : "Sprístupnenie vyprší %s.",
"Cheers!" : "Pekný deň!",
"Use the following link to reset your password: {link}" : "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Dobrý deň,<br><br>používateľ %s Vám sprístupnil položku s názvom »%s«.<br><a href=\"%s\">Zobraziť!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Dobrý deň,<br><br>používateľ %s Vám sprístupnil položku s názvom »%s«.<br><a href=\"%s\">Zobraziť!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Vaša inštancia je veľká, použite prosím aktualizáciu cez príkazový riadok."
},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
} \ No newline at end of file
diff --git a/core/l10n/sl.js b/core/l10n/sl.js
deleted file mode 100644
index f1a6d26f2d7..00000000000
--- a/core/l10n/sl.js
+++ /dev/null
@@ -1,256 +0,0 @@
-OC.L10N.register(
- "core",
- {
- "Please select a file." : "Izberite datoteko",
- "File is too big" : "Datoteka je prevelika",
- "The selected file is not an image." : "Izbrana datoteka ni slika.",
- "The selected file cannot be read." : "Izbrane datoteke ni mogoče prebrati.",
- "Invalid file provided" : "Predložena je neveljavna datoteka",
- "No image or file provided" : "Ni podane datoteke ali slike",
- "Unknown filetype" : "Neznana vrsta datoteke",
- "Invalid image" : "Neveljavna slika",
- "An error occurred. Please contact your admin." : "Prišlo je do napake. Stopite v stik s skrbnikom sistema.",
- "No temporary profile picture available, try again" : "Na voljo ni nobene začasne slike za profil. Poskusite znova.",
- "No crop data provided" : "Ni podanih podatkov obreza",
- "No valid crop data provided" : "Navedeni so neveljavni podatki obrez slike",
- "Crop is not square" : "Obrez ni pravokoten",
- "Couldn't reset password because the token is invalid" : "Ni mogoče ponastaviti gesla zaradi neustreznega žetona.",
- "Couldn't reset password because the token is expired" : "Ni mogoče ponastaviti gesla, ker je žeton potekel.",
- "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Ni mogoče poslati elektronskega sporočila za ponastavitev gesla, ker ni navedenega elektronskega naslova. Stopite v stik s skrbnikom sistema.",
- "%s password reset" : "Ponastavitev gesla %s",
- "Couldn't send reset email. Please contact your administrator." : "Ni mogoče nastaviti elektronskega naslova za ponastavitev. Stopite v stik s skrbnikom sistema.",
- "Couldn't send reset email. Please make sure your username is correct." : "Ni mogoče poslati elektronskega sporočila. Prepričajte se, da je uporabniško ime pravilno.",
- "Preparing update" : "Pripravljanje posodobitve",
- "[%d / %d]: %s" : "[%d / %d]: %s",
- "Repair warning: " : "Opozorilo popravila:",
- "Repair error: " : "Napaka popravila:",
- "Please use the command line updater because automatic updating is disabled in the config.php." : "Posodobitev sistema je treba izvesti prek ukazne vrstice, ker je nastavitev samodejne posodobitve v config.php onemogočena.",
- "[%d / %d]: Checking table %s" : "[%d / %d]: Poteka preverjanje razpredelnice %s",
- "Turned on maintenance mode" : "Vzdrževalni način je omogočen",
- "Turned off maintenance mode" : "Vzdrževalni način je onemogočen",
- "Maintenance mode is kept active" : "Vzdrževalni način je še vedno dejaven",
- "Updating database schema" : "Poteka posodabljanje sheme podatkovne zbirke",
- "Updated database" : "Posodobljena podatkovna zbirka",
- "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Poteka preverjanje, ali je shemo podatkovne zbirke mogoče posodobiti (zaradi velikosti je lahko opravilo dolgotrajno).",
- "Checked database schema update" : "Izbrana posodobitev sheme podatkovne zbirke",
- "Checking updates of apps" : "Poteka preverjanje za posodobitve programov",
- "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Poteka preverjanje, ali je shemo podatkovne zbirke za %s mogoče posodobiti (trajanje posodobitve je odvisno od velikosti zbirke).",
- "Checked database schema update for apps" : "Izbrana posodobitev sheme podatkovne zbirke za programe",
- "Updated \"%s\" to %s" : "Datoteka \"%s\" je posodobljena na %s",
- "Set log level to debug" : "Nastavi raven beleženja za razhroščevanje",
- "Reset log level" : "Počisti raven beleženja",
- "Starting code integrity check" : "Začenjanje preverjanja stanja kode",
- "Finished code integrity check" : "Končano preverjanje stanja kode",
- "%s (3rdparty)" : "%s (zunanje)",
- "%s (incompatible)" : "%s (neskladno)",
- "Following apps have been disabled: %s" : "Navedeni programi so onemogočeni: %s",
- "Already up to date" : "Sistem je že posodobljen",
- "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Med preverjanjem celovitosti kode je prišlo do napak. Več podrobnosti …</a>",
- "Settings" : "Nastavitve",
- "Saving..." : "Poteka shranjevanje ...",
- "Dismiss" : "Opusti",
- "Password" : "Geslo",
- "Cancel" : "Prekliči",
- "seconds ago" : "pred nekaj sekundami",
- "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." : "Povezava za ponastavitev gesla je bila poslana na naveden elektronski naslov. V kolikor sporočila ne dobite v kratkem, preverite tudi mapo neželene pošte.<br> Če sporočila ni niti v tej mapi, stopite v stik s skrbnikom.",
- "I know what I'm doing" : "Vem, kaj delam!",
- "Password can not be changed. Please contact your administrator." : "Gesla ni mogoče spremeniti. Stopite v stik s skrbnikom.",
- "No" : "Ne",
- "Yes" : "Da",
- "Choose" : "Izbor",
- "Error loading file picker template: {error}" : "Napaka nalaganja predloge izbirnika datotek: {error}",
- "Error loading message template: {error}" : "Napaka nalaganja predloge sporočil: {error}",
- "read-only" : "le za branje",
- "_{count} file conflict_::_{count} file conflicts_" : ["{count} spor datotek","{count} spora datotek","{count} spori datotek","{count} sporov datotek"],
- "One file conflict" : "En spor datotek",
- "New Files" : "Nove datoteke",
- "Already existing files" : "Obstoječe datoteke",
- "Which files do you want to keep?" : "Katare datoteke želite ohraniti?",
- "If you select both versions, the copied file will have a number added to its name." : "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka.",
- "Continue" : "Nadaljuj",
- "(all selected)" : "(vse izbrano)",
- "({count} selected)" : "({count} izbranih)",
- "Error loading file exists template" : "Napaka nalaganja predloge obstoječih datotek",
- "Very weak password" : "Zelo šibko geslo",
- "Weak password" : "Šibko geslo",
- "So-so password" : "Slabo geslo",
- "Good password" : "Dobro geslo",
- "Strong password" : "Odlično geslo",
- "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je vmesnik WebDAV videti okvarjen.",
- "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Spletni strežnik ni ustrezno nastavljen za razreševanje \"{url}\". Več pdorobnosti je zapisanih v <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentaciji</a>.",
- "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Ni nastavljenega predpomnilnika. Za izboljšanje hitrosti delovanja je treba predpomnilnik memcache, če je na voljo, ustrezno nastaviti. Več podrobnosti je na voljo v <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentaciji</a>.",
- "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Iz varnostnih razlogov je priporočljivo nastaviti dovoljenja ukaza /dev/urandom za branje prek PHP. Več podrobnosti je zavedenih v <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentaciji<-a>",
- "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Trenutno je zagnana različica PHP {version}. Priporočljivo je posodobiti sistem na najnovejšo različico in s tem namestiti <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">funkcijske in varnostne posodobitve delovanja, ki jih zagotavlja skupnost PHP</a>. Pakete je priporočljivo posodobiti takoj, ko so na voljo za nameščeno distribucijo.",
- "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Predpomnilnik memcached je nastavljen kot porazdeljen predpomnilnik, vendar pa je nameščen napačen modul PHP \"memcache\". Modul \\OC\\Memcache\\Memcached podpirao le \"memcached\", ne pa tudi \"memcache\". Več podrobnosti za oba modula je zapisanih <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">na wiki straneh</a>.",
- "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Nekatere datoteke ne opravijo preizkusa celovitosti. Več podrobnosti o težavi je opisanih v <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentaciji</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Seznam neveljavnih datotek …</a> / <a href=\"{rescanEndpoint}\">Ponovni preizkus …</a>)",
- "Error occurred while checking server setup" : "Prišlo je do napake med preverjanjem nastavitev strežnika",
- "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." : "Glava \"{header}\" HTTP ni nastavljena na \"{expected}\". To je potencialno varnostna luknja in vam priporočamo, da to odpravite.",
- "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Do spletišča je omogočen dostop prek protokola HTTP. Priporočljivo je omogočiti podporo za varni protokol HTTPS. Več podrobnosti je zapisanih med <a href=\"{docUrl}\">varnostnimi namigi</a>.",
- "Shared" : "V souporabi",
- "Shared with {recipients}" : "V souporabi z {recipients}",
- "Error setting expiration date" : "Napaka nastavljanja datuma preteka",
- "The public link will expire no later than {days} days after it is created" : "Javna povezava bo potekla {days} dni po ustvarjanju.",
- "Set expiration date" : "Nastavi datum preteka",
- "Expiration" : "Datum preteka",
- "Expiration date" : "Datum preteka",
- "Choose a password for the public link" : "Izberite geslo za javno povezavo",
- "Copied!" : "Skopirano!",
- "Not supported!" : "Ni podprto!",
- "Press ⌘-C to copy." : "Pritisni ⌘-C za kopiranje.",
- "Press Ctrl-C to copy." : "Pritisni Ctrl-C za kopiranje.",
- "Resharing is not allowed" : "Nadaljnja souporaba ni dovoljena",
- "Share link" : "Povezava za prejem",
- "Link" : "Povezava",
- "Password protect" : "Zaščiti z geslom",
- "Allow editing" : "Dovoli urejanje",
- "Email link to person" : "Posreduj povezavo po elektronski pošti",
- "Send" : "Pošlji",
- "Allow upload and editing" : "Dovoli nalaganje in urejanje",
- "Shared with you and the group {group} by {owner}" : "V souporabi z vami in skupino {group}. Lastnik je {owner}.",
- "Shared with you by {owner}" : "V souporabi z vami. Lastnik je {owner}.",
- "group" : "skupina",
- "remote" : "oddaljeno",
- "Unshare" : "Prekliči souporabo",
- "Could not unshare" : "Ni mogoče prekiniti souporabe",
- "Error while sharing" : "Napaka med souporabo",
- "Share details could not be loaded for this item." : "Podrobnosti souporabe za te predmet ni mogoče naložiti.",
- "No users or groups found for {search}" : "Ni najdenih uporabnikov ali skupin za {search}",
- "No users found for {search}" : "Ni uporabnikov, skladnih z iskalnim nizom {search}",
- "An error occurred. Please try again" : "Prišlo je do napake. Poskusite znova.",
- "{sharee} (group)" : "{sharee} (skupina)",
- "{sharee} (remote)" : "{sharee} (oddaljeno)",
- "Share" : "Souporaba",
- "Error" : "Napaka",
- "Error removing share" : "Napaka odstranjevanja souporabe",
- "Non-existing tag #{tag}" : "Neobstoječa oznaka #{tag}",
- "restricted" : "omejeno",
- "invisible" : "nevidno",
- "({scope})" : "({scope})",
- "Delete" : "Izbriši",
- "Rename" : "Preimenuj",
- "Collaborative tags" : "Oznake sodelovanja",
- "unknown text" : "neznano besedilo",
- "Hello world!" : "Pozdravljen svet!",
- "sunny" : "sončno",
- "Hello {name}, the weather is {weather}" : "Pozdravljeni, {name}, vreme je {weather}",
- "Hello {name}" : "Pozdravljeni, {name}",
- "new" : "novo",
- "_download %n file_::_download %n files_" : ["prejmi %n datoteko","prejmi %n datoteki","prejmi %n datoteke","prejmi %n datotek"],
- "The update is in progress, leaving this page might interrupt the process in some environments." : "Posodobitev je v teku. Če zapustiš to stran, lahko, v določenih okoljih, prekineš proces",
- "Update to {version}" : "Posodobi na {version}",
- "An error occurred." : "Prišlo je do napake.",
- "Please reload the page." : "Stran je treba ponovno naložiti",
- "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "Posodobitev je spodletela. Za več podrobnosti o napaki je <a href=\"{url}\">objavljenih na forumu</a>.",
- "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "Posodobitev ni bila uspešna. Prosimo, prijavite to situacijo na <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud skupnost</a>.",
- "Continue to Nextcloud" : "Nadaljuj na Nextcloud",
- "Searching other places" : "Iskanje drugih mest",
- "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} rezultat v drugih mapah","{count} rezultata v drugih mapah","{count} rezultatov v drugih mapah","{count} rezultatov v drugih mapah"],
- "Personal" : "Osebno",
- "Users" : "Uporabniki",
- "Apps" : "Programi",
- "Admin" : "Skrbništvo",
- "Help" : "Pomoč",
- "Access forbidden" : "Dostop je prepovedan",
- "File not found" : "Datoteke ni mogoče najti",
- "The specified document has not been found on the server." : "Določenega dokumenta na strežniku ni mogoče najti.",
- "You can click here to return to %s." : "S klikom na povezavo boste vrnjeni na %s.",
- "Internal Server Error" : "Notranja napaka strežnika",
- "The server encountered an internal error and was unable to complete your request." : "Prišlo je do notranje napake, zato ni mogoče končati zahteve.",
- "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." : "Stopite v stik s skrbnikom sistema, če se napaka pojavlja pogosto. V poročilo vključite tudi tehnične podatke v dnevniški datoteki.",
- "More details can be found in the server log." : "Več podrobnosti je zabeleženih v dnevniku strežnika.",
- "Technical details" : "Tehnične podrobnosti",
- "Remote Address: %s" : "Oddaljen naslov: %s",
- "Request ID: %s" : "ID zahteve: %s",
- "Type: %s" : "Vrsta: %s",
- "Code: %s" : "Koda: %s",
- "Message: %s" : "Sporočilo: %s",
- "File: %s" : "Datoteka: %s",
- "Line: %s" : "Vrstica: %s",
- "Trace" : "Sledenje povezav",
- "Security warning" : "Varnostno opozorilo",
- "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.",
- "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Za več podrobnosti o pravilnem nastavljanju strežnika si oglejte <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">dokumentacijo</a>.",
- "Create an <strong>admin account</strong>" : "Ustvari <strong>skrbniški račun</strong>",
- "Username" : "Uporabniško ime",
- "Storage & database" : "Shramba in podatkovna zbirka",
- "Data folder" : "Podatkovna mapa",
- "Configure the database" : "Nastavi podatkovno zbirko",
- "Only %s is available." : "Le %s je na voljo.",
- "Install and activate additional PHP modules to choose other database types." : "Namestite in omogočite dodatne module PHP za izbor drugih vrst podatkovnih zbirk.",
- "For more details check out the documentation." : "Za več podrobnosti preverite dokumentacijo.",
- "Database user" : "Uporabnik podatkovne zbirke",
- "Database password" : "Geslo podatkovne zbirke",
- "Database name" : "Ime podatkovne zbirke",
- "Database tablespace" : "Razpredelnica podatkovne zbirke",
- "Database host" : "Gostitelj podatkovne zbirke",
- "Performance warning" : "Opozorilo učinkovitosti delovanja",
- "SQLite will be used as database." : "Kot podatkovna zbirka bo uporabljena zbirka SQLite",
- "For larger installations we recommend to choose a different database backend." : "Za večje namestitve je priporočljivo uporabiti drugo ozadnji program zbirke podatkov.",
- "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Uporaba SQLite ni priporočljiva iz varnostnih razlogov, še posebej če se sistem krajevno usklajuje z namizjem prek odjemalca.",
- "Finish setup" : "Končaj nastavitev",
- "Finishing …" : "Poteka zaključevanje opravila ...",
- "Need help?" : "Ali potrebujete pomoč?",
- "See the documentation" : "Preverite dokumentacijo",
- "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Program zahteva podporo JavaScript za pravilno delovanje. Med nastavitvami omogočite {linkstart}JavaScript{linkend} in osvežite spletno stran.",
- "Search" : "Poišči",
- "Server side authentication failed!" : "Overitev s strežnika je spodletela!",
- "Please contact your administrator." : "Stopite v stik s skrbnikom sistema.",
- "An internal error occurred." : "Prišlo je do notranje napake.",
- "Please try again or contact your administrator." : "Poskusite znova ali pa stopite v stik s skrbnikom sistema.",
- "Username or email" : "Uporabniško ime ali elektronski naslov",
- "Wrong password. Reset it?" : "Napačno geslo. Ali ga želite ponastaviti?",
- "Wrong password." : "Napačno geslo!",
- "Log in" : "Prijava",
- "Stay logged in" : "Ohrani prijavo",
- "Alternative Logins" : "Druge prijavne možnosti",
- "New password" : "Novo geslo",
- "New Password" : "Novo geslo",
- "Reset password" : "Ponastavi geslo",
- "This Nextcloud instance is currently in single user mode." : "Ta seja oblaka Nextcloud je trenutno v načinu enega sočasnega uporabnika.",
- "This means only administrators can use the instance." : "To pomeni, da lahko oblak uporabljajo le osebe s skrbniškimi dovoljenji.",
- "Contact your system administrator if this message persists or appeared unexpectedly." : "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo.",
- "Thank you for your patience." : "Hvala za potrpežljivost!",
- "Log out" : "Odjava",
- "Two-factor authentication" : "Dvo-stopenjska prijava",
- "Enhanced security is enabled for your account. Please authenticate using a second factor." : "Na tvojem računu je vključena napredna varnost. Prosim, prijavi se z drugim korakom.",
- "Cancel log in" : "Prekini prijavo",
- "Use backup code" : "Uporabi rezervno šifro",
- "Error while validating your second factor" : "Napaka med preverjanjem drugega koraka",
- "You are accessing the server from an untrusted domain." : "Trenutno je vzpostavljena povezava s strežnikom preko ne-varne domene.",
- "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Glede na nastavitve bi lahko kot skrbnik uporabili spodnji gumb in domeno ročno določili kot varno.",
- "Add \"%s\" as trusted domain" : "Dodaj \"%s\" kot varno domeno",
- "App update required" : "Zahtevana je posodobitev programa",
- "%s will be updated to version %s" : "%s bo posodobljen na različico %s.",
- "These apps will be updated:" : "Posodobljeni bodo naslednji vstavki:",
- "These incompatible apps will be disabled:" : "Ti neskladni vstavki bodo onemogočeni:",
- "The theme %s has been disabled." : "Tema %s je onemogočena za uporabo.",
- "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Pred nadaljevanjem se prepričajte se, da je ustvarjena varnostna kopija podatkovne zbirke, nastavitvenih datotek in podatkovne mape.",
- "Start update" : "Začni posodobitev",
- "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Za razreševanje časovnih zahtev večjih namestitev lahko uporabite ukaz iz namestitvene mape:",
- "Detailed logs" : "Podrobni dnevniški zapisi",
- "Update needed" : "Zahtevana je posodobitev",
- "Please use the command line updater because you have a big instance." : "Posodobitev večjih namestitev je priporočljivo izvesti prek ukazne vrstice.",
- "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Za več podrobnosti si oglejte <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentacijo</a>.",
- "This %s instance is currently in maintenance mode, which may take a while." : "Strežnik %s je trenutno v načinu vzdrževanja, kar lahko traja.",
- "This page will refresh itself when the %s instance is available again." : "Stran bo osvežena ko bo %s spet na voljo.",
- "Problem loading page, reloading in 5 seconds" : "Napaka nalaganja strani! Poskus ponovnega nalaganja bo izveden čez 5 sekund.",
- "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?" : "Datoteke so šifrirane. Če niste omogočili obnovitvenega ključa, po ponastavitvi gesla ne bo mogoč dostop do datotek.<br />V primeru, da niste prepričani, kaj storiti, stopite v stik s skrbnikom sistema.<br />Ali ste prepričani, da želite nadaljevati?",
- "Ok" : "V redu",
- "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Podatkovna mapa in datoteke so najverjetneje dostopni prek Interneta, ker datoteka .htaccess ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da dostop prek zunanjega omrežja ni mogoč, ali pa tako, da podatkovna mapa ni znotraj korenske mape strežnika.",
- "Error while unsharing" : "Napaka med odstranjevanjem souporabe",
- "can edit" : "lahko ureja",
- "access control" : "nadzor dostopa",
- "The object type is not specified." : "Vrsta predmeta ni podana.",
- "Enter new" : "Vnesite novo",
- "Add" : "Dodaj",
- "Edit tags" : "Uredi oznake",
- "Error loading dialog template: {error}" : "Napaka nalaganja predloge pogovornega okna: {error}",
- "No tags selected for deletion." : "Ni izbranih oznak za izbris.",
- "The update was successful. Redirecting you to Nextcloud now." : "Posodobitev je bila uspešna. Stran bo preusmerjena na NextCloud",
- "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" : "Pozdravljeni,\n\noseba %s vam je omogočila souporabo %s.\nVir si lahko ogledate: %s\n\n",
- "The share will expire on %s." : "Povezava souporabe bo potekla %s.",
- "Cheers!" : "Lep pozdrav!",
- "Use the following link to reset your password: {link}" : "Za ponastavitev gesla uporabite povezavo: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Pozdravljeni,<br><br>uporabnik %s vam je omogočil souporabo <strong>%s</strong>.<br><a href=\"%s\">Oglejte si vsebino!</a><br><br>"
-},
-"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);");
diff --git a/core/l10n/sl.json b/core/l10n/sl.json
deleted file mode 100644
index c7533d95f1c..00000000000
--- a/core/l10n/sl.json
+++ /dev/null
@@ -1,254 +0,0 @@
-{ "translations": {
- "Please select a file." : "Izberite datoteko",
- "File is too big" : "Datoteka je prevelika",
- "The selected file is not an image." : "Izbrana datoteka ni slika.",
- "The selected file cannot be read." : "Izbrane datoteke ni mogoče prebrati.",
- "Invalid file provided" : "Predložena je neveljavna datoteka",
- "No image or file provided" : "Ni podane datoteke ali slike",
- "Unknown filetype" : "Neznana vrsta datoteke",
- "Invalid image" : "Neveljavna slika",
- "An error occurred. Please contact your admin." : "Prišlo je do napake. Stopite v stik s skrbnikom sistema.",
- "No temporary profile picture available, try again" : "Na voljo ni nobene začasne slike za profil. Poskusite znova.",
- "No crop data provided" : "Ni podanih podatkov obreza",
- "No valid crop data provided" : "Navedeni so neveljavni podatki obrez slike",
- "Crop is not square" : "Obrez ni pravokoten",
- "Couldn't reset password because the token is invalid" : "Ni mogoče ponastaviti gesla zaradi neustreznega žetona.",
- "Couldn't reset password because the token is expired" : "Ni mogoče ponastaviti gesla, ker je žeton potekel.",
- "Could not send reset email because there is no email address for this username. Please contact your administrator." : "Ni mogoče poslati elektronskega sporočila za ponastavitev gesla, ker ni navedenega elektronskega naslova. Stopite v stik s skrbnikom sistema.",
- "%s password reset" : "Ponastavitev gesla %s",
- "Couldn't send reset email. Please contact your administrator." : "Ni mogoče nastaviti elektronskega naslova za ponastavitev. Stopite v stik s skrbnikom sistema.",
- "Couldn't send reset email. Please make sure your username is correct." : "Ni mogoče poslati elektronskega sporočila. Prepričajte se, da je uporabniško ime pravilno.",
- "Preparing update" : "Pripravljanje posodobitve",
- "[%d / %d]: %s" : "[%d / %d]: %s",
- "Repair warning: " : "Opozorilo popravila:",
- "Repair error: " : "Napaka popravila:",
- "Please use the command line updater because automatic updating is disabled in the config.php." : "Posodobitev sistema je treba izvesti prek ukazne vrstice, ker je nastavitev samodejne posodobitve v config.php onemogočena.",
- "[%d / %d]: Checking table %s" : "[%d / %d]: Poteka preverjanje razpredelnice %s",
- "Turned on maintenance mode" : "Vzdrževalni način je omogočen",
- "Turned off maintenance mode" : "Vzdrževalni način je onemogočen",
- "Maintenance mode is kept active" : "Vzdrževalni način je še vedno dejaven",
- "Updating database schema" : "Poteka posodabljanje sheme podatkovne zbirke",
- "Updated database" : "Posodobljena podatkovna zbirka",
- "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Poteka preverjanje, ali je shemo podatkovne zbirke mogoče posodobiti (zaradi velikosti je lahko opravilo dolgotrajno).",
- "Checked database schema update" : "Izbrana posodobitev sheme podatkovne zbirke",
- "Checking updates of apps" : "Poteka preverjanje za posodobitve programov",
- "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Poteka preverjanje, ali je shemo podatkovne zbirke za %s mogoče posodobiti (trajanje posodobitve je odvisno od velikosti zbirke).",
- "Checked database schema update for apps" : "Izbrana posodobitev sheme podatkovne zbirke za programe",
- "Updated \"%s\" to %s" : "Datoteka \"%s\" je posodobljena na %s",
- "Set log level to debug" : "Nastavi raven beleženja za razhroščevanje",
- "Reset log level" : "Počisti raven beleženja",
- "Starting code integrity check" : "Začenjanje preverjanja stanja kode",
- "Finished code integrity check" : "Končano preverjanje stanja kode",
- "%s (3rdparty)" : "%s (zunanje)",
- "%s (incompatible)" : "%s (neskladno)",
- "Following apps have been disabled: %s" : "Navedeni programi so onemogočeni: %s",
- "Already up to date" : "Sistem je že posodobljen",
- "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Med preverjanjem celovitosti kode je prišlo do napak. Več podrobnosti …</a>",
- "Settings" : "Nastavitve",
- "Saving..." : "Poteka shranjevanje ...",
- "Dismiss" : "Opusti",
- "Password" : "Geslo",
- "Cancel" : "Prekliči",
- "seconds ago" : "pred nekaj sekundami",
- "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." : "Povezava za ponastavitev gesla je bila poslana na naveden elektronski naslov. V kolikor sporočila ne dobite v kratkem, preverite tudi mapo neželene pošte.<br> Če sporočila ni niti v tej mapi, stopite v stik s skrbnikom.",
- "I know what I'm doing" : "Vem, kaj delam!",
- "Password can not be changed. Please contact your administrator." : "Gesla ni mogoče spremeniti. Stopite v stik s skrbnikom.",
- "No" : "Ne",
- "Yes" : "Da",
- "Choose" : "Izbor",
- "Error loading file picker template: {error}" : "Napaka nalaganja predloge izbirnika datotek: {error}",
- "Error loading message template: {error}" : "Napaka nalaganja predloge sporočil: {error}",
- "read-only" : "le za branje",
- "_{count} file conflict_::_{count} file conflicts_" : ["{count} spor datotek","{count} spora datotek","{count} spori datotek","{count} sporov datotek"],
- "One file conflict" : "En spor datotek",
- "New Files" : "Nove datoteke",
- "Already existing files" : "Obstoječe datoteke",
- "Which files do you want to keep?" : "Katare datoteke želite ohraniti?",
- "If you select both versions, the copied file will have a number added to its name." : "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka.",
- "Continue" : "Nadaljuj",
- "(all selected)" : "(vse izbrano)",
- "({count} selected)" : "({count} izbranih)",
- "Error loading file exists template" : "Napaka nalaganja predloge obstoječih datotek",
- "Very weak password" : "Zelo šibko geslo",
- "Weak password" : "Šibko geslo",
- "So-so password" : "Slabo geslo",
- "Good password" : "Dobro geslo",
- "Strong password" : "Odlično geslo",
- "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je vmesnik WebDAV videti okvarjen.",
- "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Spletni strežnik ni ustrezno nastavljen za razreševanje \"{url}\". Več pdorobnosti je zapisanih v <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentaciji</a>.",
- "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Ni nastavljenega predpomnilnika. Za izboljšanje hitrosti delovanja je treba predpomnilnik memcache, če je na voljo, ustrezno nastaviti. Več podrobnosti je na voljo v <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentaciji</a>.",
- "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Iz varnostnih razlogov je priporočljivo nastaviti dovoljenja ukaza /dev/urandom za branje prek PHP. Več podrobnosti je zavedenih v <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentaciji<-a>",
- "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Trenutno je zagnana različica PHP {version}. Priporočljivo je posodobiti sistem na najnovejšo različico in s tem namestiti <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">funkcijske in varnostne posodobitve delovanja, ki jih zagotavlja skupnost PHP</a>. Pakete je priporočljivo posodobiti takoj, ko so na voljo za nameščeno distribucijo.",
- "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Predpomnilnik memcached je nastavljen kot porazdeljen predpomnilnik, vendar pa je nameščen napačen modul PHP \"memcache\". Modul \\OC\\Memcache\\Memcached podpirao le \"memcached\", ne pa tudi \"memcache\". Več podrobnosti za oba modula je zapisanih <a target=\"_blank\" rel=\"noreferrer\" href=\"{wikiLink}\">na wiki straneh</a>.",
- "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Nekatere datoteke ne opravijo preizkusa celovitosti. Več podrobnosti o težavi je opisanih v <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentaciji</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Seznam neveljavnih datotek …</a> / <a href=\"{rescanEndpoint}\">Ponovni preizkus …</a>)",
- "Error occurred while checking server setup" : "Prišlo je do napake med preverjanjem nastavitev strežnika",
- "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." : "Glava \"{header}\" HTTP ni nastavljena na \"{expected}\". To je potencialno varnostna luknja in vam priporočamo, da to odpravite.",
- "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Do spletišča je omogočen dostop prek protokola HTTP. Priporočljivo je omogočiti podporo za varni protokol HTTPS. Več podrobnosti je zapisanih med <a href=\"{docUrl}\">varnostnimi namigi</a>.",
- "Shared" : "V souporabi",
- "Shared with {recipients}" : "V souporabi z {recipients}",
- "Error setting expiration date" : "Napaka nastavljanja datuma preteka",
- "The public link will expire no later than {days} days after it is created" : "Javna povezava bo potekla {days} dni po ustvarjanju.",
- "Set expiration date" : "Nastavi datum preteka",
- "Expiration" : "Datum preteka",
- "Expiration date" : "Datum preteka",
- "Choose a password for the public link" : "Izberite geslo za javno povezavo",
- "Copied!" : "Skopirano!",
- "Not supported!" : "Ni podprto!",
- "Press ⌘-C to copy." : "Pritisni ⌘-C za kopiranje.",
- "Press Ctrl-C to copy." : "Pritisni Ctrl-C za kopiranje.",
- "Resharing is not allowed" : "Nadaljnja souporaba ni dovoljena",
- "Share link" : "Povezava za prejem",
- "Link" : "Povezava",
- "Password protect" : "Zaščiti z geslom",
- "Allow editing" : "Dovoli urejanje",
- "Email link to person" : "Posreduj povezavo po elektronski pošti",
- "Send" : "Pošlji",
- "Allow upload and editing" : "Dovoli nalaganje in urejanje",
- "Shared with you and the group {group} by {owner}" : "V souporabi z vami in skupino {group}. Lastnik je {owner}.",
- "Shared with you by {owner}" : "V souporabi z vami. Lastnik je {owner}.",
- "group" : "skupina",
- "remote" : "oddaljeno",
- "Unshare" : "Prekliči souporabo",
- "Could not unshare" : "Ni mogoče prekiniti souporabe",
- "Error while sharing" : "Napaka med souporabo",
- "Share details could not be loaded for this item." : "Podrobnosti souporabe za te predmet ni mogoče naložiti.",
- "No users or groups found for {search}" : "Ni najdenih uporabnikov ali skupin za {search}",
- "No users found for {search}" : "Ni uporabnikov, skladnih z iskalnim nizom {search}",
- "An error occurred. Please try again" : "Prišlo je do napake. Poskusite znova.",
- "{sharee} (group)" : "{sharee} (skupina)",
- "{sharee} (remote)" : "{sharee} (oddaljeno)",
- "Share" : "Souporaba",
- "Error" : "Napaka",
- "Error removing share" : "Napaka odstranjevanja souporabe",
- "Non-existing tag #{tag}" : "Neobstoječa oznaka #{tag}",
- "restricted" : "omejeno",
- "invisible" : "nevidno",
- "({scope})" : "({scope})",
- "Delete" : "Izbriši",
- "Rename" : "Preimenuj",
- "Collaborative tags" : "Oznake sodelovanja",
- "unknown text" : "neznano besedilo",
- "Hello world!" : "Pozdravljen svet!",
- "sunny" : "sončno",
- "Hello {name}, the weather is {weather}" : "Pozdravljeni, {name}, vreme je {weather}",
- "Hello {name}" : "Pozdravljeni, {name}",
- "new" : "novo",
- "_download %n file_::_download %n files_" : ["prejmi %n datoteko","prejmi %n datoteki","prejmi %n datoteke","prejmi %n datotek"],
- "The update is in progress, leaving this page might interrupt the process in some environments." : "Posodobitev je v teku. Če zapustiš to stran, lahko, v določenih okoljih, prekineš proces",
- "Update to {version}" : "Posodobi na {version}",
- "An error occurred." : "Prišlo je do napake.",
- "Please reload the page." : "Stran je treba ponovno naložiti",
- "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "Posodobitev je spodletela. Za več podrobnosti o napaki je <a href=\"{url}\">objavljenih na forumu</a>.",
- "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud community</a>." : "Posodobitev ni bila uspešna. Prosimo, prijavite to situacijo na <a href=\"https://github.com/nextcloud/server/issues\" target=\"_blank\">Nextcloud skupnost</a>.",
- "Continue to Nextcloud" : "Nadaljuj na Nextcloud",
- "Searching other places" : "Iskanje drugih mest",
- "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} rezultat v drugih mapah","{count} rezultata v drugih mapah","{count} rezultatov v drugih mapah","{count} rezultatov v drugih mapah"],
- "Personal" : "Osebno",
- "Users" : "Uporabniki",
- "Apps" : "Programi",
- "Admin" : "Skrbništvo",
- "Help" : "Pomoč",
- "Access forbidden" : "Dostop je prepovedan",
- "File not found" : "Datoteke ni mogoče najti",
- "The specified document has not been found on the server." : "Določenega dokumenta na strežniku ni mogoče najti.",
- "You can click here to return to %s." : "S klikom na povezavo boste vrnjeni na %s.",
- "Internal Server Error" : "Notranja napaka strežnika",
- "The server encountered an internal error and was unable to complete your request." : "Prišlo je do notranje napake, zato ni mogoče končati zahteve.",
- "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." : "Stopite v stik s skrbnikom sistema, če se napaka pojavlja pogosto. V poročilo vključite tudi tehnične podatke v dnevniški datoteki.",
- "More details can be found in the server log." : "Več podrobnosti je zabeleženih v dnevniku strežnika.",
- "Technical details" : "Tehnične podrobnosti",
- "Remote Address: %s" : "Oddaljen naslov: %s",
- "Request ID: %s" : "ID zahteve: %s",
- "Type: %s" : "Vrsta: %s",
- "Code: %s" : "Koda: %s",
- "Message: %s" : "Sporočilo: %s",
- "File: %s" : "Datoteka: %s",
- "Line: %s" : "Vrstica: %s",
- "Trace" : "Sledenje povezav",
- "Security warning" : "Varnostno opozorilo",
- "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.",
- "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Za več podrobnosti o pravilnem nastavljanju strežnika si oglejte <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">dokumentacijo</a>.",
- "Create an <strong>admin account</strong>" : "Ustvari <strong>skrbniški račun</strong>",
- "Username" : "Uporabniško ime",
- "Storage & database" : "Shramba in podatkovna zbirka",
- "Data folder" : "Podatkovna mapa",
- "Configure the database" : "Nastavi podatkovno zbirko",
- "Only %s is available." : "Le %s je na voljo.",
- "Install and activate additional PHP modules to choose other database types." : "Namestite in omogočite dodatne module PHP za izbor drugih vrst podatkovnih zbirk.",
- "For more details check out the documentation." : "Za več podrobnosti preverite dokumentacijo.",
- "Database user" : "Uporabnik podatkovne zbirke",
- "Database password" : "Geslo podatkovne zbirke",
- "Database name" : "Ime podatkovne zbirke",
- "Database tablespace" : "Razpredelnica podatkovne zbirke",
- "Database host" : "Gostitelj podatkovne zbirke",
- "Performance warning" : "Opozorilo učinkovitosti delovanja",
- "SQLite will be used as database." : "Kot podatkovna zbirka bo uporabljena zbirka SQLite",
- "For larger installations we recommend to choose a different database backend." : "Za večje namestitve je priporočljivo uporabiti drugo ozadnji program zbirke podatkov.",
- "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Uporaba SQLite ni priporočljiva iz varnostnih razlogov, še posebej če se sistem krajevno usklajuje z namizjem prek odjemalca.",
- "Finish setup" : "Končaj nastavitev",
- "Finishing …" : "Poteka zaključevanje opravila ...",
- "Need help?" : "Ali potrebujete pomoč?",
- "See the documentation" : "Preverite dokumentacijo",
- "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Program zahteva podporo JavaScript za pravilno delovanje. Med nastavitvami omogočite {linkstart}JavaScript{linkend} in osvežite spletno stran.",
- "Search" : "Poišči",
- "Server side authentication failed!" : "Overitev s strežnika je spodletela!",
- "Please contact your administrator." : "Stopite v stik s skrbnikom sistema.",
- "An internal error occurred." : "Prišlo je do notranje napake.",
- "Please try again or contact your administrator." : "Poskusite znova ali pa stopite v stik s skrbnikom sistema.",
- "Username or email" : "Uporabniško ime ali elektronski naslov",
- "Wrong password. Reset it?" : "Napačno geslo. Ali ga želite ponastaviti?",
- "Wrong password." : "Napačno geslo!",
- "Log in" : "Prijava",
- "Stay logged in" : "Ohrani prijavo",
- "Alternative Logins" : "Druge prijavne možnosti",
- "New password" : "Novo geslo",
- "New Password" : "Novo geslo",
- "Reset password" : "Ponastavi geslo",
- "This Nextcloud instance is currently in single user mode." : "Ta seja oblaka Nextcloud je trenutno v načinu enega sočasnega uporabnika.",
- "This means only administrators can use the instance." : "To pomeni, da lahko oblak uporabljajo le osebe s skrbniškimi dovoljenji.",
- "Contact your system administrator if this message persists or appeared unexpectedly." : "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo.",
- "Thank you for your patience." : "Hvala za potrpežljivost!",
- "Log out" : "Odjava",
- "Two-factor authentication" : "Dvo-stopenjska prijava",
- "Enhanced security is enabled for your account. Please authenticate using a second factor." : "Na tvojem računu je vključena napredna varnost. Prosim, prijavi se z drugim korakom.",
- "Cancel log in" : "Prekini prijavo",
- "Use backup code" : "Uporabi rezervno šifro",
- "Error while validating your second factor" : "Napaka med preverjanjem drugega koraka",
- "You are accessing the server from an untrusted domain." : "Trenutno je vzpostavljena povezava s strežnikom preko ne-varne domene.",
- "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Glede na nastavitve bi lahko kot skrbnik uporabili spodnji gumb in domeno ročno določili kot varno.",
- "Add \"%s\" as trusted domain" : "Dodaj \"%s\" kot varno domeno",
- "App update required" : "Zahtevana je posodobitev programa",
- "%s will be updated to version %s" : "%s bo posodobljen na različico %s.",
- "These apps will be updated:" : "Posodobljeni bodo naslednji vstavki:",
- "These incompatible apps will be disabled:" : "Ti neskladni vstavki bodo onemogočeni:",
- "The theme %s has been disabled." : "Tema %s je onemogočena za uporabo.",
- "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Pred nadaljevanjem se prepričajte se, da je ustvarjena varnostna kopija podatkovne zbirke, nastavitvenih datotek in podatkovne mape.",
- "Start update" : "Začni posodobitev",
- "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Za razreševanje časovnih zahtev večjih namestitev lahko uporabite ukaz iz namestitvene mape:",
- "Detailed logs" : "Podrobni dnevniški zapisi",
- "Update needed" : "Zahtevana je posodobitev",
- "Please use the command line updater because you have a big instance." : "Posodobitev večjih namestitev je priporočljivo izvesti prek ukazne vrstice.",
- "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Za več podrobnosti si oglejte <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentacijo</a>.",
- "This %s instance is currently in maintenance mode, which may take a while." : "Strežnik %s je trenutno v načinu vzdrževanja, kar lahko traja.",
- "This page will refresh itself when the %s instance is available again." : "Stran bo osvežena ko bo %s spet na voljo.",
- "Problem loading page, reloading in 5 seconds" : "Napaka nalaganja strani! Poskus ponovnega nalaganja bo izveden čez 5 sekund.",
- "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?" : "Datoteke so šifrirane. Če niste omogočili obnovitvenega ključa, po ponastavitvi gesla ne bo mogoč dostop do datotek.<br />V primeru, da niste prepričani, kaj storiti, stopite v stik s skrbnikom sistema.<br />Ali ste prepričani, da želite nadaljevati?",
- "Ok" : "V redu",
- "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Podatkovna mapa in datoteke so najverjetneje dostopni prek Interneta, ker datoteka .htaccess ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da dostop prek zunanjega omrežja ni mogoč, ali pa tako, da podatkovna mapa ni znotraj korenske mape strežnika.",
- "Error while unsharing" : "Napaka med odstranjevanjem souporabe",
- "can edit" : "lahko ureja",
- "access control" : "nadzor dostopa",
- "The object type is not specified." : "Vrsta predmeta ni podana.",
- "Enter new" : "Vnesite novo",
- "Add" : "Dodaj",
- "Edit tags" : "Uredi oznake",
- "Error loading dialog template: {error}" : "Napaka nalaganja predloge pogovornega okna: {error}",
- "No tags selected for deletion." : "Ni izbranih oznak za izbris.",
- "The update was successful. Redirecting you to Nextcloud now." : "Posodobitev je bila uspešna. Stran bo preusmerjena na NextCloud",
- "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" : "Pozdravljeni,\n\noseba %s vam je omogočila souporabo %s.\nVir si lahko ogledate: %s\n\n",
- "The share will expire on %s." : "Povezava souporabe bo potekla %s.",
- "Cheers!" : "Lep pozdrav!",
- "Use the following link to reset your password: {link}" : "Za ponastavitev gesla uporabite povezavo: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Pozdravljeni,<br><br>uporabnik %s vam je omogočil souporabo <strong>%s</strong>.<br><a href=\"%s\">Oglejte si vsebino!</a><br><br>"
-},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
-} \ No newline at end of file
diff --git a/core/l10n/sq.js b/core/l10n/sq.js
index 2191b413f65..3fe6612402b 100644
--- a/core/l10n/sq.js
+++ b/core/l10n/sq.js
@@ -14,9 +14,13 @@ OC.L10N.register(
"No crop data provided" : "S’u dhanë të dhëna qethjeje",
"No valid crop data provided" : "S’u dhanë të dhëna qethjeje të vlefshme",
"Crop is not square" : "Qethja s’është katrore",
+ "Password reset is disabled" : "Opsioni për rigjenerimin e fjalëkalimit është çaktivizuar",
"Couldn't reset password because the token is invalid" : "S’u ricaktua dot fjalëkalimi, ngaqë token-i është i pavlefshëm",
"Couldn't reset password because the token is expired" : "S’u ricaktua dot fjalëkalimi, ngaqë token-i ka skaduar",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "S’u dërgua dot email ricaktimi, ngaqë s’ka adresë email për këtë përdoruesi. Ju lutemi, lidhuni me përgjegjësin tuaj.",
+ "Password reset" : "Fjalkalimi u rivendos",
+ "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Klikoni ne 'link-un' e rradhes per te rivendosur fjalekalimin tuaj.Nese nuk e keni vendosur akoma fjalekalimin atehere mos e merrni parasysh kete email.",
+ "Reset your password" : "Rivendosni nje fjalekalim te ri",
"%s password reset" : "U ricaktua fjalëkalimi për %s",
"Couldn't send reset email. Please contact your administrator." : "S’u dërgua dot email-i i ricaktimit. Ju lutemi, lidhuni me përgjegjësin tuaj.",
"Couldn't send reset email. Please make sure your username is correct." : "S’u dërgua dot email ricaktimi. Ju lutemi, sigurohuni që emri juaj i përdoruesit është i saktë.",
@@ -34,6 +38,8 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Po kontrollohet nëse mund të përditësohet skema e bazës së të dhënave (kjo mund të hajë shumë kohë, varet nga madhësia e bazës së të dhënave)",
"Checked database schema update" : "U kontrollua përditësimi i skemës së bazës së të dhënave",
"Checking updates of apps" : "Po kontrollohen përditësime të aplikacionit",
+ "Checking for update of app \"%s\" in appstore" : "Duke kontrolluar për përditësim të aplikacionit \"%s\" në appstore.",
+ "Update app \"%s\" from appstore" : "Përditëso aplikacionin \"%s\" nga appstore",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Po kontrollohet nëse mund të përditësohet skema e bazës së të dhënave për %s (kjo mund të hajë shumë kohë, varet nga madhësia e bazës së të dhënave)",
"Checked database schema update for apps" : "U kontrollua përditësimi i skemës së bazës së të dhënave për aplikacionet",
"Updated \"%s\" to %s" : "U përditësua \"%s\" në %s",
@@ -45,6 +51,7 @@ OC.L10N.register(
"%s (incompatible)" : "%s (e papërputhshme)",
"Following apps have been disabled: %s" : "Janë çaktivizuar aplikacionet vijuese : %s",
"Already up to date" : "Tashmë e përditësuar",
+ "No contacts found" : "Nuk jane gjetur kontakte",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Pati probleme me kontrollin e integritetit të kodit. Më tepër të dhëna…</a>",
"Settings" : "Rregullime",
"Connection to server lost" : "Lidhja me serverin u shkëput",
@@ -210,6 +217,7 @@ OC.L10N.register(
"Need help?" : "Ju duhet ndihmë?",
"See the documentation" : "Shihni dokumentimin",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Ky aplikacion lyp JavaScript për punim të saktë. Ju lutemi, {linkstart}aktivizoni JavaScript-in{linkend} dhe ringarkoni faqen.",
+ "More apps" : "Më shumë aplikacione",
"Search" : "Kërko",
"This action requires you to confirm your password:" : "Ky veprim kërkon të konfirmoni fjalëkalimin tuaj:",
"Confirm your password" : "Konfrimoni fjalëkalimin tuaj",
@@ -250,7 +258,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Për të shmangur çaste bllokimi pune me instalime të mëdha, mundeni të ekzekutoni urdhrin vijues që nga drejtoria juaj e instalimit:",
"Detailed logs" : "Regjistrime të hollësishme",
"Update needed" : "Lyp përditësim",
- "Please use the command line updater because you have a big instance." : "Ju lutemi, përdorni përditësuesin e rreshtit të urdhrave, sepse keni një instalim të madh.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Për ndihmë, shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Kjo instancë %s hëpërhë gjendet nën mënyrën mirëmbajtje, çka mund të zgjasë ca.",
"This page will refresh itself when the %s instance is available again." : "Kjo faqe do të rifreskohet vetiu, sapo instanca %s të jetë sërish gati.",
@@ -286,6 +293,7 @@ OC.L10N.register(
"The share will expire on %s." : "Ndarja do të skadojë më %s.",
"Cheers!" : "Gëzuar!",
"Use the following link to reset your password: {link}" : "Që të ricaktoni fjalëkalimin tuaj, përdorni lidhjen vijuese: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Njatjeta,<br><br>thjesht po ju bëjmë të ditur që %s ndau me ju <strong>%s</strong>.<br><a href=\"%s\">Shiheni!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Njatjeta,<br><br>thjesht po ju bëjmë të ditur që %s ndau me ju <strong>%s</strong>.<br><a href=\"%s\">Shiheni!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Ju lutemi, përdorni përditësuesin e rreshtit të urdhrave, sepse keni një instalim të madh."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/sq.json b/core/l10n/sq.json
index d8c9e26087d..d2d8882db22 100644
--- a/core/l10n/sq.json
+++ b/core/l10n/sq.json
@@ -12,9 +12,13 @@
"No crop data provided" : "S’u dhanë të dhëna qethjeje",
"No valid crop data provided" : "S’u dhanë të dhëna qethjeje të vlefshme",
"Crop is not square" : "Qethja s’është katrore",
+ "Password reset is disabled" : "Opsioni për rigjenerimin e fjalëkalimit është çaktivizuar",
"Couldn't reset password because the token is invalid" : "S’u ricaktua dot fjalëkalimi, ngaqë token-i është i pavlefshëm",
"Couldn't reset password because the token is expired" : "S’u ricaktua dot fjalëkalimi, ngaqë token-i ka skaduar",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "S’u dërgua dot email ricaktimi, ngaqë s’ka adresë email për këtë përdoruesi. Ju lutemi, lidhuni me përgjegjësin tuaj.",
+ "Password reset" : "Fjalkalimi u rivendos",
+ "Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Klikoni ne 'link-un' e rradhes per te rivendosur fjalekalimin tuaj.Nese nuk e keni vendosur akoma fjalekalimin atehere mos e merrni parasysh kete email.",
+ "Reset your password" : "Rivendosni nje fjalekalim te ri",
"%s password reset" : "U ricaktua fjalëkalimi për %s",
"Couldn't send reset email. Please contact your administrator." : "S’u dërgua dot email-i i ricaktimit. Ju lutemi, lidhuni me përgjegjësin tuaj.",
"Couldn't send reset email. Please make sure your username is correct." : "S’u dërgua dot email ricaktimi. Ju lutemi, sigurohuni që emri juaj i përdoruesit është i saktë.",
@@ -32,6 +36,8 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Po kontrollohet nëse mund të përditësohet skema e bazës së të dhënave (kjo mund të hajë shumë kohë, varet nga madhësia e bazës së të dhënave)",
"Checked database schema update" : "U kontrollua përditësimi i skemës së bazës së të dhënave",
"Checking updates of apps" : "Po kontrollohen përditësime të aplikacionit",
+ "Checking for update of app \"%s\" in appstore" : "Duke kontrolluar për përditësim të aplikacionit \"%s\" në appstore.",
+ "Update app \"%s\" from appstore" : "Përditëso aplikacionin \"%s\" nga appstore",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Po kontrollohet nëse mund të përditësohet skema e bazës së të dhënave për %s (kjo mund të hajë shumë kohë, varet nga madhësia e bazës së të dhënave)",
"Checked database schema update for apps" : "U kontrollua përditësimi i skemës së bazës së të dhënave për aplikacionet",
"Updated \"%s\" to %s" : "U përditësua \"%s\" në %s",
@@ -43,6 +49,7 @@
"%s (incompatible)" : "%s (e papërputhshme)",
"Following apps have been disabled: %s" : "Janë çaktivizuar aplikacionet vijuese : %s",
"Already up to date" : "Tashmë e përditësuar",
+ "No contacts found" : "Nuk jane gjetur kontakte",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">Pati probleme me kontrollin e integritetit të kodit. Më tepër të dhëna…</a>",
"Settings" : "Rregullime",
"Connection to server lost" : "Lidhja me serverin u shkëput",
@@ -208,6 +215,7 @@
"Need help?" : "Ju duhet ndihmë?",
"See the documentation" : "Shihni dokumentimin",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Ky aplikacion lyp JavaScript për punim të saktë. Ju lutemi, {linkstart}aktivizoni JavaScript-in{linkend} dhe ringarkoni faqen.",
+ "More apps" : "Më shumë aplikacione",
"Search" : "Kërko",
"This action requires you to confirm your password:" : "Ky veprim kërkon të konfirmoni fjalëkalimin tuaj:",
"Confirm your password" : "Konfrimoni fjalëkalimin tuaj",
@@ -248,7 +256,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Për të shmangur çaste bllokimi pune me instalime të mëdha, mundeni të ekzekutoni urdhrin vijues që nga drejtoria juaj e instalimit:",
"Detailed logs" : "Regjistrime të hollësishme",
"Update needed" : "Lyp përditësim",
- "Please use the command line updater because you have a big instance." : "Ju lutemi, përdorni përditësuesin e rreshtit të urdhrave, sepse keni një instalim të madh.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Për ndihmë, shihni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentimin</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Kjo instancë %s hëpërhë gjendet nën mënyrën mirëmbajtje, çka mund të zgjasë ca.",
"This page will refresh itself when the %s instance is available again." : "Kjo faqe do të rifreskohet vetiu, sapo instanca %s të jetë sërish gati.",
@@ -284,6 +291,7 @@
"The share will expire on %s." : "Ndarja do të skadojë më %s.",
"Cheers!" : "Gëzuar!",
"Use the following link to reset your password: {link}" : "Që të ricaktoni fjalëkalimin tuaj, përdorni lidhjen vijuese: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Njatjeta,<br><br>thjesht po ju bëjmë të ditur që %s ndau me ju <strong>%s</strong>.<br><a href=\"%s\">Shiheni!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Njatjeta,<br><br>thjesht po ju bëjmë të ditur që %s ndau me ju <strong>%s</strong>.<br><a href=\"%s\">Shiheni!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Ju lutemi, përdorni përditësuesin e rreshtit të urdhrave, sepse keni një instalim të madh."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/sv.js b/core/l10n/sv.js
index ae2e6558cf8..156b471d23d 100644
--- a/core/l10n/sv.js
+++ b/core/l10n/sv.js
@@ -284,7 +284,6 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "För att undvika timeout vid större installationer kan du istället köra följande kommando från din installationskatalog:",
"Detailed logs" : "Detaljerade loggar",
"Update needed" : "Uppdatering krävs",
- "Please use the command line updater because you have a big instance." : "Vänligen använd den kommandotolksbaserade uppdateringen eftersom du har en stor instans.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "För hjälp, se <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentationen</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Denna %s instans befinner sig för närvarande i underhållsläge, vilket kan ta ett tag.",
"This page will refresh itself when the %s instance is available again." : "Denna sida uppdaterar sig själv när %s instansen är tillgänglig igen.",
@@ -320,6 +319,7 @@ OC.L10N.register(
"The share will expire on %s." : "Delningen kommer att upphöra %s.",
"Cheers!" : "Ha de fint!",
"Use the following link to reset your password: {link}" : "Använd följande länk för att återställa lösenordet: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hej där,<br><br>Tänkte bara informera dig om att %s delade <strong>%s</strong> med dig.<br><a href=\"%s\">Klicka här för att se!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hej där,<br><br>Tänkte bara informera dig om att %s delade <strong>%s</strong> med dig.<br><a href=\"%s\">Klicka här för att se!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Vänligen använd den kommandotolksbaserade uppdateringen eftersom du har en stor instans."
},
"nplurals=2; plural=(n != 1);");
diff --git a/core/l10n/sv.json b/core/l10n/sv.json
index 9a02191d2b0..397f8e82bc3 100644
--- a/core/l10n/sv.json
+++ b/core/l10n/sv.json
@@ -282,7 +282,6 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "För att undvika timeout vid större installationer kan du istället köra följande kommando från din installationskatalog:",
"Detailed logs" : "Detaljerade loggar",
"Update needed" : "Uppdatering krävs",
- "Please use the command line updater because you have a big instance." : "Vänligen använd den kommandotolksbaserade uppdateringen eftersom du har en stor instans.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "För hjälp, se <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentationen</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "Denna %s instans befinner sig för närvarande i underhållsläge, vilket kan ta ett tag.",
"This page will refresh itself when the %s instance is available again." : "Denna sida uppdaterar sig själv när %s instansen är tillgänglig igen.",
@@ -318,6 +317,7 @@
"The share will expire on %s." : "Delningen kommer att upphöra %s.",
"Cheers!" : "Ha de fint!",
"Use the following link to reset your password: {link}" : "Använd följande länk för att återställa lösenordet: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hej där,<br><br>Tänkte bara informera dig om att %s delade <strong>%s</strong> med dig.<br><a href=\"%s\">Klicka här för att se!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hej där,<br><br>Tänkte bara informera dig om att %s delade <strong>%s</strong> med dig.<br><a href=\"%s\">Klicka här för att se!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Vänligen använd den kommandotolksbaserade uppdateringen eftersom du har en stor instans."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
} \ No newline at end of file
diff --git a/core/l10n/tr.js b/core/l10n/tr.js
index ee4814e98ba..f6fa550ea94 100644
--- a/core/l10n/tr.js
+++ b/core/l10n/tr.js
@@ -16,6 +16,7 @@ OC.L10N.register(
"Crop is not square" : "Kırpma kare şeklinde değil",
"State token does not match" : "Durum kodu eşleşmiyor",
"Auth flow can only be started unauthenticated." : "Kimlik doğrulama işlemi yalnız kimlik doğrulanmamışken başlatılabilir.",
+ "Password reset is disabled" : "Parola sıfırlama devre dışı bırakılmış",
"Couldn't reset password because the token is invalid" : "Kod geçersiz olduğundan parola sıfırlanamadı",
"Couldn't reset password because the token is expired" : "Kodun süresi geçtiğinden parola sıfırlanamadı",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Bu kullanıcı için bir e-posta adresi olmadığından sıfırlama e-postası gönderilemedi. Lütfen yöneticiniz ile görüşün.",
@@ -40,6 +41,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Veritabanı şeması güncellemesi denetleniyor (veritabanının büyüklüğüne bağlı olarak uzun sürebilir)",
"Checked database schema update" : "Veritabanı şeması güncellemesi denetlendi",
"Checking updates of apps" : "Uygulama güncellemeleri denetleniyor",
+ "Checking for update of app \"%s\" in appstore" : "\"%s\" uygulamasının güncellemesi uygulama mağazasından denetleniyor",
+ "Update app \"%s\" from appstore" : "\"%s\" uygulamasını uygulama mağazasından güncelle",
+ "Checked for update of app \"%s\" in appstore" : "\"%s\" uygulama mağazasının güncellemesi uygulama mağazasından denetlendi",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "%s için veritabanı şeması güncellemesi denetleniyor (veritabanının büyüklüğüne bağlı olarak uzun sürebilir)",
"Checked database schema update for apps" : "Uygulamalar için veritabanı şema güncellemesi denetlendi",
"Updated \"%s\" to %s" : "\"%s\", %s sürümüne güncellendi",
@@ -298,7 +302,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Daha büyük kurulumlarda zaman aşımlarının önüne geçmek için, kurulum klasörünüzden şu komutu da çalıştırabilirsiniz:",
"Detailed logs" : "Ayrıntılı günlükler",
"Update needed" : "Güncelleme gerekiyor",
- "Please use the command line updater because you have a big instance." : "Kopyanız oldukça büyük olduğundan güncelleme için komut satırını kullanın.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "50 üzerinde kullanıcısı olan bir kopya kullandığınız için lütfen komut satırı güncelleyiciyi kullanın.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Yardım almak için, <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">belgelere</a> bakın.",
"This %s instance is currently in maintenance mode, which may take a while." : "Bu %s kopyası şu anda bakım kipinde, bu işlem biraz zaman alabilir.",
"This page will refresh itself when the %s instance is available again." : "Bu sayfa, %s kopyası yeniden kullanılabilir olduğunda kendini yenileyecek.",
@@ -334,6 +338,7 @@ OC.L10N.register(
"The share will expire on %s." : "Bu paylaşım %s tarihinde sona erecek.",
"Cheers!" : "Hoşça kalın!",
"Use the following link to reset your password: {link}" : "Parolanızı sıfırlamak için şu bağlantıyı kullanın: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı şuradan görebilirsiniz!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı şuradan görebilirsiniz!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Kopyanız oldukça büyük olduğundan güncelleme için komut satırını kullanın."
},
"nplurals=2; plural=(n > 1);");
diff --git a/core/l10n/tr.json b/core/l10n/tr.json
index f61c8da34d5..19d83b6a214 100644
--- a/core/l10n/tr.json
+++ b/core/l10n/tr.json
@@ -14,6 +14,7 @@
"Crop is not square" : "Kırpma kare şeklinde değil",
"State token does not match" : "Durum kodu eşleşmiyor",
"Auth flow can only be started unauthenticated." : "Kimlik doğrulama işlemi yalnız kimlik doğrulanmamışken başlatılabilir.",
+ "Password reset is disabled" : "Parola sıfırlama devre dışı bırakılmış",
"Couldn't reset password because the token is invalid" : "Kod geçersiz olduğundan parola sıfırlanamadı",
"Couldn't reset password because the token is expired" : "Kodun süresi geçtiğinden parola sıfırlanamadı",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "Bu kullanıcı için bir e-posta adresi olmadığından sıfırlama e-postası gönderilemedi. Lütfen yöneticiniz ile görüşün.",
@@ -38,6 +39,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Veritabanı şeması güncellemesi denetleniyor (veritabanının büyüklüğüne bağlı olarak uzun sürebilir)",
"Checked database schema update" : "Veritabanı şeması güncellemesi denetlendi",
"Checking updates of apps" : "Uygulama güncellemeleri denetleniyor",
+ "Checking for update of app \"%s\" in appstore" : "\"%s\" uygulamasının güncellemesi uygulama mağazasından denetleniyor",
+ "Update app \"%s\" from appstore" : "\"%s\" uygulamasını uygulama mağazasından güncelle",
+ "Checked for update of app \"%s\" in appstore" : "\"%s\" uygulama mağazasının güncellemesi uygulama mağazasından denetlendi",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "%s için veritabanı şeması güncellemesi denetleniyor (veritabanının büyüklüğüne bağlı olarak uzun sürebilir)",
"Checked database schema update for apps" : "Uygulamalar için veritabanı şema güncellemesi denetlendi",
"Updated \"%s\" to %s" : "\"%s\", %s sürümüne güncellendi",
@@ -296,7 +300,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "Daha büyük kurulumlarda zaman aşımlarının önüne geçmek için, kurulum klasörünüzden şu komutu da çalıştırabilirsiniz:",
"Detailed logs" : "Ayrıntılı günlükler",
"Update needed" : "Güncelleme gerekiyor",
- "Please use the command line updater because you have a big instance." : "Kopyanız oldukça büyük olduğundan güncelleme için komut satırını kullanın.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "50 üzerinde kullanıcısı olan bir kopya kullandığınız için lütfen komut satırı güncelleyiciyi kullanın.",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Yardım almak için, <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">belgelere</a> bakın.",
"This %s instance is currently in maintenance mode, which may take a while." : "Bu %s kopyası şu anda bakım kipinde, bu işlem biraz zaman alabilir.",
"This page will refresh itself when the %s instance is available again." : "Bu sayfa, %s kopyası yeniden kullanılabilir olduğunda kendini yenileyecek.",
@@ -332,6 +336,7 @@
"The share will expire on %s." : "Bu paylaşım %s tarihinde sona erecek.",
"Cheers!" : "Hoşça kalın!",
"Use the following link to reset your password: {link}" : "Parolanızı sıfırlamak için şu bağlantıyı kullanın: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı şuradan görebilirsiniz!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı şuradan görebilirsiniz!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "Kopyanız oldukça büyük olduğundan güncelleme için komut satırını kullanın."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/core/l10n/zh_CN.js b/core/l10n/zh_CN.js
index b76ad7583d6..29304daddc0 100644
--- a/core/l10n/zh_CN.js
+++ b/core/l10n/zh_CN.js
@@ -15,6 +15,7 @@ OC.L10N.register(
"No valid crop data provided" : "没有提供有效的裁剪数据",
"Crop is not square" : "裁剪的不是正方形",
"State token does not match" : "状态令牌无法匹配",
+ "Password reset is disabled" : "密码重置不可用",
"Couldn't reset password because the token is invalid" : "令牌无效, 无法重置密码",
"Couldn't reset password because the token is expired" : "令牌已过期, 无法重置密码",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "该用户没有设置电子邮件地址, 无发送重置邮件. 请联系管理员.",
@@ -39,6 +40,9 @@ OC.L10N.register(
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "检查数据库结构是否可以更新 (这可能需要很长的时间, 这取决于数据库大小)",
"Checked database schema update" : "已经检查数据库结构更新",
"Checking updates of apps" : "检查更新应用",
+ "Checking for update of app \"%s\" in appstore" : "检查%s应用是否有更新",
+ "Update app \"%s\" from appstore" : "从应用商店更新%s应用",
+ "Checked for update of app \"%s\" in appstore" : "已检查%s应用的是否有更新",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "检查 %s 的数据库结构是否可以更新 (这可能需要很长的时间, 这取决于数据库大小)",
"Checked database schema update for apps" : "已经检查应用的数据库结构更新",
"Updated \"%s\" to %s" : "更新 \"%s\" 为 %s",
@@ -57,6 +61,7 @@ OC.L10N.register(
"Looking for {term} …" : "查找 {term} ...",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">代码完整性检查出现异常, 点击查看详细信息...</a>",
"No action available" : "无可用操作",
+ "Error fetching contact actions" : "查找联系人时出错",
"Settings" : "设置",
"Connection to server lost" : "与服务器的连接断开",
"_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["加载页面出现问题,将在 %n 秒后重新加载"],
@@ -138,6 +143,7 @@ OC.L10N.register(
"Send" : "发送",
"Allow upload and editing" : "允许上传和编辑",
"Read only" : "只读",
+ "Secure drop (upload only)" : "安全删除 (仅上传)",
"Shared with you and the group {group} by {owner}" : "{owner} 分享给您及 {group} 分组",
"Shared with you by {owner}" : "{owner} 分享给您",
"Choose a password for the mail share" : "为电子邮件分享选择一个密码",
@@ -166,6 +172,9 @@ OC.L10N.register(
"{sharee} (email)" : "{sharee} (邮件)",
"{sharee} ({type}, {owner})" : "{share}({type},{owner})",
"Share" : "分享",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "通过输入用户或组,联合云ID或电子邮件地址与其他人分享。",
+ "Share with other people by entering a user or group or a federated cloud ID." : "通过输入用户或组或联合云ID与其他人共享。",
+ "Share with other people by entering a user or group or an email address." : "输入用户/组织或邮箱地址来分享给其他人",
"Name or email address..." : "姓名或电子邮件地址...",
"Name or federated cloud ID..." : "姓名或联合云 ID",
"Name, federated cloud ID or email address..." : "姓名, 联合云 ID 或电子邮件地址...",
@@ -262,6 +271,7 @@ OC.L10N.register(
"Stay logged in" : "保持登录",
"Alternative Logins" : "其他登录方式",
"App token" : "App 令牌",
+ "Alternative login using app token" : "使用应用程序令牌替代登录",
"Redirecting …" : "正在转向...",
"New password" : "新密码",
"New Password" : "新密码",
@@ -290,7 +300,7 @@ OC.L10N.register(
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "为避免较大安装时的超时, 您可以在安装目录下执行下述的命令:",
"Detailed logs" : "详细日志",
"Update needed" : "需要更新",
- "Please use the command line updater because you have a big instance." : "由于您的实例较大, 请使用命令行更新.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "请使用命令行更新,因为您有一个超过50个用户的大型实例。",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "获取更多帮助, 请查看 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">文档</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "该实例 %s 当前处于维护模式, 这将花费一些时间.",
"This page will refresh itself when the %s instance is available again." : "当实例 %s 再次可用时此页面将刷新.",
@@ -326,6 +336,7 @@ OC.L10N.register(
"The share will expire on %s." : "此分享将在 %s 过期.",
"Cheers!" : "干杯!",
"Use the following link to reset your password: {link}" : "使用以下链接重置您的密码: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨、你好,<br><br>只想让你知道 %s 分享了 <strong>%s</strong> 给你。<br><a href=\"%s\">现在查看!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨、你好,<br><br>只想让你知道 %s 分享了 <strong>%s</strong> 给你。<br><a href=\"%s\">现在查看!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "由于您的实例较大, 请使用命令行更新."
},
"nplurals=1; plural=0;");
diff --git a/core/l10n/zh_CN.json b/core/l10n/zh_CN.json
index fbbd08bb313..ef630385032 100644
--- a/core/l10n/zh_CN.json
+++ b/core/l10n/zh_CN.json
@@ -13,6 +13,7 @@
"No valid crop data provided" : "没有提供有效的裁剪数据",
"Crop is not square" : "裁剪的不是正方形",
"State token does not match" : "状态令牌无法匹配",
+ "Password reset is disabled" : "密码重置不可用",
"Couldn't reset password because the token is invalid" : "令牌无效, 无法重置密码",
"Couldn't reset password because the token is expired" : "令牌已过期, 无法重置密码",
"Could not send reset email because there is no email address for this username. Please contact your administrator." : "该用户没有设置电子邮件地址, 无发送重置邮件. 请联系管理员.",
@@ -37,6 +38,9 @@
"Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "检查数据库结构是否可以更新 (这可能需要很长的时间, 这取决于数据库大小)",
"Checked database schema update" : "已经检查数据库结构更新",
"Checking updates of apps" : "检查更新应用",
+ "Checking for update of app \"%s\" in appstore" : "检查%s应用是否有更新",
+ "Update app \"%s\" from appstore" : "从应用商店更新%s应用",
+ "Checked for update of app \"%s\" in appstore" : "已检查%s应用的是否有更新",
"Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "检查 %s 的数据库结构是否可以更新 (这可能需要很长的时间, 这取决于数据库大小)",
"Checked database schema update for apps" : "已经检查应用的数据库结构更新",
"Updated \"%s\" to %s" : "更新 \"%s\" 为 %s",
@@ -55,6 +59,7 @@
"Looking for {term} …" : "查找 {term} ...",
"<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">代码完整性检查出现异常, 点击查看详细信息...</a>",
"No action available" : "无可用操作",
+ "Error fetching contact actions" : "查找联系人时出错",
"Settings" : "设置",
"Connection to server lost" : "与服务器的连接断开",
"_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["加载页面出现问题,将在 %n 秒后重新加载"],
@@ -136,6 +141,7 @@
"Send" : "发送",
"Allow upload and editing" : "允许上传和编辑",
"Read only" : "只读",
+ "Secure drop (upload only)" : "安全删除 (仅上传)",
"Shared with you and the group {group} by {owner}" : "{owner} 分享给您及 {group} 分组",
"Shared with you by {owner}" : "{owner} 分享给您",
"Choose a password for the mail share" : "为电子邮件分享选择一个密码",
@@ -164,6 +170,9 @@
"{sharee} (email)" : "{sharee} (邮件)",
"{sharee} ({type}, {owner})" : "{share}({type},{owner})",
"Share" : "分享",
+ "Share with other people by entering a user or group, a federated cloud ID or an email address." : "通过输入用户或组,联合云ID或电子邮件地址与其他人分享。",
+ "Share with other people by entering a user or group or a federated cloud ID." : "通过输入用户或组或联合云ID与其他人共享。",
+ "Share with other people by entering a user or group or an email address." : "输入用户/组织或邮箱地址来分享给其他人",
"Name or email address..." : "姓名或电子邮件地址...",
"Name or federated cloud ID..." : "姓名或联合云 ID",
"Name, federated cloud ID or email address..." : "姓名, 联合云 ID 或电子邮件地址...",
@@ -260,6 +269,7 @@
"Stay logged in" : "保持登录",
"Alternative Logins" : "其他登录方式",
"App token" : "App 令牌",
+ "Alternative login using app token" : "使用应用程序令牌替代登录",
"Redirecting …" : "正在转向...",
"New password" : "新密码",
"New Password" : "新密码",
@@ -288,7 +298,7 @@
"To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "为避免较大安装时的超时, 您可以在安装目录下执行下述的命令:",
"Detailed logs" : "详细日志",
"Update needed" : "需要更新",
- "Please use the command line updater because you have a big instance." : "由于您的实例较大, 请使用命令行更新.",
+ "Please use the command line updater because you have a big instance with more than 50 users." : "请使用命令行更新,因为您有一个超过50个用户的大型实例。",
"For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "获取更多帮助, 请查看 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">文档</a>.",
"This %s instance is currently in maintenance mode, which may take a while." : "该实例 %s 当前处于维护模式, 这将花费一些时间.",
"This page will refresh itself when the %s instance is available again." : "当实例 %s 再次可用时此页面将刷新.",
@@ -324,6 +334,7 @@
"The share will expire on %s." : "此分享将在 %s 过期.",
"Cheers!" : "干杯!",
"Use the following link to reset your password: {link}" : "使用以下链接重置您的密码: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨、你好,<br><br>只想让你知道 %s 分享了 <strong>%s</strong> 给你。<br><a href=\"%s\">现在查看!</a><br><br>"
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨、你好,<br><br>只想让你知道 %s 分享了 <strong>%s</strong> 给你。<br><a href=\"%s\">现在查看!</a><br><br>",
+ "Please use the command line updater because you have a big instance." : "由于您的实例较大, 请使用命令行更新."
},"pluralForm" :"nplurals=1; plural=0;"
} \ No newline at end of file
diff --git a/core/l10n/zh_TW.js b/core/l10n/zh_TW.js
deleted file mode 100644
index f99f9f8e7ee..00000000000
--- a/core/l10n/zh_TW.js
+++ /dev/null
@@ -1,257 +0,0 @@
-OC.L10N.register(
- "core",
- {
- "Please select a file." : "請選擇一個檔案",
- "File is too big" : "檔案太大",
- "Invalid file provided" : "提供的檔案無效",
- "No image or file provided" : "未提供圖片或檔案",
- "Unknown filetype" : "未知的檔案類型",
- "Invalid image" : "無效的圖片",
- "An error occurred. Please contact your admin." : "發生錯誤,請聯絡管理員",
- "No temporary profile picture available, try again" : "沒有臨時用的大頭貼,請再試一次",
- "No crop data provided" : "未設定剪裁",
- "No valid crop data provided" : "未提供有效的剪裁設定",
- "Crop is not square" : "剪裁設定不是正方形",
- "Couldn't reset password because the token is invalid" : "無法重設密碼因為 token 無效",
- "Couldn't reset password because the token is expired" : "無法重設密碼,因為 token 過期",
- "Could not send reset email because there is no email address for this username. Please contact your administrator." : "無法寄送重設 email ,因為這個帳號沒有設定 email 地址,請聯絡您的系統管理員。",
- "%s password reset" : "%s 密碼重設",
- "Couldn't send reset email. Please contact your administrator." : "無法寄送重設 email ,請聯絡系統管理員",
- "Couldn't send reset email. Please make sure your username is correct." : "無法寄送重設 email ,請確認您的帳號輸入正確",
- "Preparing update" : "準備更新",
- "[%d / %d]: %s" : "[%d / %d]: %s",
- "Repair warning: " : "修復警告:",
- "Repair error: " : "修復錯誤",
- "Please use the command line updater because automatic updating is disabled in the config.php." : "請使用命令列更新工具,因為自動更新在 config.php 中被停用了",
- "[%d / %d]: Checking table %s" : "[%d / %d]: 檢查資料表 %s",
- "Turned on maintenance mode" : "已啓用維護模式",
- "Turned off maintenance mode" : "已停用維護模式",
- "Maintenance mode is kept active" : "維護模式維持在開啟狀態",
- "Updating database schema" : "更新資料庫格式",
- "Updated database" : "已更新資料庫",
- "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "檢查是否有可更新的資料庫格式(若資料庫較大,可能需要一段時間)",
- "Checked database schema update" : "已檢查資料庫格式更新",
- "Checking updates of apps" : "檢查 app 更新",
- "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "檢查 %s 是否有可更新的資料庫格式(若資料庫較大,可能需要一段時間)",
- "Checked database schema update for apps" : "已檢查應用程式的資料庫格式更新",
- "Updated \"%s\" to %s" : "已更新 %s 到 %s",
- "Set log level to debug" : "設定紀錄變成除錯層級",
- "Reset log level" : "重設記錄層級",
- "Starting code integrity check" : "開始檢查程式碼完整性",
- "Finished code integrity check" : "完成程式碼完整性檢查",
- "%s (3rdparty)" : "%s (第3方)",
- "%s (incompatible)" : "%s (不相容的)",
- "Following apps have been disabled: %s" : "以下應用程式已經被停用:%s",
- "Already up to date" : "已經是最新版",
- "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">執行程式碼完整性檢查時發生問題。更多資訊…</a>",
- "Settings" : "設定",
- "Connection to server lost" : "伺服器連線中斷",
- "Saving..." : "儲存中...",
- "Dismiss" : "知道了",
- "Authentication required" : "需要認證",
- "Password" : "密碼",
- "Cancel" : "取消",
- "Confirm" : "確認",
- "Failed to authenticate, try again" : "認證失敗,再試一次。",
- "seconds ago" : "幾秒前",
- "Logging in …" : "載入中......",
- "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." : "重設密碼的連結已經 email 至你的信箱,如果你在一段時間內沒收到,請檢查垃圾郵件資料夾,如果還是找不到,請聯絡系統管理員。",
- "Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "您的檔案是加密的,當您重設密碼之後將無法存取您的資料。<br/>如果不確定該怎麼做,請聯絡您的系統管理員。<br/>您確定要繼續嗎?",
- "I know what I'm doing" : "我知道我在幹嘛",
- "Password can not be changed. Please contact your administrator." : "無法變更密碼,請聯絡您的系統管理員",
- "No" : "否",
- "Yes" : "是",
- "No files in here" : "沒有任何檔案",
- "Choose" : "選擇",
- "Error loading file picker template: {error}" : "載入檔案選擇器樣板出錯: {error}",
- "Error loading message template: {error}" : "載入訊息樣板出錯: {error}",
- "read-only" : "唯讀",
- "_{count} file conflict_::_{count} file conflicts_" : ["{count} 個檔案衝突"],
- "One file conflict" : "一個檔案衝突",
- "New Files" : "新檔案",
- "Already existing files" : "已經存在的檔案",
- "Which files do you want to keep?" : "您要保留哪一個檔案?",
- "If you select both versions, the copied file will have a number added to its name." : "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號",
- "Continue" : "繼續",
- "(all selected)" : "(已全選)",
- "({count} selected)" : "(已選 {count} 項)",
- "Error loading file exists template" : "載入檔案存在樣板出錯",
- "Pending" : "等候中",
- "Very weak password" : "密碼強度非常弱",
- "Weak password" : "密碼強度弱",
- "So-so password" : "密碼強度普通",
- "Good password" : "密碼強度佳",
- "Strong password" : "密碼強度極佳",
- "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "您的網頁伺服器無法提供檔案同步功能,因為 WebDAV 界面有問題",
- "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "您的網頁伺服器並未正確設定來解析 \"{url}\" ,請查看我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>以瞭解更多",
- "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "伺服器沒有網際網路連線,有些功能,像是外部儲存、更新版通知將無法運作。從遠端存取資料或是寄送 email 通知可能也無法運作。建議您設定好網際網路連線以使用所有功能。",
- "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." : "\"{header}\" HTTP 標頭配置與 \"{expected}\"不一樣,這是一個潛在安全性或者隱私上的風險,因此我們建議您調整此設定",
- "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "您正在藉由 HTTP 訪問此網站,如我們的<a href=\"{docUrl}\">安全性提示</a>所述,我們強烈建議設定您的伺服器須要求使用 HTTPS",
- "Shared" : "已分享",
- "Shared with {recipients}" : "與 {recipients} 分享",
- "Error setting expiration date" : "設定到期日發生錯誤",
- "The public link will expire no later than {days} days after it is created" : "這個公開連結會在 {days} 天內失效",
- "Set expiration date" : "指定到期日",
- "Expiration" : "過期",
- "Expiration date" : "到期日",
- "Choose a password for the public link" : "為公開連結選一個密碼",
- "Copied!" : "已複製",
- "Not supported!" : "不支援!",
- "Press ⌘-C to copy." : "按下 ⌘-C 來複製",
- "Press Ctrl-C to copy." : "按下 Ctrl-C 來複製",
- "Resharing is not allowed" : "不允許重新分享",
- "Share link" : "分享連結",
- "Link" : "連結",
- "Password protect" : "密碼保護",
- "Allow editing" : "允許編輯",
- "Email link to person" : "將連結 email 給別人",
- "Send" : "寄出",
- "Allow upload and editing" : "允許上傳及編輯",
- "Shared with you and the group {group} by {owner}" : "由 {owner} 分享給您和 {group}",
- "Shared with you by {owner}" : "{owner} 已經和您分享",
- "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} 分享了連結",
- "group" : "群組",
- "remote" : "遠端",
- "Unshare" : "取消分享",
- "Could not unshare" : "無法取消分享",
- "Error while sharing" : "分享時發生錯誤",
- "Share details could not be loaded for this item." : "無法載入分享細節",
- "No users or groups found for {search}" : "沒有群組或使用者符合 {search}",
- "No users found for {search}" : "沒有使用者符合 {search}",
- "An error occurred. Please try again" : "發生錯誤,請再試一次",
- "{sharee} (group)" : "{sharee} (群組)",
- "{sharee} (remote)" : "{sharee} (遠端)",
- "Share" : "分享",
- "Error" : "錯誤",
- "Error removing share" : "移除分享時發生錯誤",
- "Non-existing tag #{tag}" : "不存在的標籤 #{tag}",
- "restricted" : "受限",
- "invisible" : "不可見",
- "({scope})" : "({scope})",
- "Delete" : "刪除",
- "Rename" : "重新命名",
- "Collaborative tags" : "標籤",
- "unknown text" : "未知的文字",
- "Hello world!" : "哈囉 世界!",
- "sunny" : "晴朗的",
- "Hello {name}, the weather is {weather}" : "哈囉 {name}, 天氣是 {weather}",
- "Hello {name}" : "哈囉 {name}",
- "new" : "新",
- "_download %n file_::_download %n files_" : ["下載 %n 個檔案"],
- "The update is in progress, leaving this page might interrupt the process in some environments." : "正在更新,在某些狀況下,離開本頁面可能會導致更新中斷",
- "Update to {version}" : "更新到 {version}",
- "An error occurred." : "發生錯誤",
- "Please reload the page." : "請重新整理頁面",
- "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "更新失敗,檢視<a href=\"{url}\">論壇上的文章</a>來瞭解更多",
- "Continue to Nextcloud" : "繼續前往 Nextcloud",
- "Searching other places" : "搜尋其他位置",
- "_{count} search result in another folder_::_{count} search results in other folders_" : ["在其他資料夾中有 {count} 比結果"],
- "Personal" : "個人",
- "Users" : "使用者",
- "Apps" : "應用程式",
- "Admin" : "管理",
- "Help" : "說明",
- "Access forbidden" : "存取被拒",
- "File not found" : "找不到檔案",
- "The specified document has not been found on the server." : "該文件不存在於伺服器上",
- "You can click here to return to %s." : "點這裡以回到 %s",
- "Internal Server Error" : "內部伺服器錯誤",
- "The server encountered an internal error and was unable to complete your request." : "伺服器遭遇內部錯誤,無法完成您的要求",
- "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." : "如果這個錯誤重複出現,請聯絡系統管理員,並附上以下的錯誤細節",
- "More details can be found in the server log." : "伺服器記錄檔裡面有更多細節",
- "Technical details" : "技術細節",
- "Remote Address: %s" : "遠端位置:%s",
- "Request ID: %s" : "請求編號:%s",
- "Type: %s" : "類型:%s",
- "Code: %s" : "代碼:%s",
- "Message: %s" : "訊息:%s",
- "File: %s" : "檔案:%s",
- "Line: %s" : "行數:%s",
- "Trace" : "追蹤",
- "Security warning" : "安全性警告",
- "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。",
- "Create an <strong>admin account</strong>" : "建立一個<strong>管理者帳號</strong>",
- "Username" : "使用者名稱",
- "Storage & database" : "儲存空間和資料庫",
- "Data folder" : "資料儲存位置",
- "Configure the database" : "設定資料庫",
- "Only %s is available." : "剩下 %s 可使用",
- "Install and activate additional PHP modules to choose other database types." : "安裝並啟用相關 PHP 模組來使用其他種資料庫",
- "For more details check out the documentation." : "更多細節詳見說明文件",
- "Database user" : "資料庫使用者",
- "Database password" : "資料庫密碼",
- "Database name" : "資料庫名稱",
- "Database tablespace" : "資料庫 tablespace",
- "Database host" : "資料庫主機",
- "Performance warning" : "效能警告",
- "SQLite will be used as database." : "將使用 SQLite 為資料庫",
- "For larger installations we recommend to choose a different database backend." : "在大型安裝中建議使用其他種資料庫",
- "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "若使用桌面版程式同步檔案,不建議使用 SQLite",
- "Finish setup" : "完成設定",
- "Finishing …" : "即將完成…",
- "Need help?" : "需要幫助?",
- "See the documentation" : "閱讀說明文件",
- "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "這個應用程式需要啟用 Javascript 才能正常運作,請{linkstart}啟用Javascript{linkend}然後重新整理頁面。",
- "Search" : "搜尋",
- "Server side authentication failed!" : "伺服器端認證失敗!",
- "Please contact your administrator." : "請聯絡系統管理員",
- "An internal error occurred." : "發生內部錯誤",
- "Please try again or contact your administrator." : "請重試或聯絡系統管理員",
- "Username or email" : "用戶名或 email",
- "Wrong password. Reset it?" : "密碼錯誤,重設密碼?",
- "Wrong password." : "密碼錯誤",
- "Log in" : "登入",
- "Stay logged in" : "保持登入狀態",
- "Alternative Logins" : "其他登入方法",
- "New password" : "新密碼",
- "New Password" : "新密碼",
- "Reset password" : "重設密碼",
- "This Nextcloud instance is currently in single user mode." : "這個 Nextcloud 伺服器目前運作於單一使用者模式",
- "This means only administrators can use the instance." : "這表示只有系統管理員能夠使用",
- "Contact your system administrator if this message persists or appeared unexpectedly." : "若這個訊息持續出現,請聯絡系統管理員",
- "Thank you for your patience." : "感謝您的耐心",
- "Log out" : "登出",
- "Two-factor authentication" : "二階段認證",
- "Cancel log in" : "取消登入",
- "Use backup code" : "使用備用認證碼",
- "Error while validating your second factor" : "驗證二階段因子發生錯誤",
- "You are accessing the server from an untrusted domain." : "你正在從一個未信任的網域存取伺服器",
- "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "請聯絡您的系統管理員,如果您就是系統管理員,請設定 config/config.php 中的 \"trusted_domain\" 選項。範例設定提供於 config/config.sample.php。",
- "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "依照設定而定,您身為系統管理員可能也可以使用底下的按鈕來信任這個網域",
- "Add \"%s\" as trusted domain" : "將 %s 加入到信任的網域",
- "App update required" : "需要更新應用程式",
- "%s will be updated to version %s" : "%s 將會更新至版本 %s",
- "These apps will be updated:" : "將會更新這些應用程式",
- "These incompatible apps will be disabled:" : "將會停用這些不相容的應用程式",
- "The theme %s has been disabled." : "主題 %s 已經被停用",
- "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "在繼續之前,請備份資料庫、config 目錄及資料目錄",
- "Start update" : "開始升級",
- "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "在大型安裝上,為了避免升級請求逾時,你也可以在安裝目錄執行下列指令:",
- "Detailed logs" : "詳細記錄檔",
- "Update needed" : "需要更新",
- "Please use the command line updater because you have a big instance." : "請使用命令列更新工具,因為您的服務規模較大",
- "This %s instance is currently in maintenance mode, which may take a while." : "這個 %s 安裝目前處於維護模式,需要一段時間恢復。",
- "This page will refresh itself when the %s instance is available again." : "%s 安裝恢復可用之後,本頁會自動重新整理",
- "Problem loading page, reloading in 5 seconds" : "載入頁面出錯,5 秒後重新整理",
- "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?" : "您的檔案是加密的,如果您沒有啟用救援金鑰,當您重設密碼之後將無法存取您的資料。<br/>如果不確定該怎麼做,請聯絡您的系統管理員。<br/>您確定要繼續嗎?",
- "Ok" : "好",
- "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "您的資料目錄和檔案看來可以被公開存取,這表示 .htaccess 檔案並未生效,我們強烈建議您設定您的網頁伺服器,拒絕資料目錄的公開存取,或者將您的資料目錄移出網頁伺服器根目錄。",
- "Error while unsharing" : "取消分享時發生錯誤",
- "can reshare" : "允許轉分享",
- "can edit" : "可編輯",
- "access control" : "存取控制",
- "The object type is not specified." : "未指定物件類型",
- "Enter new" : "輸入新的",
- "Add" : "增加",
- "Edit tags" : "編輯標籤",
- "Error loading dialog template: {error}" : "載入對話樣板出錯:{error}",
- "No tags selected for deletion." : "沒有選擇要刪除的標籤",
- "The update was successful. Redirecting you to Nextcloud now." : "更新成功,即將重導向至 Nextcloud",
- "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" : "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n",
- "The share will expire on %s." : "這個分享將會於 %s 過期",
- "Cheers!" : "太棒了!",
- "Use the following link to reset your password: {link}" : "請至以下連結重設您的密碼: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨,<br><br>%s 與你分享了<strong>%s</strong>。<br><a href=\"%s\">檢視</a><br><br>"
-},
-"nplurals=1; plural=0;");
diff --git a/core/l10n/zh_TW.json b/core/l10n/zh_TW.json
deleted file mode 100644
index ac4a81b52cd..00000000000
--- a/core/l10n/zh_TW.json
+++ /dev/null
@@ -1,255 +0,0 @@
-{ "translations": {
- "Please select a file." : "請選擇一個檔案",
- "File is too big" : "檔案太大",
- "Invalid file provided" : "提供的檔案無效",
- "No image or file provided" : "未提供圖片或檔案",
- "Unknown filetype" : "未知的檔案類型",
- "Invalid image" : "無效的圖片",
- "An error occurred. Please contact your admin." : "發生錯誤,請聯絡管理員",
- "No temporary profile picture available, try again" : "沒有臨時用的大頭貼,請再試一次",
- "No crop data provided" : "未設定剪裁",
- "No valid crop data provided" : "未提供有效的剪裁設定",
- "Crop is not square" : "剪裁設定不是正方形",
- "Couldn't reset password because the token is invalid" : "無法重設密碼因為 token 無效",
- "Couldn't reset password because the token is expired" : "無法重設密碼,因為 token 過期",
- "Could not send reset email because there is no email address for this username. Please contact your administrator." : "無法寄送重設 email ,因為這個帳號沒有設定 email 地址,請聯絡您的系統管理員。",
- "%s password reset" : "%s 密碼重設",
- "Couldn't send reset email. Please contact your administrator." : "無法寄送重設 email ,請聯絡系統管理員",
- "Couldn't send reset email. Please make sure your username is correct." : "無法寄送重設 email ,請確認您的帳號輸入正確",
- "Preparing update" : "準備更新",
- "[%d / %d]: %s" : "[%d / %d]: %s",
- "Repair warning: " : "修復警告:",
- "Repair error: " : "修復錯誤",
- "Please use the command line updater because automatic updating is disabled in the config.php." : "請使用命令列更新工具,因為自動更新在 config.php 中被停用了",
- "[%d / %d]: Checking table %s" : "[%d / %d]: 檢查資料表 %s",
- "Turned on maintenance mode" : "已啓用維護模式",
- "Turned off maintenance mode" : "已停用維護模式",
- "Maintenance mode is kept active" : "維護模式維持在開啟狀態",
- "Updating database schema" : "更新資料庫格式",
- "Updated database" : "已更新資料庫",
- "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "檢查是否有可更新的資料庫格式(若資料庫較大,可能需要一段時間)",
- "Checked database schema update" : "已檢查資料庫格式更新",
- "Checking updates of apps" : "檢查 app 更新",
- "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "檢查 %s 是否有可更新的資料庫格式(若資料庫較大,可能需要一段時間)",
- "Checked database schema update for apps" : "已檢查應用程式的資料庫格式更新",
- "Updated \"%s\" to %s" : "已更新 %s 到 %s",
- "Set log level to debug" : "設定紀錄變成除錯層級",
- "Reset log level" : "重設記錄層級",
- "Starting code integrity check" : "開始檢查程式碼完整性",
- "Finished code integrity check" : "完成程式碼完整性檢查",
- "%s (3rdparty)" : "%s (第3方)",
- "%s (incompatible)" : "%s (不相容的)",
- "Following apps have been disabled: %s" : "以下應用程式已經被停用:%s",
- "Already up to date" : "已經是最新版",
- "<a href=\"{docUrl}\">There were problems with the code integrity check. More information…</a>" : "<a href=\"{docUrl}\">執行程式碼完整性檢查時發生問題。更多資訊…</a>",
- "Settings" : "設定",
- "Connection to server lost" : "伺服器連線中斷",
- "Saving..." : "儲存中...",
- "Dismiss" : "知道了",
- "Authentication required" : "需要認證",
- "Password" : "密碼",
- "Cancel" : "取消",
- "Confirm" : "確認",
- "Failed to authenticate, try again" : "認證失敗,再試一次。",
- "seconds ago" : "幾秒前",
- "Logging in …" : "載入中......",
- "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." : "重設密碼的連結已經 email 至你的信箱,如果你在一段時間內沒收到,請檢查垃圾郵件資料夾,如果還是找不到,請聯絡系統管理員。",
- "Your files are encrypted. There will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" : "您的檔案是加密的,當您重設密碼之後將無法存取您的資料。<br/>如果不確定該怎麼做,請聯絡您的系統管理員。<br/>您確定要繼續嗎?",
- "I know what I'm doing" : "我知道我在幹嘛",
- "Password can not be changed. Please contact your administrator." : "無法變更密碼,請聯絡您的系統管理員",
- "No" : "否",
- "Yes" : "是",
- "No files in here" : "沒有任何檔案",
- "Choose" : "選擇",
- "Error loading file picker template: {error}" : "載入檔案選擇器樣板出錯: {error}",
- "Error loading message template: {error}" : "載入訊息樣板出錯: {error}",
- "read-only" : "唯讀",
- "_{count} file conflict_::_{count} file conflicts_" : ["{count} 個檔案衝突"],
- "One file conflict" : "一個檔案衝突",
- "New Files" : "新檔案",
- "Already existing files" : "已經存在的檔案",
- "Which files do you want to keep?" : "您要保留哪一個檔案?",
- "If you select both versions, the copied file will have a number added to its name." : "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號",
- "Continue" : "繼續",
- "(all selected)" : "(已全選)",
- "({count} selected)" : "(已選 {count} 項)",
- "Error loading file exists template" : "載入檔案存在樣板出錯",
- "Pending" : "等候中",
- "Very weak password" : "密碼強度非常弱",
- "Weak password" : "密碼強度弱",
- "So-so password" : "密碼強度普通",
- "Good password" : "密碼強度佳",
- "Strong password" : "密碼強度極佳",
- "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "您的網頁伺服器無法提供檔案同步功能,因為 WebDAV 界面有問題",
- "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "您的網頁伺服器並未正確設定來解析 \"{url}\" ,請查看我們的<a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">說明文件</a>以瞭解更多",
- "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "伺服器沒有網際網路連線,有些功能,像是外部儲存、更新版通知將無法運作。從遠端存取資料或是寄送 email 通知可能也無法運作。建議您設定好網際網路連線以使用所有功能。",
- "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." : "\"{header}\" HTTP 標頭配置與 \"{expected}\"不一樣,這是一個潛在安全性或者隱私上的風險,因此我們建議您調整此設定",
- "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "您正在藉由 HTTP 訪問此網站,如我們的<a href=\"{docUrl}\">安全性提示</a>所述,我們強烈建議設定您的伺服器須要求使用 HTTPS",
- "Shared" : "已分享",
- "Shared with {recipients}" : "與 {recipients} 分享",
- "Error setting expiration date" : "設定到期日發生錯誤",
- "The public link will expire no later than {days} days after it is created" : "這個公開連結會在 {days} 天內失效",
- "Set expiration date" : "指定到期日",
- "Expiration" : "過期",
- "Expiration date" : "到期日",
- "Choose a password for the public link" : "為公開連結選一個密碼",
- "Copied!" : "已複製",
- "Not supported!" : "不支援!",
- "Press ⌘-C to copy." : "按下 ⌘-C 來複製",
- "Press Ctrl-C to copy." : "按下 Ctrl-C 來複製",
- "Resharing is not allowed" : "不允許重新分享",
- "Share link" : "分享連結",
- "Link" : "連結",
- "Password protect" : "密碼保護",
- "Allow editing" : "允許編輯",
- "Email link to person" : "將連結 email 給別人",
- "Send" : "寄出",
- "Allow upload and editing" : "允許上傳及編輯",
- "Shared with you and the group {group} by {owner}" : "由 {owner} 分享給您和 {group}",
- "Shared with you by {owner}" : "{owner} 已經和您分享",
- "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} 分享了連結",
- "group" : "群組",
- "remote" : "遠端",
- "Unshare" : "取消分享",
- "Could not unshare" : "無法取消分享",
- "Error while sharing" : "分享時發生錯誤",
- "Share details could not be loaded for this item." : "無法載入分享細節",
- "No users or groups found for {search}" : "沒有群組或使用者符合 {search}",
- "No users found for {search}" : "沒有使用者符合 {search}",
- "An error occurred. Please try again" : "發生錯誤,請再試一次",
- "{sharee} (group)" : "{sharee} (群組)",
- "{sharee} (remote)" : "{sharee} (遠端)",
- "Share" : "分享",
- "Error" : "錯誤",
- "Error removing share" : "移除分享時發生錯誤",
- "Non-existing tag #{tag}" : "不存在的標籤 #{tag}",
- "restricted" : "受限",
- "invisible" : "不可見",
- "({scope})" : "({scope})",
- "Delete" : "刪除",
- "Rename" : "重新命名",
- "Collaborative tags" : "標籤",
- "unknown text" : "未知的文字",
- "Hello world!" : "哈囉 世界!",
- "sunny" : "晴朗的",
- "Hello {name}, the weather is {weather}" : "哈囉 {name}, 天氣是 {weather}",
- "Hello {name}" : "哈囉 {name}",
- "new" : "新",
- "_download %n file_::_download %n files_" : ["下載 %n 個檔案"],
- "The update is in progress, leaving this page might interrupt the process in some environments." : "正在更新,在某些狀況下,離開本頁面可能會導致更新中斷",
- "Update to {version}" : "更新到 {version}",
- "An error occurred." : "發生錯誤",
- "Please reload the page." : "請重新整理頁面",
- "The update was unsuccessful. For more information <a href=\"{url}\">check our forum post</a> covering this issue." : "更新失敗,檢視<a href=\"{url}\">論壇上的文章</a>來瞭解更多",
- "Continue to Nextcloud" : "繼續前往 Nextcloud",
- "Searching other places" : "搜尋其他位置",
- "_{count} search result in another folder_::_{count} search results in other folders_" : ["在其他資料夾中有 {count} 比結果"],
- "Personal" : "個人",
- "Users" : "使用者",
- "Apps" : "應用程式",
- "Admin" : "管理",
- "Help" : "說明",
- "Access forbidden" : "存取被拒",
- "File not found" : "找不到檔案",
- "The specified document has not been found on the server." : "該文件不存在於伺服器上",
- "You can click here to return to %s." : "點這裡以回到 %s",
- "Internal Server Error" : "內部伺服器錯誤",
- "The server encountered an internal error and was unable to complete your request." : "伺服器遭遇內部錯誤,無法完成您的要求",
- "Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report." : "如果這個錯誤重複出現,請聯絡系統管理員,並附上以下的錯誤細節",
- "More details can be found in the server log." : "伺服器記錄檔裡面有更多細節",
- "Technical details" : "技術細節",
- "Remote Address: %s" : "遠端位置:%s",
- "Request ID: %s" : "請求編號:%s",
- "Type: %s" : "類型:%s",
- "Code: %s" : "代碼:%s",
- "Message: %s" : "訊息:%s",
- "File: %s" : "檔案:%s",
- "Line: %s" : "行數:%s",
- "Trace" : "追蹤",
- "Security warning" : "安全性警告",
- "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。",
- "Create an <strong>admin account</strong>" : "建立一個<strong>管理者帳號</strong>",
- "Username" : "使用者名稱",
- "Storage & database" : "儲存空間和資料庫",
- "Data folder" : "資料儲存位置",
- "Configure the database" : "設定資料庫",
- "Only %s is available." : "剩下 %s 可使用",
- "Install and activate additional PHP modules to choose other database types." : "安裝並啟用相關 PHP 模組來使用其他種資料庫",
- "For more details check out the documentation." : "更多細節詳見說明文件",
- "Database user" : "資料庫使用者",
- "Database password" : "資料庫密碼",
- "Database name" : "資料庫名稱",
- "Database tablespace" : "資料庫 tablespace",
- "Database host" : "資料庫主機",
- "Performance warning" : "效能警告",
- "SQLite will be used as database." : "將使用 SQLite 為資料庫",
- "For larger installations we recommend to choose a different database backend." : "在大型安裝中建議使用其他種資料庫",
- "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "若使用桌面版程式同步檔案,不建議使用 SQLite",
- "Finish setup" : "完成設定",
- "Finishing …" : "即將完成…",
- "Need help?" : "需要幫助?",
- "See the documentation" : "閱讀說明文件",
- "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "這個應用程式需要啟用 Javascript 才能正常運作,請{linkstart}啟用Javascript{linkend}然後重新整理頁面。",
- "Search" : "搜尋",
- "Server side authentication failed!" : "伺服器端認證失敗!",
- "Please contact your administrator." : "請聯絡系統管理員",
- "An internal error occurred." : "發生內部錯誤",
- "Please try again or contact your administrator." : "請重試或聯絡系統管理員",
- "Username or email" : "用戶名或 email",
- "Wrong password. Reset it?" : "密碼錯誤,重設密碼?",
- "Wrong password." : "密碼錯誤",
- "Log in" : "登入",
- "Stay logged in" : "保持登入狀態",
- "Alternative Logins" : "其他登入方法",
- "New password" : "新密碼",
- "New Password" : "新密碼",
- "Reset password" : "重設密碼",
- "This Nextcloud instance is currently in single user mode." : "這個 Nextcloud 伺服器目前運作於單一使用者模式",
- "This means only administrators can use the instance." : "這表示只有系統管理員能夠使用",
- "Contact your system administrator if this message persists or appeared unexpectedly." : "若這個訊息持續出現,請聯絡系統管理員",
- "Thank you for your patience." : "感謝您的耐心",
- "Log out" : "登出",
- "Two-factor authentication" : "二階段認證",
- "Cancel log in" : "取消登入",
- "Use backup code" : "使用備用認證碼",
- "Error while validating your second factor" : "驗證二階段因子發生錯誤",
- "You are accessing the server from an untrusted domain." : "你正在從一個未信任的網域存取伺服器",
- "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "請聯絡您的系統管理員,如果您就是系統管理員,請設定 config/config.php 中的 \"trusted_domain\" 選項。範例設定提供於 config/config.sample.php。",
- "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "依照設定而定,您身為系統管理員可能也可以使用底下的按鈕來信任這個網域",
- "Add \"%s\" as trusted domain" : "將 %s 加入到信任的網域",
- "App update required" : "需要更新應用程式",
- "%s will be updated to version %s" : "%s 將會更新至版本 %s",
- "These apps will be updated:" : "將會更新這些應用程式",
- "These incompatible apps will be disabled:" : "將會停用這些不相容的應用程式",
- "The theme %s has been disabled." : "主題 %s 已經被停用",
- "Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "在繼續之前,請備份資料庫、config 目錄及資料目錄",
- "Start update" : "開始升級",
- "To avoid timeouts with larger installations, you can instead run the following command from your installation directory:" : "在大型安裝上,為了避免升級請求逾時,你也可以在安裝目錄執行下列指令:",
- "Detailed logs" : "詳細記錄檔",
- "Update needed" : "需要更新",
- "Please use the command line updater because you have a big instance." : "請使用命令列更新工具,因為您的服務規模較大",
- "This %s instance is currently in maintenance mode, which may take a while." : "這個 %s 安裝目前處於維護模式,需要一段時間恢復。",
- "This page will refresh itself when the %s instance is available again." : "%s 安裝恢復可用之後,本頁會自動重新整理",
- "Problem loading page, reloading in 5 seconds" : "載入頁面出錯,5 秒後重新整理",
- "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?" : "您的檔案是加密的,如果您沒有啟用救援金鑰,當您重設密碼之後將無法存取您的資料。<br/>如果不確定該怎麼做,請聯絡您的系統管理員。<br/>您確定要繼續嗎?",
- "Ok" : "好",
- "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "您的資料目錄和檔案看來可以被公開存取,這表示 .htaccess 檔案並未生效,我們強烈建議您設定您的網頁伺服器,拒絕資料目錄的公開存取,或者將您的資料目錄移出網頁伺服器根目錄。",
- "Error while unsharing" : "取消分享時發生錯誤",
- "can reshare" : "允許轉分享",
- "can edit" : "可編輯",
- "access control" : "存取控制",
- "The object type is not specified." : "未指定物件類型",
- "Enter new" : "輸入新的",
- "Add" : "增加",
- "Edit tags" : "編輯標籤",
- "Error loading dialog template: {error}" : "載入對話樣板出錯:{error}",
- "No tags selected for deletion." : "沒有選擇要刪除的標籤",
- "The update was successful. Redirecting you to Nextcloud now." : "更新成功,即將重導向至 Nextcloud",
- "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" : "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n",
- "The share will expire on %s." : "這個分享將會於 %s 過期",
- "Cheers!" : "太棒了!",
- "Use the following link to reset your password: {link}" : "請至以下連結重設您的密碼: {link}",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨,<br><br>%s 與你分享了<strong>%s</strong>。<br><a href=\"%s\">檢視</a><br><br>"
-},"pluralForm" :"nplurals=1; plural=0;"
-} \ No newline at end of file