aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/Application.php10
-rw-r--r--core/Command/Config/App/Base.php14
-rw-r--r--core/Command/Config/App/DeleteConfig.php12
-rw-r--r--core/Command/Config/App/GetConfig.php7
-rw-r--r--core/Command/Config/App/SetConfig.php6
-rw-r--r--core/l10n/cs.js1
-rw-r--r--core/l10n/cs.json1
-rw-r--r--core/l10n/de.js9
-rw-r--r--core/l10n/de.json9
-rw-r--r--core/l10n/de_DE.js7
-rw-r--r--core/l10n/de_DE.json7
-rw-r--r--core/l10n/et_EE.js1
-rw-r--r--core/l10n/et_EE.json1
-rw-r--r--core/l10n/fa.js1
-rw-r--r--core/l10n/fa.json1
-rw-r--r--core/l10n/fr.js19
-rw-r--r--core/l10n/fr.json19
-rw-r--r--core/l10n/ga.js1
-rw-r--r--core/l10n/ga.json1
-rw-r--r--core/l10n/it.js20
-rw-r--r--core/l10n/it.json20
-rw-r--r--core/l10n/ja.js1
-rw-r--r--core/l10n/ja.json1
-rw-r--r--core/l10n/lt_LT.js8
-rw-r--r--core/l10n/lt_LT.json8
-rw-r--r--core/l10n/lv.js11
-rw-r--r--core/l10n/lv.json11
-rw-r--r--core/l10n/pt_BR.js1
-rw-r--r--core/l10n/pt_BR.json1
-rw-r--r--core/l10n/sk.js1
-rw-r--r--core/l10n/sk.json1
-rw-r--r--core/l10n/sr.js1
-rw-r--r--core/l10n/sr.json1
-rw-r--r--core/l10n/sv.js8
-rw-r--r--core/l10n/sv.json8
-rw-r--r--core/l10n/tr.js20
-rw-r--r--core/l10n/tr.json20
-rw-r--r--core/l10n/uk.js2
-rw-r--r--core/l10n/uk.json2
-rw-r--r--core/l10n/zh_CN.js1
-rw-r--r--core/l10n/zh_CN.json1
-rw-r--r--core/l10n/zh_TW.js1
-rw-r--r--core/l10n/zh_TW.json1
43 files changed, 216 insertions, 61 deletions
diff --git a/core/Application.php b/core/Application.php
index a0dacb885ae..cc84f191330 100644
--- a/core/Application.php
+++ b/core/Application.php
@@ -147,12 +147,12 @@ class Application extends App {
true
);
- $event->addMissingIndex(
+ $event->replaceIndex(
'cards_properties',
- 'cards_prop_abid',
- ['addressbookid'],
- [],
- true
+ ['cards_prop_abid'],
+ 'cards_prop_abid_name_value',
+ ['addressbookid', 'name', 'value'],
+ false,
);
$event->addMissingIndex(
diff --git a/core/Command/Config/App/Base.php b/core/Command/Config/App/Base.php
index 7d3e9a83193..07341c4faf9 100644
--- a/core/Command/Config/App/Base.php
+++ b/core/Command/Config/App/Base.php
@@ -1,15 +1,21 @@
<?php
+
+declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Core\Command\Config\App;
-use OCP\IConfig;
+use OCP\IAppConfig;
use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
abstract class Base extends \OC\Core\Command\Base {
- protected IConfig $config;
+ public function __construct(
+ protected IAppConfig $appConfig,
+ ) {
+ parent::__construct();
+ }
/**
* @param string $argumentName
@@ -18,12 +24,12 @@ abstract class Base extends \OC\Core\Command\Base {
*/
public function completeArgumentValues($argumentName, CompletionContext $context) {
if ($argumentName === 'app') {
- return \OC_App::getAllApps();
+ return $this->appConfig->getApps();
}
if ($argumentName === 'name') {
$appName = $context->getWordAtIndex($context->getWordIndex() - 1);
- return $this->config->getAppKeys($appName);
+ return $this->appConfig->getKeys($appName);
}
return [];
}
diff --git a/core/Command/Config/App/DeleteConfig.php b/core/Command/Config/App/DeleteConfig.php
index 2e34197e541..5a08ecbdc42 100644
--- a/core/Command/Config/App/DeleteConfig.php
+++ b/core/Command/Config/App/DeleteConfig.php
@@ -1,5 +1,6 @@
<?php
+declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
@@ -7,19 +8,12 @@
*/
namespace OC\Core\Command\Config\App;
-use OCP\IConfig;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class DeleteConfig extends Base {
- public function __construct(
- protected IConfig $config,
- ) {
- parent::__construct();
- }
-
protected function configure() {
parent::configure();
@@ -49,12 +43,12 @@ class DeleteConfig extends Base {
$appName = $input->getArgument('app');
$configName = $input->getArgument('name');
- if ($input->hasParameterOption('--error-if-not-exists') && !in_array($configName, $this->config->getAppKeys($appName))) {
+ if ($input->hasParameterOption('--error-if-not-exists') && !in_array($configName, $this->appConfig->getKeys($appName), true)) {
$output->writeln('<error>Config ' . $configName . ' of app ' . $appName . ' could not be deleted because it did not exist</error>');
return 1;
}
- $this->config->deleteAppValue($appName, $configName);
+ $this->appConfig->deleteKey($appName, $configName);
$output->writeln('<info>Config value ' . $configName . ' of app ' . $appName . ' deleted</info>');
return 0;
}
diff --git a/core/Command/Config/App/GetConfig.php b/core/Command/Config/App/GetConfig.php
index f64efd3feaa..b68476a2e91 100644
--- a/core/Command/Config/App/GetConfig.php
+++ b/core/Command/Config/App/GetConfig.php
@@ -9,19 +9,12 @@ declare(strict_types=1);
namespace OC\Core\Command\Config\App;
use OCP\Exceptions\AppConfigUnknownKeyException;
-use OCP\IAppConfig;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class GetConfig extends Base {
- public function __construct(
- protected IAppConfig $appConfig,
- ) {
- parent::__construct();
- }
-
protected function configure() {
parent::configure();
diff --git a/core/Command/Config/App/SetConfig.php b/core/Command/Config/App/SetConfig.php
index e983d32d97e..345067cfd45 100644
--- a/core/Command/Config/App/SetConfig.php
+++ b/core/Command/Config/App/SetConfig.php
@@ -20,12 +20,6 @@ use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\Question;
class SetConfig extends Base {
- public function __construct(
- protected IAppConfig $appConfig,
- ) {
- parent::__construct();
- }
-
protected function configure() {
parent::configure();
diff --git a/core/l10n/cs.js b/core/l10n/cs.js
index 6c7c53fc3cc..7cdf7eaf76c 100644
--- a/core/l10n/cs.js
+++ b/core/l10n/cs.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Přihlášení se nedaří dokončit",
"State token missing" : "Chybí stavový token",
"Your login token is invalid or has expired" : "Váš přihlašovací token není platný nebo jeho platnost skončila",
+ "Please use original client" : "Prosím použijte původního klienta",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Toto komunitní vydání Nextcloud není podporováno a push oznámení jsou proto omezená.",
"Login" : "Přihlásit",
"Unsupported email length (>255)" : "Nepodporovaná délka e-mailu (>255)",
diff --git a/core/l10n/cs.json b/core/l10n/cs.json
index 4f8792e3539..69845966f3f 100644
--- a/core/l10n/cs.json
+++ b/core/l10n/cs.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Přihlášení se nedaří dokončit",
"State token missing" : "Chybí stavový token",
"Your login token is invalid or has expired" : "Váš přihlašovací token není platný nebo jeho platnost skončila",
+ "Please use original client" : "Prosím použijte původního klienta",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Toto komunitní vydání Nextcloud není podporováno a push oznámení jsou proto omezená.",
"Login" : "Přihlásit",
"Unsupported email length (>255)" : "Nepodporovaná délka e-mailu (>255)",
diff --git a/core/l10n/de.js b/core/l10n/de.js
index c79885fe5b6..edebc5587d8 100644
--- a/core/l10n/de.js
+++ b/core/l10n/de.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Anmeldung konnte nicht abgeschlossen werden",
"State token missing" : "Zustandstoken fehlt",
"Your login token is invalid or has expired" : "Dein Anmelde-Token ist ungültig oder abgelaufen",
+ "Please use original client" : "Bitte den Original-Client verwenden",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Diese Community-Version von Nextcloud wird nicht unterstützt und (Push-)Benachrichtigungen sind nur begrenzt verfügbar.",
"Login" : "Anmelden",
"Unsupported email length (>255)" : "Nicht unterstützte E-Mail-Adresslänge (>255)",
@@ -105,7 +106,7 @@ OC.L10N.register(
"Yes" : "Ja",
"The remote URL must include the user." : "Die entfernte URL muss den Benutzer enthalten.",
"Invalid remote URL." : "Ungültige entfernte URL.",
- "Failed to add the public link to your Nextcloud" : "Fehler beim Hinzufügen des öffentlichen Links zur Nextcloud",
+ "Failed to add the public link to your Nextcloud" : "Der öffentliche Link konnte nicht zu deiner Nextcloud hinzugefügt werden",
"Federated user" : "Federated Benutzer",
"user@your-nextcloud.org" : "benutzer@deine-nextcloud.org",
"Create share" : "Freigabe erstellen",
@@ -276,8 +277,8 @@ OC.L10N.register(
"Show details" : "Details anzeigen",
"Hide details" : "Details ausblenden",
"Rename project" : "Projekt umbenennen",
- "Failed to rename the project" : "Konnte Projekt nicht umbenennen",
- "Failed to create a project" : "Konnte Projekt nicht erstellen",
+ "Failed to rename the project" : "Projekt konnte nicht umbenannt werden",
+ "Failed to create a project" : "Projekt konnte nicht erstellt werden",
"Failed to add the item to the project" : "Eintrag konnte nicht zum Projekt hinzu gefügt werden",
"Connect items to a project to make them easier to find" : "Zum leichten Auffinden von Einträgen, diese zu einem Projekt hinzufügen",
"Type to search for existing projects" : "Nach existierenden Projekten suchen",
@@ -321,7 +322,7 @@ OC.L10N.register(
"Line: %s" : "Zeile: %s",
"Trace" : "Trace",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Es sieht so aus, als ob du Nextcloud erneut installieren möchtest. Es fehlt jedoch die Datei CAN_INSTALL in deinem Konfigurationsordner. Bitte erstelle die Datei CAN_INSTALL im Konfigurationsordner um fortzufahren.",
- "Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "CAN_INSTALL konnte nicht aus dem Konfigurationsordner gelöscht werden. Bitte entferne die Datei manuell.",
+ "Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "CAN_INSTALL konnte nicht aus dem Konfigurationsordner entfernt werden. Bitte entferne die Datei manuell.",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Diese Anwendung benötigt JavaScript zum ordnungsgemäßen Betrieb. Bitte {linkstart}aktiviere JavaScript{linkend} und lade die Seite neu.",
"Skip to main content" : "Zum Hauptinhalt springen",
"Skip to navigation of app" : "Zum Navigationsbereich der App springen",
diff --git a/core/l10n/de.json b/core/l10n/de.json
index cdc8483b409..00acc96d9ab 100644
--- a/core/l10n/de.json
+++ b/core/l10n/de.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Anmeldung konnte nicht abgeschlossen werden",
"State token missing" : "Zustandstoken fehlt",
"Your login token is invalid or has expired" : "Dein Anmelde-Token ist ungültig oder abgelaufen",
+ "Please use original client" : "Bitte den Original-Client verwenden",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Diese Community-Version von Nextcloud wird nicht unterstützt und (Push-)Benachrichtigungen sind nur begrenzt verfügbar.",
"Login" : "Anmelden",
"Unsupported email length (>255)" : "Nicht unterstützte E-Mail-Adresslänge (>255)",
@@ -103,7 +104,7 @@
"Yes" : "Ja",
"The remote URL must include the user." : "Die entfernte URL muss den Benutzer enthalten.",
"Invalid remote URL." : "Ungültige entfernte URL.",
- "Failed to add the public link to your Nextcloud" : "Fehler beim Hinzufügen des öffentlichen Links zur Nextcloud",
+ "Failed to add the public link to your Nextcloud" : "Der öffentliche Link konnte nicht zu deiner Nextcloud hinzugefügt werden",
"Federated user" : "Federated Benutzer",
"user@your-nextcloud.org" : "benutzer@deine-nextcloud.org",
"Create share" : "Freigabe erstellen",
@@ -274,8 +275,8 @@
"Show details" : "Details anzeigen",
"Hide details" : "Details ausblenden",
"Rename project" : "Projekt umbenennen",
- "Failed to rename the project" : "Konnte Projekt nicht umbenennen",
- "Failed to create a project" : "Konnte Projekt nicht erstellen",
+ "Failed to rename the project" : "Projekt konnte nicht umbenannt werden",
+ "Failed to create a project" : "Projekt konnte nicht erstellt werden",
"Failed to add the item to the project" : "Eintrag konnte nicht zum Projekt hinzu gefügt werden",
"Connect items to a project to make them easier to find" : "Zum leichten Auffinden von Einträgen, diese zu einem Projekt hinzufügen",
"Type to search for existing projects" : "Nach existierenden Projekten suchen",
@@ -319,7 +320,7 @@
"Line: %s" : "Zeile: %s",
"Trace" : "Trace",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Es sieht so aus, als ob du Nextcloud erneut installieren möchtest. Es fehlt jedoch die Datei CAN_INSTALL in deinem Konfigurationsordner. Bitte erstelle die Datei CAN_INSTALL im Konfigurationsordner um fortzufahren.",
- "Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "CAN_INSTALL konnte nicht aus dem Konfigurationsordner gelöscht werden. Bitte entferne die Datei manuell.",
+ "Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "CAN_INSTALL konnte nicht aus dem Konfigurationsordner entfernt werden. Bitte entferne die Datei manuell.",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Diese Anwendung benötigt JavaScript zum ordnungsgemäßen Betrieb. Bitte {linkstart}aktiviere JavaScript{linkend} und lade die Seite neu.",
"Skip to main content" : "Zum Hauptinhalt springen",
"Skip to navigation of app" : "Zum Navigationsbereich der App springen",
diff --git a/core/l10n/de_DE.js b/core/l10n/de_DE.js
index f732d3d34d5..52838a6f365 100644
--- a/core/l10n/de_DE.js
+++ b/core/l10n/de_DE.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Anmeldung konnte nicht abgeschlossen werden",
"State token missing" : "Zustandstoken fehlt",
"Your login token is invalid or has expired" : "Ihr Anmelde-Token ist ungültig oder abgelaufen",
+ "Please use original client" : "Bitte den Original-Client verwenden",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Diese Community-Version von Nextcloud wird nicht unterstützt und sofortige Benachrichtigungen sind nur begrenzt verfügbar.",
"Login" : "Anmelden",
"Unsupported email length (>255)" : "Nicht unterstützte E-Mail-Adresslänge (>255)",
@@ -105,7 +106,7 @@ OC.L10N.register(
"Yes" : "Ja",
"The remote URL must include the user." : "Die entfernte URL muss den Benutzer enthalten.",
"Invalid remote URL." : "Ungültige entfernte URL.",
- "Failed to add the public link to your Nextcloud" : "Fehler beim Hinzufügen des öffentlichen Links zu Ihrer Nextcloud",
+ "Failed to add the public link to your Nextcloud" : "Der öffentliche Link konnte nicht zu Ihrer Nextcloud hinzugefügt werden",
"Federated user" : "Federated-Benutzer",
"user@your-nextcloud.org" : "benutzer@deine-nextcloud.org",
"Create share" : "Freigabe erstellen",
@@ -278,7 +279,7 @@ OC.L10N.register(
"Rename project" : "Projekt umbenennen",
"Failed to rename the project" : "Projekt konnte nicht umbenannt werden",
"Failed to create a project" : "Projekt konnte nicht erstellt werden",
- "Failed to add the item to the project" : "Eintrag konnte nicht zum Projekt hinzu gefügt werden",
+ "Failed to add the item to the project" : "Eintrag konnte nicht zum Projekt hinzugefügt werden",
"Connect items to a project to make them easier to find" : "Zum leichten Auffinden von Einträgen, diese zu einem Projekt hinzufügen",
"Type to search for existing projects" : "Tippen, um nach existierenden Projekten zu suchen",
"New in" : "Neu in",
@@ -321,7 +322,7 @@ OC.L10N.register(
"Line: %s" : "Zeile: %s",
"Trace" : "Trace",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Es sieht so aus, als ob Sie Nextcloud erneut installieren möchten. Es fehlt jedoch die Datei CAN_INSTALL in ihrem Konfigurationsordner. Bitte erstellen Sie die Datei CAN_INSTALL im Konfigurationsordner um fortzufahren.",
- "Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "CAN_INSTALL kann nicht aus dem Konfigurationsordner gelöscht werden. Bitte entfernen Sie die Datei manuell.",
+ "Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "CAN_INSTALL kann nicht aus dem Konfigurationsordner entfernt werden. Bitte entfernen Sie die Datei manuell.",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Diese Anwendung benötigt JavaScript zum ordnungsgemäßen Betrieb. Bitte {linkstart}aktivieren Sie JavaScript{linkend} und laden Sie die Seite neu.",
"Skip to main content" : "Zum Hauptinhalt springen",
"Skip to navigation of app" : "Zum Navigationsbereich der App springen",
diff --git a/core/l10n/de_DE.json b/core/l10n/de_DE.json
index 1953fc7f5a2..3e59256397b 100644
--- a/core/l10n/de_DE.json
+++ b/core/l10n/de_DE.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Anmeldung konnte nicht abgeschlossen werden",
"State token missing" : "Zustandstoken fehlt",
"Your login token is invalid or has expired" : "Ihr Anmelde-Token ist ungültig oder abgelaufen",
+ "Please use original client" : "Bitte den Original-Client verwenden",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Diese Community-Version von Nextcloud wird nicht unterstützt und sofortige Benachrichtigungen sind nur begrenzt verfügbar.",
"Login" : "Anmelden",
"Unsupported email length (>255)" : "Nicht unterstützte E-Mail-Adresslänge (>255)",
@@ -103,7 +104,7 @@
"Yes" : "Ja",
"The remote URL must include the user." : "Die entfernte URL muss den Benutzer enthalten.",
"Invalid remote URL." : "Ungültige entfernte URL.",
- "Failed to add the public link to your Nextcloud" : "Fehler beim Hinzufügen des öffentlichen Links zu Ihrer Nextcloud",
+ "Failed to add the public link to your Nextcloud" : "Der öffentliche Link konnte nicht zu Ihrer Nextcloud hinzugefügt werden",
"Federated user" : "Federated-Benutzer",
"user@your-nextcloud.org" : "benutzer@deine-nextcloud.org",
"Create share" : "Freigabe erstellen",
@@ -276,7 +277,7 @@
"Rename project" : "Projekt umbenennen",
"Failed to rename the project" : "Projekt konnte nicht umbenannt werden",
"Failed to create a project" : "Projekt konnte nicht erstellt werden",
- "Failed to add the item to the project" : "Eintrag konnte nicht zum Projekt hinzu gefügt werden",
+ "Failed to add the item to the project" : "Eintrag konnte nicht zum Projekt hinzugefügt werden",
"Connect items to a project to make them easier to find" : "Zum leichten Auffinden von Einträgen, diese zu einem Projekt hinzufügen",
"Type to search for existing projects" : "Tippen, um nach existierenden Projekten zu suchen",
"New in" : "Neu in",
@@ -319,7 +320,7 @@
"Line: %s" : "Zeile: %s",
"Trace" : "Trace",
"It looks like you are trying to reinstall your Nextcloud. However the file CAN_INSTALL is missing from your config directory. Please create the file CAN_INSTALL in your config folder to continue." : "Es sieht so aus, als ob Sie Nextcloud erneut installieren möchten. Es fehlt jedoch die Datei CAN_INSTALL in ihrem Konfigurationsordner. Bitte erstellen Sie die Datei CAN_INSTALL im Konfigurationsordner um fortzufahren.",
- "Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "CAN_INSTALL kann nicht aus dem Konfigurationsordner gelöscht werden. Bitte entfernen Sie die Datei manuell.",
+ "Could not remove CAN_INSTALL from the config folder. Please remove this file manually." : "CAN_INSTALL kann nicht aus dem Konfigurationsordner entfernt werden. Bitte entfernen Sie die Datei manuell.",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Diese Anwendung benötigt JavaScript zum ordnungsgemäßen Betrieb. Bitte {linkstart}aktivieren Sie JavaScript{linkend} und laden Sie die Seite neu.",
"Skip to main content" : "Zum Hauptinhalt springen",
"Skip to navigation of app" : "Zum Navigationsbereich der App springen",
diff --git a/core/l10n/et_EE.js b/core/l10n/et_EE.js
index d8aac9ea55f..2f54c840f15 100644
--- a/core/l10n/et_EE.js
+++ b/core/l10n/et_EE.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Sisselogimine ebaõnnestus",
"State token missing" : "Oleku tunnusluba on puudu",
"Your login token is invalid or has expired" : "Sinu sisselogimise tunnusluba on kas vigane või aegunud",
+ "Please use original client" : "Palun kasuta algupärast klienti",
"This community release of Nextcloud is unsupported and push notifications are limited." : "See Nextcloudi kogukonnaversioon pole toetatud ja tõuketeenuste kasutatavus on piiratud.",
"Login" : "Logi sisse",
"Unsupported email length (>255)" : "E-kirja pikkus pole toetatud (>255)",
diff --git a/core/l10n/et_EE.json b/core/l10n/et_EE.json
index 8ae60d374ba..d17342b6a5d 100644
--- a/core/l10n/et_EE.json
+++ b/core/l10n/et_EE.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Sisselogimine ebaõnnestus",
"State token missing" : "Oleku tunnusluba on puudu",
"Your login token is invalid or has expired" : "Sinu sisselogimise tunnusluba on kas vigane või aegunud",
+ "Please use original client" : "Palun kasuta algupärast klienti",
"This community release of Nextcloud is unsupported and push notifications are limited." : "See Nextcloudi kogukonnaversioon pole toetatud ja tõuketeenuste kasutatavus on piiratud.",
"Login" : "Logi sisse",
"Unsupported email length (>255)" : "E-kirja pikkus pole toetatud (>255)",
diff --git a/core/l10n/fa.js b/core/l10n/fa.js
index 28b35178cdc..2346c06b665 100644
--- a/core/l10n/fa.js
+++ b/core/l10n/fa.js
@@ -104,6 +104,7 @@ OC.L10N.register(
"Pick start date" : "انتخاب تاریخ شروع",
"Pick end date" : "انتخاب تاریخ پایان",
"Search in date range" : "جستجو در بازه تاریخی",
+ "Clear search" : "پاک کردن جستجو",
"Searching …" : "جستجوکردن …",
"Start typing to search" : "Start typing to search",
"Today" : "امروز",
diff --git a/core/l10n/fa.json b/core/l10n/fa.json
index 4629809d7e7..22ff186321c 100644
--- a/core/l10n/fa.json
+++ b/core/l10n/fa.json
@@ -102,6 +102,7 @@
"Pick start date" : "انتخاب تاریخ شروع",
"Pick end date" : "انتخاب تاریخ پایان",
"Search in date range" : "جستجو در بازه تاریخی",
+ "Clear search" : "پاک کردن جستجو",
"Searching …" : "جستجوکردن …",
"Start typing to search" : "Start typing to search",
"Today" : "امروز",
diff --git a/core/l10n/fr.js b/core/l10n/fr.js
index bd791e728c0..f73b8fd6543 100644
--- a/core/l10n/fr.js
+++ b/core/l10n/fr.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Impossible de terminer la connexion",
"State token missing" : "Jeton d’état manquant",
"Your login token is invalid or has expired" : "Votre jeton de connexion est invalide ou a expiré",
+ "Please use original client" : "Veuillez utiliser le client d'origine",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Cette version communautaire de Nextcloud n’est pas prise en charge et les notifications push sont limitées.",
"Login" : "S’identifier",
"Unsupported email length (>255)" : "Longueur de l’e-mail non supportée (> 255 caractères)",
@@ -146,6 +147,8 @@ OC.L10N.register(
"Account name" : "Nom du compte",
"Server side authentication failed!" : "L’authentification sur le serveur a échoué !",
"Please contact your administrator." : "Veuillez contacter votre administrateur.",
+ "Session error" : "Erreur de session",
+ "It appears your session token has expired, please refresh the page and try again." : "Il semblerait que votre jeton de session ait expiré, veuillez rafraîchir la page et essayer à nouveau.",
"An internal error occurred." : "Une erreur interne est survenue.",
"Please try again or contact your administrator." : "Veuillez réessayer ou contactez votre administrateur.",
"Password" : "Mot de passe",
@@ -205,9 +208,25 @@ OC.L10N.register(
"Login form is disabled." : "Le formulaire de connexion est désactivé.",
"The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Le formulaire de connexion Nextcloud est désactivé. Utilisez une autre option de connexion si disponible ou contactez votre administration.",
"More actions" : "Plus d'actions…",
+ "Password is too weak" : "Mot de passe trop faible",
+ "Password is weak" : "Mot de passe faible",
+ "Password is average" : "Mot de passe moyen",
+ "Password is strong" : "Mot de passe fort",
+ "Password is very strong" : "Mot de passe très fort",
+ "Password is extremely strong" : "Mot de passe extrêmement fort",
+ "Unknown password strength" : "Sécurité du mot de passe inconnue",
+ "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "Votre répertoire de données est certainement accessible depuis Internet car le fichier <code>.htaccess</code> ne fonctionne pas.",
+ "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "Pour savoir comment configurer correctement votre serveur, veuillez lire la {linkStart}documentation{linkEnd}.",
+ "Autoconfig file detected" : "Fichier de configuration automatique détecté",
+ "The setup form below is pre-filled with the values from the config file." : "Le formulaire de configuration ci-dessous est pré-rempli avec les valeurs du fichier de configuration.",
"Security warning" : "Avertissement de sécurité",
+ "Create administration account" : "Créer un compte administrateur",
+ "Administration account name" : "Nom du compte administrateur",
+ "Administration account password" : "Mot de passe du compte administrateur",
"Storage & database" : "Stockage & base de données",
"Data folder" : "Répertoire des données",
+ "Database configuration" : "Configuration de la base de données",
+ "Only {firstAndOnlyDatabase} is available." : "Seul(e) {firstAndOnlyDatabase} est disponible.",
"Install and activate additional PHP modules to choose other database types." : "Installez et activez les modules PHP additionnels adéquats pour choisir d’autres types de base de données.",
"For more details check out the documentation." : "Consultez la documentation pour plus de détails.",
"Performance warning" : "Avertissement à propos des performances",
diff --git a/core/l10n/fr.json b/core/l10n/fr.json
index b1e7a01d35c..d063fe52bd5 100644
--- a/core/l10n/fr.json
+++ b/core/l10n/fr.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Impossible de terminer la connexion",
"State token missing" : "Jeton d’état manquant",
"Your login token is invalid or has expired" : "Votre jeton de connexion est invalide ou a expiré",
+ "Please use original client" : "Veuillez utiliser le client d'origine",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Cette version communautaire de Nextcloud n’est pas prise en charge et les notifications push sont limitées.",
"Login" : "S’identifier",
"Unsupported email length (>255)" : "Longueur de l’e-mail non supportée (> 255 caractères)",
@@ -144,6 +145,8 @@
"Account name" : "Nom du compte",
"Server side authentication failed!" : "L’authentification sur le serveur a échoué !",
"Please contact your administrator." : "Veuillez contacter votre administrateur.",
+ "Session error" : "Erreur de session",
+ "It appears your session token has expired, please refresh the page and try again." : "Il semblerait que votre jeton de session ait expiré, veuillez rafraîchir la page et essayer à nouveau.",
"An internal error occurred." : "Une erreur interne est survenue.",
"Please try again or contact your administrator." : "Veuillez réessayer ou contactez votre administrateur.",
"Password" : "Mot de passe",
@@ -203,9 +206,25 @@
"Login form is disabled." : "Le formulaire de connexion est désactivé.",
"The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Le formulaire de connexion Nextcloud est désactivé. Utilisez une autre option de connexion si disponible ou contactez votre administration.",
"More actions" : "Plus d'actions…",
+ "Password is too weak" : "Mot de passe trop faible",
+ "Password is weak" : "Mot de passe faible",
+ "Password is average" : "Mot de passe moyen",
+ "Password is strong" : "Mot de passe fort",
+ "Password is very strong" : "Mot de passe très fort",
+ "Password is extremely strong" : "Mot de passe extrêmement fort",
+ "Unknown password strength" : "Sécurité du mot de passe inconnue",
+ "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "Votre répertoire de données est certainement accessible depuis Internet car le fichier <code>.htaccess</code> ne fonctionne pas.",
+ "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "Pour savoir comment configurer correctement votre serveur, veuillez lire la {linkStart}documentation{linkEnd}.",
+ "Autoconfig file detected" : "Fichier de configuration automatique détecté",
+ "The setup form below is pre-filled with the values from the config file." : "Le formulaire de configuration ci-dessous est pré-rempli avec les valeurs du fichier de configuration.",
"Security warning" : "Avertissement de sécurité",
+ "Create administration account" : "Créer un compte administrateur",
+ "Administration account name" : "Nom du compte administrateur",
+ "Administration account password" : "Mot de passe du compte administrateur",
"Storage & database" : "Stockage & base de données",
"Data folder" : "Répertoire des données",
+ "Database configuration" : "Configuration de la base de données",
+ "Only {firstAndOnlyDatabase} is available." : "Seul(e) {firstAndOnlyDatabase} est disponible.",
"Install and activate additional PHP modules to choose other database types." : "Installez et activez les modules PHP additionnels adéquats pour choisir d’autres types de base de données.",
"For more details check out the documentation." : "Consultez la documentation pour plus de détails.",
"Performance warning" : "Avertissement à propos des performances",
diff --git a/core/l10n/ga.js b/core/l10n/ga.js
index 0999530c9e6..5bd274720c6 100644
--- a/core/l10n/ga.js
+++ b/core/l10n/ga.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Níorbh fhéidir logáil isteach a chríochnú",
"State token missing" : "Comhartha stáit in easnamh",
"Your login token is invalid or has expired" : "Tá do chomhartha logáil isteach neamhbhailí nó imithe in éag",
+ "Please use original client" : "Bain úsáid as an gcliant bunaidh le do thoil",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Ní thacaítear leis an scaoileadh pobail seo de Nextcloud agus tá teorainn le fógraí brú.",
"Login" : "Logáil isteach",
"Unsupported email length (>255)" : "Fad ríomhphoist nach dtacaítear leis (>255)",
diff --git a/core/l10n/ga.json b/core/l10n/ga.json
index d35ca159da9..a588374cf08 100644
--- a/core/l10n/ga.json
+++ b/core/l10n/ga.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Níorbh fhéidir logáil isteach a chríochnú",
"State token missing" : "Comhartha stáit in easnamh",
"Your login token is invalid or has expired" : "Tá do chomhartha logáil isteach neamhbhailí nó imithe in éag",
+ "Please use original client" : "Bain úsáid as an gcliant bunaidh le do thoil",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Ní thacaítear leis an scaoileadh pobail seo de Nextcloud agus tá teorainn le fógraí brú.",
"Login" : "Logáil isteach",
"Unsupported email length (>255)" : "Fad ríomhphoist nach dtacaítear leis (>255)",
diff --git a/core/l10n/it.js b/core/l10n/it.js
index 0af469b5aba..88d26db5786 100644
--- a/core/l10n/it.js
+++ b/core/l10n/it.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Impossibile completare l'accesso",
"State token missing" : "Token di stato mancante",
"Your login token is invalid or has expired" : "Il tuo token di accesso non è valido o è scaduto",
+ "Please use original client" : "Si prega di utilizzare il client originale",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Questa versione della comunità di Nextcloud non è supportata e le notifiche push sono limitate.",
"Login" : "Accedi",
"Unsupported email length (>255)" : "Lunghezza email non supportata (>255)",
@@ -146,6 +147,8 @@ OC.L10N.register(
"Account name" : "Nome account",
"Server side authentication failed!" : "Autenticazione lato server non riuscita!",
"Please contact your administrator." : "Contatta il tuo amministratore di sistema.",
+ "Session error" : "Errore di sessione",
+ "It appears your session token has expired, please refresh the page and try again." : "Sembra che il token di sessione sia scaduto. Aggiorna la pagina e riprova.",
"An internal error occurred." : "Si è verificato un errore interno.",
"Please try again or contact your administrator." : "Prova ancora o contatta il tuo amministratore.",
"Password" : "Password",
@@ -205,9 +208,25 @@ OC.L10N.register(
"Login form is disabled." : "Il modulo di accesso è disabilitato.",
"The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Il modulo di accesso a Nextcloud è disabilitato. Usa un'altra opzione di accesso, se disponibile, o contatta l'amministratore.",
"More actions" : "Altre azioni",
+ "Password is too weak" : "La password è troppo debole",
+ "Password is weak" : "La password è debole",
+ "Password is average" : "La password è mediocre",
+ "Password is strong" : "La password è forte",
+ "Password is very strong" : "La password è molto forte",
+ "Password is extremely strong" : "La password è estremamente forte",
+ "Unknown password strength" : "Sicurezza della password sconosciuta",
+ "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "Probabilmente la directory dei dati e i file sono accessibili da Internet perché il file <code>.htaccess</code> non funziona.",
+ "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "Per informazioni su come configurare correttamente il tuo server, {linkStart}consultare la documentazione{linkEnd}",
+ "Autoconfig file detected" : "File di configurazione automatica rilevato",
+ "The setup form below is pre-filled with the values from the config file." : "Il modulo di configurazione riportato di seguito è precompilato con i valori del file di configurazione.",
"Security warning" : "Avviso di sicurezza",
+ "Create administration account" : "Crea un account amministrazione",
+ "Administration account name" : "Nome dell'account di amministrazione",
+ "Administration account password" : "Password dell'account di amministrazione",
"Storage & database" : "Archiviazione e database",
"Data folder" : "Cartella dati",
+ "Database configuration" : "Configurazione del database",
+ "Only {firstAndOnlyDatabase} is available." : "Solo {firstAndOnlyDatabase} è disponibile.",
"Install and activate additional PHP modules to choose other database types." : "Installa e attiva i moduli PHP aggiuntivi per scegliere gli altri tipi di database.",
"For more details check out the documentation." : "Per ulteriori dettagli, leggi la documentazione.",
"Performance warning" : "Avviso di prestazioni",
@@ -220,6 +239,7 @@ OC.L10N.register(
"Database tablespace" : "Spazio delle tabelle del database",
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Specifica il numero della porta insieme al nome host (ad es. localhost:5432).",
"Database host" : "Host del database",
+ "localhost" : "localhost",
"Installing …" : "Installazione …",
"Install" : "Installa",
"Need help?" : "Ti serve aiuto?",
diff --git a/core/l10n/it.json b/core/l10n/it.json
index d8f78eff15e..272938b78b0 100644
--- a/core/l10n/it.json
+++ b/core/l10n/it.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Impossibile completare l'accesso",
"State token missing" : "Token di stato mancante",
"Your login token is invalid or has expired" : "Il tuo token di accesso non è valido o è scaduto",
+ "Please use original client" : "Si prega di utilizzare il client originale",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Questa versione della comunità di Nextcloud non è supportata e le notifiche push sono limitate.",
"Login" : "Accedi",
"Unsupported email length (>255)" : "Lunghezza email non supportata (>255)",
@@ -144,6 +145,8 @@
"Account name" : "Nome account",
"Server side authentication failed!" : "Autenticazione lato server non riuscita!",
"Please contact your administrator." : "Contatta il tuo amministratore di sistema.",
+ "Session error" : "Errore di sessione",
+ "It appears your session token has expired, please refresh the page and try again." : "Sembra che il token di sessione sia scaduto. Aggiorna la pagina e riprova.",
"An internal error occurred." : "Si è verificato un errore interno.",
"Please try again or contact your administrator." : "Prova ancora o contatta il tuo amministratore.",
"Password" : "Password",
@@ -203,9 +206,25 @@
"Login form is disabled." : "Il modulo di accesso è disabilitato.",
"The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Il modulo di accesso a Nextcloud è disabilitato. Usa un'altra opzione di accesso, se disponibile, o contatta l'amministratore.",
"More actions" : "Altre azioni",
+ "Password is too weak" : "La password è troppo debole",
+ "Password is weak" : "La password è debole",
+ "Password is average" : "La password è mediocre",
+ "Password is strong" : "La password è forte",
+ "Password is very strong" : "La password è molto forte",
+ "Password is extremely strong" : "La password è estremamente forte",
+ "Unknown password strength" : "Sicurezza della password sconosciuta",
+ "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "Probabilmente la directory dei dati e i file sono accessibili da Internet perché il file <code>.htaccess</code> non funziona.",
+ "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "Per informazioni su come configurare correttamente il tuo server, {linkStart}consultare la documentazione{linkEnd}",
+ "Autoconfig file detected" : "File di configurazione automatica rilevato",
+ "The setup form below is pre-filled with the values from the config file." : "Il modulo di configurazione riportato di seguito è precompilato con i valori del file di configurazione.",
"Security warning" : "Avviso di sicurezza",
+ "Create administration account" : "Crea un account amministrazione",
+ "Administration account name" : "Nome dell'account di amministrazione",
+ "Administration account password" : "Password dell'account di amministrazione",
"Storage & database" : "Archiviazione e database",
"Data folder" : "Cartella dati",
+ "Database configuration" : "Configurazione del database",
+ "Only {firstAndOnlyDatabase} is available." : "Solo {firstAndOnlyDatabase} è disponibile.",
"Install and activate additional PHP modules to choose other database types." : "Installa e attiva i moduli PHP aggiuntivi per scegliere gli altri tipi di database.",
"For more details check out the documentation." : "Per ulteriori dettagli, leggi la documentazione.",
"Performance warning" : "Avviso di prestazioni",
@@ -218,6 +237,7 @@
"Database tablespace" : "Spazio delle tabelle del database",
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Specifica il numero della porta insieme al nome host (ad es. localhost:5432).",
"Database host" : "Host del database",
+ "localhost" : "localhost",
"Installing …" : "Installazione …",
"Install" : "Installa",
"Need help?" : "Ti serve aiuto?",
diff --git a/core/l10n/ja.js b/core/l10n/ja.js
index 6a9ab2d5a6b..f55c04ccbab 100644
--- a/core/l10n/ja.js
+++ b/core/l10n/ja.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "ログインが完了できませんでした",
"State token missing" : "状態トークンがありません",
"Your login token is invalid or has expired" : "あなたのログイントークンは無効か期限が切れています。",
+ "Please use original client" : "オリジナルのクライアントをご利用ください",
"This community release of Nextcloud is unsupported and push notifications are limited." : "コミュニティリリースのNextcloudにサポートはなく、プッシュ通知には制限があります",
"Login" : "ログイン",
"Unsupported email length (>255)" : "メールアドレスが長すぎます (>255)",
diff --git a/core/l10n/ja.json b/core/l10n/ja.json
index b799ee2e7c6..640805c205d 100644
--- a/core/l10n/ja.json
+++ b/core/l10n/ja.json
@@ -25,6 +25,7 @@
"Could not complete login" : "ログインが完了できませんでした",
"State token missing" : "状態トークンがありません",
"Your login token is invalid or has expired" : "あなたのログイントークンは無効か期限が切れています。",
+ "Please use original client" : "オリジナルのクライアントをご利用ください",
"This community release of Nextcloud is unsupported and push notifications are limited." : "コミュニティリリースのNextcloudにサポートはなく、プッシュ通知には制限があります",
"Login" : "ログイン",
"Unsupported email length (>255)" : "メールアドレスが長すぎます (>255)",
diff --git a/core/l10n/lt_LT.js b/core/l10n/lt_LT.js
index c90f4ea0c6e..7877b729670 100644
--- a/core/l10n/lt_LT.js
+++ b/core/l10n/lt_LT.js
@@ -183,6 +183,7 @@ OC.L10N.register(
"Continue with this unsupported browser" : "Tęsti naudojant šią nepalaikomą naršyklę",
"Supported versions" : "Palaikomos versijos",
"Search {types} …" : "Ieškoti {types}…",
+ "Choose {file}" : "Pasirinkti{file}",
"Choose" : "Pasirinkti",
"Copy to {target}" : "Kopijuoti į {target}",
"Copy" : "Kopijuoti",
@@ -218,13 +219,13 @@ OC.L10N.register(
"View changelog" : "Rodyti keitinių žurnalą",
"No action available" : "Jokie veiksmai negalimi",
"Error fetching contact actions" : "Klaida gaunant veiksmus darbui su adresatais",
- "Non-existing tag #{tag}" : "Neegzistuojanti žymė #{tag}",
+ "Non-existing tag #{tag}" : "Neegzistuojanti žyma #{tag}",
"Restricted" : "Apribota",
"Invisible" : "Nematomas",
"Delete" : "Ištrinti",
"Rename" : "Pervadinti",
- "Collaborative tags" : "Bendradarbiavimo žymės",
- "No tags found" : "Nerasta jokių žymių",
+ "Collaborative tags" : "Bendradarbiavimo žymos",
+ "No tags found" : "Nerasta jokių žymų",
"Personal" : "Asmeniniai",
"Accounts" : "Paskyros",
"Admin" : "Administravimas",
@@ -297,6 +298,7 @@ OC.L10N.register(
"This %s instance is currently in maintenance mode, which may take a while." : "Šis %s egzempliorius šiuo metu yra techninės priežiūros veiksenoje, kas savo ruožtu gali šiek tiek užtrukti.",
"This page will refresh itself when the instance is available again." : "Šis puslapis bus įkeltas iš naujo, kai egzempliorius bus ir vėl prieinamas.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Susisiekite su savo sistemos administratoriumi, jei šis pranešimas nedingsta arba, jei jis pasirodė netikėtai.",
+ "Login with username or email" : "Prisijungti su vartotojo vardu arba el. pašto adresu",
"You have not added any info yet" : "Jūs kol kas nesate pridėję jokios informacijos",
"{user} has not added any info yet" : "Naudotojas {user} kol kas nėra pridėjęs jokios informacijos",
"Edit Profile" : "Taisyti profilį",
diff --git a/core/l10n/lt_LT.json b/core/l10n/lt_LT.json
index 9878c35d69c..c82c1fe7ea7 100644
--- a/core/l10n/lt_LT.json
+++ b/core/l10n/lt_LT.json
@@ -181,6 +181,7 @@
"Continue with this unsupported browser" : "Tęsti naudojant šią nepalaikomą naršyklę",
"Supported versions" : "Palaikomos versijos",
"Search {types} …" : "Ieškoti {types}…",
+ "Choose {file}" : "Pasirinkti{file}",
"Choose" : "Pasirinkti",
"Copy to {target}" : "Kopijuoti į {target}",
"Copy" : "Kopijuoti",
@@ -216,13 +217,13 @@
"View changelog" : "Rodyti keitinių žurnalą",
"No action available" : "Jokie veiksmai negalimi",
"Error fetching contact actions" : "Klaida gaunant veiksmus darbui su adresatais",
- "Non-existing tag #{tag}" : "Neegzistuojanti žymė #{tag}",
+ "Non-existing tag #{tag}" : "Neegzistuojanti žyma #{tag}",
"Restricted" : "Apribota",
"Invisible" : "Nematomas",
"Delete" : "Ištrinti",
"Rename" : "Pervadinti",
- "Collaborative tags" : "Bendradarbiavimo žymės",
- "No tags found" : "Nerasta jokių žymių",
+ "Collaborative tags" : "Bendradarbiavimo žymos",
+ "No tags found" : "Nerasta jokių žymų",
"Personal" : "Asmeniniai",
"Accounts" : "Paskyros",
"Admin" : "Administravimas",
@@ -295,6 +296,7 @@
"This %s instance is currently in maintenance mode, which may take a while." : "Šis %s egzempliorius šiuo metu yra techninės priežiūros veiksenoje, kas savo ruožtu gali šiek tiek užtrukti.",
"This page will refresh itself when the instance is available again." : "Šis puslapis bus įkeltas iš naujo, kai egzempliorius bus ir vėl prieinamas.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Susisiekite su savo sistemos administratoriumi, jei šis pranešimas nedingsta arba, jei jis pasirodė netikėtai.",
+ "Login with username or email" : "Prisijungti su vartotojo vardu arba el. pašto adresu",
"You have not added any info yet" : "Jūs kol kas nesate pridėję jokios informacijos",
"{user} has not added any info yet" : "Naudotojas {user} kol kas nėra pridėjęs jokios informacijos",
"Edit Profile" : "Taisyti profilį",
diff --git a/core/l10n/lv.js b/core/l10n/lv.js
index 72a2c310fc0..98aacf13596 100644
--- a/core/l10n/lv.js
+++ b/core/l10n/lv.js
@@ -28,7 +28,7 @@ OC.L10N.register(
"State token missing" : "Trūkst stāvokļa tekstvienības",
"Your login token is invalid or has expired" : "Pieteikšanās pilnvara nav derīga vai ir beigusies",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Šī Nextcloud kopienas versija nav atbalstīta un push paziņojumi ir ierobežoti.",
- "Login" : "Autorizēties",
+ "Login" : "Pieteikumvārds",
"Unsupported email length (>255)" : "Neatbalstāms e-pasta garums (>255)",
"Password reset is disabled" : "Paroles atiestatīšana ir atspējota",
"Could not reset password because the token is expired" : "Nevarēja atiestatīt paroli, jo ir beidzies tekstvienības derīgums",
@@ -123,7 +123,7 @@ OC.L10N.register(
"Log in to {productName}" : "Pierakstīties {productName}",
"Wrong login or password." : "Nepareizs lietotājvārds vai parole.",
"This account is disabled" : "Šis konts ir atspējots",
- "Account name or email" : "Lietotājvārds vai e-pasts",
+ "Account name or email" : "Konta nosaukums vai e-pasta adrese",
"Account name" : "Konta nosaukums",
"Server side authentication failed!" : "Servera autentifikācija neizdevās!",
"Please contact your administrator." : "Lūgums sazināties ar savu pārvaldītāju.",
@@ -240,9 +240,12 @@ OC.L10N.register(
"Line: %s" : "Līnija: %s",
"Trace" : "Izsekot",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Šīs lietotnes pareizai darbībai ir nepieciešams JavaScript. Lūgums {linkstart}ieslēgt JavasScript{linkend} un pārlādēt lapu.",
- "Please log in before granting %1$s access to your %2$s account." : "Lūgums pieteikties, pirms piekļuves piešķiršanas %1$s savam %2$s kontam.",
+ "Connect to your account" : "Savienoties ar savu kontu",
+ "Please log in before granting %1$s access to your %2$s account." : "Lūgums pieteikties pirms piekļuves piešķiršanas %1$s savam %2$s kontam.",
+ "If you are not trying to set up a new device or app, someone is trying to trick you into granting them access to your data. In this case do not proceed and instead contact your system administrator." : "Ja nemēģini iestatīt jaunu ierīci vai lietotni, kāds mēģina apmānīt Tevi, lai Tu piešķirtu piekļuvi saviem datiem. Tādā gadījumā neturpini, un tā vietā sazinies ar savas sistēmas pārvaldītāju!",
"App password" : "Lietotnes parole",
"Grant access" : "Piešķirt piekļuvi",
+ "Alternative log in using app password" : "Tā vietā pieteikties ar lietotnes paroli",
"Account access" : "Piekļuve kontam",
"Currently logged in as %1$s (%2$s)." : "Pašreiz pieteicies kā %1$s (%2$s).",
"You are about to grant %1$s access to your %2$s account." : "Tu grasies piešķirt %1$s piekļuvi savam %2$s kontam.",
@@ -274,7 +277,7 @@ OC.L10N.register(
"Contact your system administrator if this message persists or appeared unexpectedly." : "Jāsazinās ar sistēmas pārvaldītāju, ja šis ziņojums nepazūd vai parādījās negaidīti",
"Login with username or email" : "Pieteikties ar lietotājvārdu vai e-pasta adresi",
"Login with username" : "Pieteikties ar lietotājvārdu",
- "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Tērzēšana, videozvani, ekrāna kopīgošana, tiešsaistes sapulces un tīmekļa apspriešanās - pārlūkā un viedierīču lietotnēs.",
+ "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Tērzēšana, videozvani, ekrāna kopīgošana, tiešsaistes sapulces un tīmekļa apspriedes - pārlūkā un viedierīču lietotnēs.",
"Edit Profile" : "Labot profilu",
"Error loading message template: {error}" : "Kļūda ielādējot ziņojuma veidni: {error}",
"Very weak password" : "Ļoti vāja parole",
diff --git a/core/l10n/lv.json b/core/l10n/lv.json
index 63ffe847f55..32719d5e654 100644
--- a/core/l10n/lv.json
+++ b/core/l10n/lv.json
@@ -26,7 +26,7 @@
"State token missing" : "Trūkst stāvokļa tekstvienības",
"Your login token is invalid or has expired" : "Pieteikšanās pilnvara nav derīga vai ir beigusies",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Šī Nextcloud kopienas versija nav atbalstīta un push paziņojumi ir ierobežoti.",
- "Login" : "Autorizēties",
+ "Login" : "Pieteikumvārds",
"Unsupported email length (>255)" : "Neatbalstāms e-pasta garums (>255)",
"Password reset is disabled" : "Paroles atiestatīšana ir atspējota",
"Could not reset password because the token is expired" : "Nevarēja atiestatīt paroli, jo ir beidzies tekstvienības derīgums",
@@ -121,7 +121,7 @@
"Log in to {productName}" : "Pierakstīties {productName}",
"Wrong login or password." : "Nepareizs lietotājvārds vai parole.",
"This account is disabled" : "Šis konts ir atspējots",
- "Account name or email" : "Lietotājvārds vai e-pasts",
+ "Account name or email" : "Konta nosaukums vai e-pasta adrese",
"Account name" : "Konta nosaukums",
"Server side authentication failed!" : "Servera autentifikācija neizdevās!",
"Please contact your administrator." : "Lūgums sazināties ar savu pārvaldītāju.",
@@ -238,9 +238,12 @@
"Line: %s" : "Līnija: %s",
"Trace" : "Izsekot",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Šīs lietotnes pareizai darbībai ir nepieciešams JavaScript. Lūgums {linkstart}ieslēgt JavasScript{linkend} un pārlādēt lapu.",
- "Please log in before granting %1$s access to your %2$s account." : "Lūgums pieteikties, pirms piekļuves piešķiršanas %1$s savam %2$s kontam.",
+ "Connect to your account" : "Savienoties ar savu kontu",
+ "Please log in before granting %1$s access to your %2$s account." : "Lūgums pieteikties pirms piekļuves piešķiršanas %1$s savam %2$s kontam.",
+ "If you are not trying to set up a new device or app, someone is trying to trick you into granting them access to your data. In this case do not proceed and instead contact your system administrator." : "Ja nemēģini iestatīt jaunu ierīci vai lietotni, kāds mēģina apmānīt Tevi, lai Tu piešķirtu piekļuvi saviem datiem. Tādā gadījumā neturpini, un tā vietā sazinies ar savas sistēmas pārvaldītāju!",
"App password" : "Lietotnes parole",
"Grant access" : "Piešķirt piekļuvi",
+ "Alternative log in using app password" : "Tā vietā pieteikties ar lietotnes paroli",
"Account access" : "Piekļuve kontam",
"Currently logged in as %1$s (%2$s)." : "Pašreiz pieteicies kā %1$s (%2$s).",
"You are about to grant %1$s access to your %2$s account." : "Tu grasies piešķirt %1$s piekļuvi savam %2$s kontam.",
@@ -272,7 +275,7 @@
"Contact your system administrator if this message persists or appeared unexpectedly." : "Jāsazinās ar sistēmas pārvaldītāju, ja šis ziņojums nepazūd vai parādījās negaidīti",
"Login with username or email" : "Pieteikties ar lietotājvārdu vai e-pasta adresi",
"Login with username" : "Pieteikties ar lietotājvārdu",
- "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Tērzēšana, videozvani, ekrāna kopīgošana, tiešsaistes sapulces un tīmekļa apspriešanās - pārlūkā un viedierīču lietotnēs.",
+ "Chatting, video calls, screensharing, online meetings and web conferencing – in your browser and with mobile apps." : "Tērzēšana, videozvani, ekrāna kopīgošana, tiešsaistes sapulces un tīmekļa apspriedes - pārlūkā un viedierīču lietotnēs.",
"Edit Profile" : "Labot profilu",
"Error loading message template: {error}" : "Kļūda ielādējot ziņojuma veidni: {error}",
"Very weak password" : "Ļoti vāja parole",
diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js
index c7ab8a9f87a..0408ab2c18a 100644
--- a/core/l10n/pt_BR.js
+++ b/core/l10n/pt_BR.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Não foi possível concluir o login",
"State token missing" : "Falta o token de estado",
"Your login token is invalid or has expired" : "Seu token de login é inválido ou expirou",
+ "Please use original client" : "Por favor, use o cliente original",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Esta versão da comunidade do Nextcloud não é compatível e as notificações por push são limitadas.",
"Login" : "Login",
"Unsupported email length (>255)" : "Comprimento de e-mail não suportado (>255)",
diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json
index 4652690c5a8..ed8b6c93dc7 100644
--- a/core/l10n/pt_BR.json
+++ b/core/l10n/pt_BR.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Não foi possível concluir o login",
"State token missing" : "Falta o token de estado",
"Your login token is invalid or has expired" : "Seu token de login é inválido ou expirou",
+ "Please use original client" : "Por favor, use o cliente original",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Esta versão da comunidade do Nextcloud não é compatível e as notificações por push são limitadas.",
"Login" : "Login",
"Unsupported email length (>255)" : "Comprimento de e-mail não suportado (>255)",
diff --git a/core/l10n/sk.js b/core/l10n/sk.js
index 1c55f51f3f0..2ccf42f9717 100644
--- a/core/l10n/sk.js
+++ b/core/l10n/sk.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Nie je možné dokončiť prihlásenie",
"State token missing" : "Chýba stavový token",
"Your login token is invalid or has expired" : "Váš prihlasovací token je neplatný alebo jeho platnosť skončila",
+ "Please use original client" : "Použite prosím originálneho klienta",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Toto komunitné vydanie Nextcloud nie je podporované a push upozornenia nie sú k dispozícii.",
"Login" : "Prihlásiť sa",
"Unsupported email length (>255)" : "Dĺžka emailovej správy nie je podporovaná (>255)",
diff --git a/core/l10n/sk.json b/core/l10n/sk.json
index aafa3987490..4f1c2808a76 100644
--- a/core/l10n/sk.json
+++ b/core/l10n/sk.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Nie je možné dokončiť prihlásenie",
"State token missing" : "Chýba stavový token",
"Your login token is invalid or has expired" : "Váš prihlasovací token je neplatný alebo jeho platnosť skončila",
+ "Please use original client" : "Použite prosím originálneho klienta",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Toto komunitné vydanie Nextcloud nie je podporované a push upozornenia nie sú k dispozícii.",
"Login" : "Prihlásiť sa",
"Unsupported email length (>255)" : "Dĺžka emailovej správy nie je podporovaná (>255)",
diff --git a/core/l10n/sr.js b/core/l10n/sr.js
index a22586d4d51..551412c5071 100644
--- a/core/l10n/sr.js
+++ b/core/l10n/sr.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Не могу да довршим пријављивање",
"State token missing" : "Недостаје жетон стања",
"Your login token is invalid or has expired" : "Ваш жетон за пријављивање је неисправан или је истекао",
+ "Please use original client" : "Молимо вас да користите оригинални клијент",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Ово Nextcloud издање заједнице није подржано и брза обавештења су ограничена.",
"Login" : "Пријава",
"Unsupported email length (>255)" : "Није подржана дужина и-мејла (>255)",
diff --git a/core/l10n/sr.json b/core/l10n/sr.json
index 401c298d68e..daa50d84312 100644
--- a/core/l10n/sr.json
+++ b/core/l10n/sr.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Не могу да довршим пријављивање",
"State token missing" : "Недостаје жетон стања",
"Your login token is invalid or has expired" : "Ваш жетон за пријављивање је неисправан или је истекао",
+ "Please use original client" : "Молимо вас да користите оригинални клијент",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Ово Nextcloud издање заједнице није подржано и брза обавештења су ограничена.",
"Login" : "Пријава",
"Unsupported email length (>255)" : "Није подржана дужина и-мејла (>255)",
diff --git a/core/l10n/sv.js b/core/l10n/sv.js
index cbaf4de60f6..bc424ace576 100644
--- a/core/l10n/sv.js
+++ b/core/l10n/sv.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Kunde inte slutföra inloggningen",
"State token missing" : "Statustoken saknas",
"Your login token is invalid or has expired" : "Din inloggnings-token är ogiltigt eller har gått ut",
+ "Please use original client" : "Använd ursprunglig klient",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Denna community-release av Nextcloud stöds inte och pushnotifikationer är begränsade.",
"Login" : "Logga in",
"Unsupported email length (>255)" : "E-postlängd som inte stöds (>255)",
@@ -214,12 +215,18 @@ OC.L10N.register(
"Password is very strong" : "Lösenordet är mycket starkt",
"Password is extremely strong" : "Lösenordet är extremt starkt",
"Unknown password strength" : "Okänd lösenordsstyrka",
+ "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "Din datakatalog och dina filer är troligen åtkomliga från internet eftersom <code>.htaccess</code> filen inte fungerar.",
+ "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "För information om hur du konfigurerar din server korrekt, {linkStart}se dokumentationen{linkEnd}",
+ "Autoconfig file detected" : "Auto-konfigurationsfil upptäckt",
+ "The setup form below is pre-filled with the values from the config file." : "Inställningsformuläret nedan är förifyllt med värden från konfigurationsfilen.",
"Security warning" : "Säkerhetsvarning",
"Create administration account" : "Skapa administratörskonto",
"Administration account name" : "Namn på administratörskonto",
"Administration account password" : "Lösenord för administratörskonto",
"Storage & database" : "Lagring & databas",
"Data folder" : "Datamapp",
+ "Database configuration" : "Databaskonfiguration",
+ "Only {firstAndOnlyDatabase} is available." : "Endast {firstAndOnlyDatabase} är tillgänglig.",
"Install and activate additional PHP modules to choose other database types." : "Installera och aktivera ytterligare moduler för att kunna välja andra databas-typer.",
"For more details check out the documentation." : "För mer detaljer se dokumentationen",
"Performance warning" : "Prestandavarning",
@@ -232,6 +239,7 @@ OC.L10N.register(
"Database tablespace" : "Databas tabellutrymme",
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Vänligen ange portnumret tillsammans med värdnamnet (t.ex. localhost:5432).",
"Database host" : "Databasserver",
+ "localhost" : "localhost",
"Installing …" : "Installerar …",
"Install" : "Installera",
"Need help?" : "Behövs hjälp?",
diff --git a/core/l10n/sv.json b/core/l10n/sv.json
index 9ac91422f93..cb417e74e72 100644
--- a/core/l10n/sv.json
+++ b/core/l10n/sv.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Kunde inte slutföra inloggningen",
"State token missing" : "Statustoken saknas",
"Your login token is invalid or has expired" : "Din inloggnings-token är ogiltigt eller har gått ut",
+ "Please use original client" : "Använd ursprunglig klient",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Denna community-release av Nextcloud stöds inte och pushnotifikationer är begränsade.",
"Login" : "Logga in",
"Unsupported email length (>255)" : "E-postlängd som inte stöds (>255)",
@@ -212,12 +213,18 @@
"Password is very strong" : "Lösenordet är mycket starkt",
"Password is extremely strong" : "Lösenordet är extremt starkt",
"Unknown password strength" : "Okänd lösenordsstyrka",
+ "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "Din datakatalog och dina filer är troligen åtkomliga från internet eftersom <code>.htaccess</code> filen inte fungerar.",
+ "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "För information om hur du konfigurerar din server korrekt, {linkStart}se dokumentationen{linkEnd}",
+ "Autoconfig file detected" : "Auto-konfigurationsfil upptäckt",
+ "The setup form below is pre-filled with the values from the config file." : "Inställningsformuläret nedan är förifyllt med värden från konfigurationsfilen.",
"Security warning" : "Säkerhetsvarning",
"Create administration account" : "Skapa administratörskonto",
"Administration account name" : "Namn på administratörskonto",
"Administration account password" : "Lösenord för administratörskonto",
"Storage & database" : "Lagring & databas",
"Data folder" : "Datamapp",
+ "Database configuration" : "Databaskonfiguration",
+ "Only {firstAndOnlyDatabase} is available." : "Endast {firstAndOnlyDatabase} är tillgänglig.",
"Install and activate additional PHP modules to choose other database types." : "Installera och aktivera ytterligare moduler för att kunna välja andra databas-typer.",
"For more details check out the documentation." : "För mer detaljer se dokumentationen",
"Performance warning" : "Prestandavarning",
@@ -230,6 +237,7 @@
"Database tablespace" : "Databas tabellutrymme",
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Vänligen ange portnumret tillsammans med värdnamnet (t.ex. localhost:5432).",
"Database host" : "Databasserver",
+ "localhost" : "localhost",
"Installing …" : "Installerar …",
"Install" : "Installera",
"Need help?" : "Behövs hjälp?",
diff --git a/core/l10n/tr.js b/core/l10n/tr.js
index 961b5bdbce7..1d9e6284b2d 100644
--- a/core/l10n/tr.js
+++ b/core/l10n/tr.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "Oturum açılamadı",
"State token missing" : "Durum kodu eksik",
"Your login token is invalid or has expired" : "Oturum açma kodunuz geçersiz ya da geçerlilik süresi dolmuş",
+ "Please use original client" : "Lütfen özgün istemciyi kullanın",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Bu Nextcloud topluluk sürümü desteklenmiyor ve anlık bildirimler sınırlı şekilde kullanılabiliyor.",
"Login" : "Oturum aç",
"Unsupported email length (>255)" : "E-posta uzunluğu desteklenmiyor (>255)",
@@ -146,6 +147,8 @@ OC.L10N.register(
"Account name" : "Hesap adı",
"Server side authentication failed!" : "Kimlik sunucu tarafında doğrulanamadı!",
"Please contact your administrator." : "Lütfen BT yöneticiniz ile görüşün.",
+ "Session error" : "Oturum sorunu",
+ "It appears your session token has expired, please refresh the page and try again." : "Oturum kodunuzun süresi dolmuş gibi görünüyor. Lütfen sayfayı yenileyip yeniden deneyin.",
"An internal error occurred." : "İçeride bir sorun çıktı.",
"Please try again or contact your administrator." : "Lütfen yeniden deneyin ya da BT yöneticiniz ile görüşün.",
"Password" : "Parola",
@@ -205,9 +208,25 @@ OC.L10N.register(
"Login form is disabled." : "Oturum açma formu kullanımdan kaldırılmış.",
"The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Nextcloud oturum açma formu kullanımdan kaldırılmış. Varsa başka bir oturum açma seçeneğini kullanın ya da yöneticiniz ile görüşün.",
"More actions" : "Diğer işlemler",
+ "Password is too weak" : "Parola çok kolay",
+ "Password is weak" : "Parola kolay",
+ "Password is average" : "Parola orta zorlukta",
+ "Password is strong" : "Parola zor",
+ "Password is very strong" : "Parola çok zor",
+ "Password is extremely strong" : "Parola aşırı zor",
+ "Unknown password strength" : "Parola zorluğu bilinmiyor",
+ "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "<code>.htaccess</code> dosyası çalışmadığı için veri klasörünüz ve dosyalarınız İnternet üzerinden erişime açık.",
+ "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "Sunucunuzu nasıl yapılandıracağınız hakkında bilgi almak için {linkStart}belgelere bakabilirsiniz{linkEnd}",
+ "Autoconfig file detected" : "Otomatik yapılandırma dosyası bulundu",
+ "The setup form below is pre-filled with the values from the config file." : "Aşağıdaki kurulum formu, yapılandırma dosyasındaki değerlerle önceden doldurulmuştur.",
"Security warning" : "Güvenlik uyarısı",
+ "Create administration account" : "Yönetici hesabı oluştur",
+ "Administration account name" : "Yönetici hesabı kullanıcı adı",
+ "Administration account password" : "Yönetici hesabı parolası",
"Storage & database" : "Depolama ve veri tabanı",
"Data folder" : "Veri klasörü",
+ "Database configuration" : "Veri tabanı yapılandırması",
+ "Only {firstAndOnlyDatabase} is available." : "Yalnızca {firstAndOnlyDatabase} kullanılabilir.",
"Install and activate additional PHP modules to choose other database types." : "Diğer veri tabanı türlerini seçebilmek için ek PHP modüllerini kurun ve kullanıma alın.",
"For more details check out the documentation." : "Ayrıntılı bilgi almak için belgelere bakabilirsiniz.",
"Performance warning" : "Başarım uyarısı",
@@ -220,6 +239,7 @@ OC.L10N.register(
"Database tablespace" : "Veri tabanı tablo alanı",
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Lütfen sunucu adının yanında bağlantı noktasını da belirtin (Örnek: localhost:5432).",
"Database host" : "Veri tabanı sunucusu",
+ "localhost" : "localhost",
"Installing …" : "Kuruluyor…",
"Install" : "Kur",
"Need help?" : "Yardım gerekiyor mu?",
diff --git a/core/l10n/tr.json b/core/l10n/tr.json
index d9f3adfd8cb..1861420e15f 100644
--- a/core/l10n/tr.json
+++ b/core/l10n/tr.json
@@ -25,6 +25,7 @@
"Could not complete login" : "Oturum açılamadı",
"State token missing" : "Durum kodu eksik",
"Your login token is invalid or has expired" : "Oturum açma kodunuz geçersiz ya da geçerlilik süresi dolmuş",
+ "Please use original client" : "Lütfen özgün istemciyi kullanın",
"This community release of Nextcloud is unsupported and push notifications are limited." : "Bu Nextcloud topluluk sürümü desteklenmiyor ve anlık bildirimler sınırlı şekilde kullanılabiliyor.",
"Login" : "Oturum aç",
"Unsupported email length (>255)" : "E-posta uzunluğu desteklenmiyor (>255)",
@@ -144,6 +145,8 @@
"Account name" : "Hesap adı",
"Server side authentication failed!" : "Kimlik sunucu tarafında doğrulanamadı!",
"Please contact your administrator." : "Lütfen BT yöneticiniz ile görüşün.",
+ "Session error" : "Oturum sorunu",
+ "It appears your session token has expired, please refresh the page and try again." : "Oturum kodunuzun süresi dolmuş gibi görünüyor. Lütfen sayfayı yenileyip yeniden deneyin.",
"An internal error occurred." : "İçeride bir sorun çıktı.",
"Please try again or contact your administrator." : "Lütfen yeniden deneyin ya da BT yöneticiniz ile görüşün.",
"Password" : "Parola",
@@ -203,9 +206,25 @@
"Login form is disabled." : "Oturum açma formu kullanımdan kaldırılmış.",
"The Nextcloud login form is disabled. Use another login option if available or contact your administration." : "Nextcloud oturum açma formu kullanımdan kaldırılmış. Varsa başka bir oturum açma seçeneğini kullanın ya da yöneticiniz ile görüşün.",
"More actions" : "Diğer işlemler",
+ "Password is too weak" : "Parola çok kolay",
+ "Password is weak" : "Parola kolay",
+ "Password is average" : "Parola orta zorlukta",
+ "Password is strong" : "Parola zor",
+ "Password is very strong" : "Parola çok zor",
+ "Password is extremely strong" : "Parola aşırı zor",
+ "Unknown password strength" : "Parola zorluğu bilinmiyor",
+ "Your data directory and files are probably accessible from the internet because the <code>.htaccess</code> file does not work." : "<code>.htaccess</code> dosyası çalışmadığı için veri klasörünüz ve dosyalarınız İnternet üzerinden erişime açık.",
+ "For information how to properly configure your server, please {linkStart}see the documentation{linkEnd}" : "Sunucunuzu nasıl yapılandıracağınız hakkında bilgi almak için {linkStart}belgelere bakabilirsiniz{linkEnd}",
+ "Autoconfig file detected" : "Otomatik yapılandırma dosyası bulundu",
+ "The setup form below is pre-filled with the values from the config file." : "Aşağıdaki kurulum formu, yapılandırma dosyasındaki değerlerle önceden doldurulmuştur.",
"Security warning" : "Güvenlik uyarısı",
+ "Create administration account" : "Yönetici hesabı oluştur",
+ "Administration account name" : "Yönetici hesabı kullanıcı adı",
+ "Administration account password" : "Yönetici hesabı parolası",
"Storage & database" : "Depolama ve veri tabanı",
"Data folder" : "Veri klasörü",
+ "Database configuration" : "Veri tabanı yapılandırması",
+ "Only {firstAndOnlyDatabase} is available." : "Yalnızca {firstAndOnlyDatabase} kullanılabilir.",
"Install and activate additional PHP modules to choose other database types." : "Diğer veri tabanı türlerini seçebilmek için ek PHP modüllerini kurun ve kullanıma alın.",
"For more details check out the documentation." : "Ayrıntılı bilgi almak için belgelere bakabilirsiniz.",
"Performance warning" : "Başarım uyarısı",
@@ -218,6 +237,7 @@
"Database tablespace" : "Veri tabanı tablo alanı",
"Please specify the port number along with the host name (e.g., localhost:5432)." : "Lütfen sunucu adının yanında bağlantı noktasını da belirtin (Örnek: localhost:5432).",
"Database host" : "Veri tabanı sunucusu",
+ "localhost" : "localhost",
"Installing …" : "Kuruluyor…",
"Install" : "Kur",
"Need help?" : "Yardım gerekiyor mu?",
diff --git a/core/l10n/uk.js b/core/l10n/uk.js
index 790ab593b1c..7775b2965b3 100644
--- a/core/l10n/uk.js
+++ b/core/l10n/uk.js
@@ -105,7 +105,7 @@ OC.L10N.register(
"Yes" : "Так",
"The remote URL must include the user." : "Віддалена адреса повинна містити в собі імʼя користувача.",
"Invalid remote URL." : "Недійсна віддалена адреса.",
- "Failed to add the public link to your Nextcloud" : "Не вдалося додати загальнодоступне посилання до вашого Nextcloud",
+ "Failed to add the public link to your Nextcloud" : "Не вдалося додати публічне посилання до вашого Nextcloud",
"Federated user" : "Обʼєднаний користувач",
"user@your-nextcloud.org" : "користувач@ваш-nextcloud.org",
"Create share" : "Передати у публічний доступ",
diff --git a/core/l10n/uk.json b/core/l10n/uk.json
index 3b84db9ca5d..dc51aaa15ab 100644
--- a/core/l10n/uk.json
+++ b/core/l10n/uk.json
@@ -103,7 +103,7 @@
"Yes" : "Так",
"The remote URL must include the user." : "Віддалена адреса повинна містити в собі імʼя користувача.",
"Invalid remote URL." : "Недійсна віддалена адреса.",
- "Failed to add the public link to your Nextcloud" : "Не вдалося додати загальнодоступне посилання до вашого Nextcloud",
+ "Failed to add the public link to your Nextcloud" : "Не вдалося додати публічне посилання до вашого Nextcloud",
"Federated user" : "Обʼєднаний користувач",
"user@your-nextcloud.org" : "користувач@ваш-nextcloud.org",
"Create share" : "Передати у публічний доступ",
diff --git a/core/l10n/zh_CN.js b/core/l10n/zh_CN.js
index 4d15ae7500f..d8d36568f29 100644
--- a/core/l10n/zh_CN.js
+++ b/core/l10n/zh_CN.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "无法完成登录",
"State token missing" : "状态令牌丢失",
"Your login token is invalid or has expired" : "你的登录 token 无效或已过期",
+ "Please use original client" : "请使用原始客户端",
"This community release of Nextcloud is unsupported and push notifications are limited." : "这个 Nextcloud 的社区版本不受支持,推送通知功能受限。",
"Login" : "登录",
"Unsupported email length (>255)" : "不支持的电子邮箱长度(>255)",
diff --git a/core/l10n/zh_CN.json b/core/l10n/zh_CN.json
index 859c6b65552..ff5520e1378 100644
--- a/core/l10n/zh_CN.json
+++ b/core/l10n/zh_CN.json
@@ -25,6 +25,7 @@
"Could not complete login" : "无法完成登录",
"State token missing" : "状态令牌丢失",
"Your login token is invalid or has expired" : "你的登录 token 无效或已过期",
+ "Please use original client" : "请使用原始客户端",
"This community release of Nextcloud is unsupported and push notifications are limited." : "这个 Nextcloud 的社区版本不受支持,推送通知功能受限。",
"Login" : "登录",
"Unsupported email length (>255)" : "不支持的电子邮箱长度(>255)",
diff --git a/core/l10n/zh_TW.js b/core/l10n/zh_TW.js
index 33e81e79a65..7ec50d04d19 100644
--- a/core/l10n/zh_TW.js
+++ b/core/l10n/zh_TW.js
@@ -27,6 +27,7 @@ OC.L10N.register(
"Could not complete login" : "嘗試登入時發生錯誤",
"State token missing" : "狀態代符遺失",
"Your login token is invalid or has expired" : "您的登入代符無效或已過期",
+ "Please use original client" : "請使用原始客戶端",
"This community release of Nextcloud is unsupported and push notifications are limited." : "這個 Nextcloud 的社群版本沒有得到支援,而且推播通知會有所限制。",
"Login" : "登入",
"Unsupported email length (>255)" : "不支援的電子郵件長度 (>255)",
diff --git a/core/l10n/zh_TW.json b/core/l10n/zh_TW.json
index 83cce2dc422..c6839ca5b2f 100644
--- a/core/l10n/zh_TW.json
+++ b/core/l10n/zh_TW.json
@@ -25,6 +25,7 @@
"Could not complete login" : "嘗試登入時發生錯誤",
"State token missing" : "狀態代符遺失",
"Your login token is invalid or has expired" : "您的登入代符無效或已過期",
+ "Please use original client" : "請使用原始客戶端",
"This community release of Nextcloud is unsupported and push notifications are limited." : "這個 Nextcloud 的社群版本沒有得到支援,而且推播通知會有所限制。",
"Login" : "登入",
"Unsupported email length (>255)" : "不支援的電子郵件長度 (>255)",