summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rw-r--r--settings/js/admin.js9
-rw-r--r--settings/js/authtoken_view.js6
-rw-r--r--settings/js/users/users.js2
-rw-r--r--settings/l10n/cs.js2
-rw-r--r--settings/l10n/cs.json2
-rw-r--r--settings/l10n/de.js1
-rw-r--r--settings/l10n/de.json1
-rw-r--r--settings/l10n/de_DE.js1
-rw-r--r--settings/l10n/de_DE.json1
-rw-r--r--settings/l10n/es.js1
-rw-r--r--settings/l10n/es.json1
-rw-r--r--settings/l10n/fr.js7
-rw-r--r--settings/l10n/fr.json7
-rw-r--r--settings/l10n/hu.js3
-rw-r--r--settings/l10n/hu.json3
-rw-r--r--settings/l10n/is.js1
-rw-r--r--settings/l10n/is.json1
-rw-r--r--settings/l10n/it.js10
-rw-r--r--settings/l10n/it.json10
-rw-r--r--settings/l10n/nl.js1
-rw-r--r--settings/l10n/nl.json1
-rw-r--r--settings/l10n/pl.js1
-rw-r--r--settings/l10n/pl.json1
-rw-r--r--settings/l10n/pt_BR.js1
-rw-r--r--settings/l10n/pt_BR.json1
-rw-r--r--settings/l10n/ru.js1
-rw-r--r--settings/l10n/ru.json1
-rw-r--r--settings/l10n/sv.js9
-rw-r--r--settings/l10n/sv.json9
-rw-r--r--settings/l10n/zh_CN.js14
-rw-r--r--settings/l10n/zh_CN.json14
31 files changed, 91 insertions, 32 deletions
diff --git a/settings/js/admin.js b/settings/js/admin.js
index 094b12b2bab..985e318e34b 100644
--- a/settings/js/admin.js
+++ b/settings/js/admin.js
@@ -46,9 +46,12 @@ $(document).ready(function(){
if($(this).is(':checked')){
var mode = $(this).val();
if (mode === 'ajax' || mode === 'webcron' || mode === 'cron') {
- OCP.AppConfig.setValue('core', 'backgroundjobs_mode', mode);
- // clear cron errors on background job mode change
- OCP.AppConfig.deleteKey('core', 'cronErrors');
+ OCP.AppConfig.setValue('core', 'backgroundjobs_mode', mode, {
+ success: function() {
+ // clear cron errors on background job mode change
+ OCP.AppConfig.deleteKey('core', 'cronErrors');
+ }
+ });
}
}
});
diff --git a/settings/js/authtoken_view.js b/settings/js/authtoken_view.js
index 365057b5fc6..9931be2ae1f 100644
--- a/settings/js/authtoken_view.js
+++ b/settings/js/authtoken_view.js
@@ -230,6 +230,12 @@
this._tokenName = $('#app-password-name');
this._addAppPasswordBtn = $('#add-app-password');
this._addAppPasswordBtn.click(_.bind(this._addAppPassword, this));
+ this._appPasswordName = $('#app-password-name');
+ this._appPasswordName.on('keypress', function(event) {
+ if (event.which === 13) {
+ _this._addAppPassword();
+ }
+ });
this._result = $('#app-password-result');
this._newAppLoginName = $('#new-app-login-name');
diff --git a/settings/js/users/users.js b/settings/js/users/users.js
index 46bfea4b35c..16f043b4576 100644
--- a/settings/js/users/users.js
+++ b/settings/js/users/users.js
@@ -425,7 +425,7 @@ var UserList = {
applyGroupSelect: function (element, user, checked) {
if (OC.PasswordConfirmation.requiresPasswordConfirmation()) {
- OC.PasswordConfirmation.requirePasswordConfirmation(_.bind(this.applySubadminSelect, this, element, user, checked));
+ OC.PasswordConfirmation.requirePasswordConfirmation(_.bind(this.applyGroupSelect, this, element, user, checked));
return;
}
diff --git a/settings/l10n/cs.js b/settings/l10n/cs.js
index 3da9b16a9e7..c3bfdd57ee3 100644
--- a/settings/l10n/cs.js
+++ b/settings/l10n/cs.js
@@ -125,6 +125,7 @@ OC.L10N.register(
"undo" : "vrátit zpět",
"never" : "nikdy",
"deleted {userName}" : "smazán {userName}",
+ "No user found for <strong>{pattern}</strong>" : "Vzoru <strong>{pattern}<</strong> neodpovídá žádný úživatel",
"Unable to add user to group {group}" : "Nelze přidat uživatele do skupiny {group}",
"Unable to remove user from group {group}" : "Nelze odebrat uživatele ze skupiny {group}",
"Add group" : "Přidat skupinu",
@@ -233,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Ladění výkonu",
"Improving the config.php" : "Vylepšení souboru config.php",
"Theming" : "Vzhledy",
+ "Check the security of your Nextcloud over our security scan" : "Zkontrolujte bezpečnost vašeho Nextcloudu pomocí našeho bezpečnostního skenu",
"Hardening and security guidance" : "Průvodce vylepšením bezpečnosti",
"Developer documentation" : "Vývojářská dokumentace",
"by %s" : "%s",
diff --git a/settings/l10n/cs.json b/settings/l10n/cs.json
index 910c503e010..ec21a774a83 100644
--- a/settings/l10n/cs.json
+++ b/settings/l10n/cs.json
@@ -123,6 +123,7 @@
"undo" : "vrátit zpět",
"never" : "nikdy",
"deleted {userName}" : "smazán {userName}",
+ "No user found for <strong>{pattern}</strong>" : "Vzoru <strong>{pattern}<</strong> neodpovídá žádný úživatel",
"Unable to add user to group {group}" : "Nelze přidat uživatele do skupiny {group}",
"Unable to remove user from group {group}" : "Nelze odebrat uživatele ze skupiny {group}",
"Add group" : "Přidat skupinu",
@@ -231,6 +232,7 @@
"Performance tuning" : "Ladění výkonu",
"Improving the config.php" : "Vylepšení souboru config.php",
"Theming" : "Vzhledy",
+ "Check the security of your Nextcloud over our security scan" : "Zkontrolujte bezpečnost vašeho Nextcloudu pomocí našeho bezpečnostního skenu",
"Hardening and security guidance" : "Průvodce vylepšením bezpečnosti",
"Developer documentation" : "Vývojářská dokumentace",
"by %s" : "%s",
diff --git a/settings/l10n/de.js b/settings/l10n/de.js
index ac55f6e8f7e..0437c157255 100644
--- a/settings/l10n/de.js
+++ b/settings/l10n/de.js
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Leistungsoptimierung",
"Improving the config.php" : "Die config.php optimieren",
"Theming" : "Themen verwenden",
+ "Check the security of your Nextcloud over our security scan" : "Überprüfen Sie die Sicherheit Ihrer Nextcloud mit unserem Sicherheits-Scan",
"Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen",
"Developer documentation" : "Dokumentation für Entwickler",
"by %s" : "von %s",
diff --git a/settings/l10n/de.json b/settings/l10n/de.json
index fa061a7eadf..ff9fbee98df 100644
--- a/settings/l10n/de.json
+++ b/settings/l10n/de.json
@@ -232,6 +232,7 @@
"Performance tuning" : "Leistungsoptimierung",
"Improving the config.php" : "Die config.php optimieren",
"Theming" : "Themen verwenden",
+ "Check the security of your Nextcloud over our security scan" : "Überprüfen Sie die Sicherheit Ihrer Nextcloud mit unserem Sicherheits-Scan",
"Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen",
"Developer documentation" : "Dokumentation für Entwickler",
"by %s" : "von %s",
diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js
index 4e41e2cb317..e1df60148be 100644
--- a/settings/l10n/de_DE.js
+++ b/settings/l10n/de_DE.js
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Leistungsoptimierung",
"Improving the config.php" : "Die config.php optimieren",
"Theming" : "Themes verwenden",
+ "Check the security of your Nextcloud over our security scan" : "Überprüfen Sie die Sicherheit Ihrer Nextcloud mit unserem Sicherheits-Scan",
"Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen",
"Developer documentation" : "Dokumentation für Entwickler",
"by %s" : "von %s",
diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json
index 9ee6357457c..2388890ad02 100644
--- a/settings/l10n/de_DE.json
+++ b/settings/l10n/de_DE.json
@@ -232,6 +232,7 @@
"Performance tuning" : "Leistungsoptimierung",
"Improving the config.php" : "Die config.php optimieren",
"Theming" : "Themes verwenden",
+ "Check the security of your Nextcloud over our security scan" : "Überprüfen Sie die Sicherheit Ihrer Nextcloud mit unserem Sicherheits-Scan",
"Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen",
"Developer documentation" : "Dokumentation für Entwickler",
"by %s" : "von %s",
diff --git a/settings/l10n/es.js b/settings/l10n/es.js
index 9dda2e38579..c11de5961f6 100644
--- a/settings/l10n/es.js
+++ b/settings/l10n/es.js
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Ajuste de rendimiento",
"Improving the config.php" : "Mejorar el config.php",
"Theming" : "Personalizar el tema",
+ "Check the security of your Nextcloud over our security scan" : "Comprueba la seguridad de tu Nextcloud mediante nuestro escaneo de seguridad",
"Hardening and security guidance" : "Guía de protección y seguridad",
"Developer documentation" : "Documentación de desarrollador",
"by %s" : "por %s",
diff --git a/settings/l10n/es.json b/settings/l10n/es.json
index 886a3a44157..b4f69684bd6 100644
--- a/settings/l10n/es.json
+++ b/settings/l10n/es.json
@@ -232,6 +232,7 @@
"Performance tuning" : "Ajuste de rendimiento",
"Improving the config.php" : "Mejorar el config.php",
"Theming" : "Personalizar el tema",
+ "Check the security of your Nextcloud over our security scan" : "Comprueba la seguridad de tu Nextcloud mediante nuestro escaneo de seguridad",
"Hardening and security guidance" : "Guía de protección y seguridad",
"Developer documentation" : "Documentación de desarrollador",
"by %s" : "por %s",
diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js
index ec41e297957..351684a9332 100644
--- a/settings/l10n/fr.js
+++ b/settings/l10n/fr.js
@@ -68,7 +68,7 @@ OC.L10N.register(
"Error while disabling broken app" : "Erreur lors de la désactivation de l'application cassé .",
"Updating...." : "Mise à jour...",
"Error while updating app" : "Erreur lors de la mise à jour de l'application",
- "Updated" : "Mise à jour effectuée",
+ "Updated" : "Mise à jour terminée",
"Uninstalling ...." : "Désinstallation...",
"Error while uninstalling app" : "Erreur lors de la désinstallation de l'application",
"Uninstall" : "Désinstaller",
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Ajustement des performances",
"Improving the config.php" : "Amélioration du config.php ",
"Theming" : "Personnalisation de l'apparence",
+ "Check the security of your Nextcloud over our security scan" : "Vérifier la sécurité de votre Nextcloud grâce à notre scan de sécurité",
"Hardening and security guidance" : "Guide pour le renforcement et la sécurité",
"Developer documentation" : "Documentation pour développeurs",
"by %s" : "par %s",
@@ -358,10 +359,10 @@ OC.L10N.register(
"Fatal issues only" : "Erreurs fatales uniquement",
"Log" : "Log",
"What to log" : "Ce qu'il faut journaliser",
- "Download logfile" : "Télécharger le fichier de journalisation",
+ "Download logfile" : "Télécharger le fichier journal",
"More" : "Plus",
"Less" : "Moins",
- "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La taille du fichier journal excède 100 Mo. Le télécharger peut prendre un certain temps!",
+ "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La taille du fichier journal excède 100 Mo. Le télécharger peut prendre du temps !",
"Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail",
"Allow users to send mail notification for shared files to other users" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail",
"SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite est actuellement utilisé comme gestionnaire de base de données. Pour des installations plus volumineuses, nous vous conseillons d'utiliser un autre gestionnaire de base de données.",
diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json
index 37fb3cf0e5b..a475191857a 100644
--- a/settings/l10n/fr.json
+++ b/settings/l10n/fr.json
@@ -66,7 +66,7 @@
"Error while disabling broken app" : "Erreur lors de la désactivation de l'application cassé .",
"Updating...." : "Mise à jour...",
"Error while updating app" : "Erreur lors de la mise à jour de l'application",
- "Updated" : "Mise à jour effectuée",
+ "Updated" : "Mise à jour terminée",
"Uninstalling ...." : "Désinstallation...",
"Error while uninstalling app" : "Erreur lors de la désinstallation de l'application",
"Uninstall" : "Désinstaller",
@@ -232,6 +232,7 @@
"Performance tuning" : "Ajustement des performances",
"Improving the config.php" : "Amélioration du config.php ",
"Theming" : "Personnalisation de l'apparence",
+ "Check the security of your Nextcloud over our security scan" : "Vérifier la sécurité de votre Nextcloud grâce à notre scan de sécurité",
"Hardening and security guidance" : "Guide pour le renforcement et la sécurité",
"Developer documentation" : "Documentation pour développeurs",
"by %s" : "par %s",
@@ -356,10 +357,10 @@
"Fatal issues only" : "Erreurs fatales uniquement",
"Log" : "Log",
"What to log" : "Ce qu'il faut journaliser",
- "Download logfile" : "Télécharger le fichier de journalisation",
+ "Download logfile" : "Télécharger le fichier journal",
"More" : "Plus",
"Less" : "Moins",
- "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La taille du fichier journal excède 100 Mo. Le télécharger peut prendre un certain temps!",
+ "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La taille du fichier journal excède 100 Mo. Le télécharger peut prendre du temps !",
"Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail",
"Allow users to send mail notification for shared files to other users" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail",
"SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite est actuellement utilisé comme gestionnaire de base de données. Pour des installations plus volumineuses, nous vous conseillons d'utiliser un autre gestionnaire de base de données.",
diff --git a/settings/l10n/hu.js b/settings/l10n/hu.js
index ce63c3307de..df7e4f0f098 100644
--- a/settings/l10n/hu.js
+++ b/settings/l10n/hu.js
@@ -25,6 +25,7 @@ OC.L10N.register(
"You need to set your user email before being able to send test emails." : "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e-mail küldést.",
"Invalid request" : "Érvénytelen kérés",
"Invalid mail address" : "Érvénytelen e-mail cím",
+ "No valid group selected" : "Nincs érvényes csoport kiválasztva",
"A user with that name already exists." : "Ilyen névvel már létezik felhasználó!",
"Unable to create user." : "Nem lehet létrehozni a felhasználót.",
"Your %s account was created" : "%s fiók létrehozva",
@@ -55,6 +56,7 @@ OC.L10N.register(
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "A hivatalos alkalmazásokat a közösség fejleszti. Ezek adják a központi funkcionalitásokat és éles rendszerekben használhatóak.",
"Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "A jóváhagyott alkalmazásokat megbízható fejlesztők készítik, amik megfelelnek a felületes biztonsági ellenőrzésnek. Nyílt forráskódú tárolóban aktívan karbantartják és biztosítják a stabil használatot.",
"This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ez az alkalmazás még nincs biztonságilag ellenőrizve és vagy új, vagy ismert instabil. Telepítés csak saját felelősségre!",
+ "Disabling app …" : "Alkalmazás tiltása...",
"Error while disabling app" : "Hiba az alkalmazás letiltása közben",
"Disable" : "Letiltás",
"Enable" : "Engedélyezés",
@@ -273,6 +275,7 @@ OC.L10N.register(
"Email" : "E-mail",
"Your email address" : "Az Ön e-mail címe",
"No email address set" : "Nincs e-mail cím beállítva",
+ "For password reset and notifications" : "Jelszóvisszaállításhoz és értesítésekhez",
"Phone number" : "Telefonszám",
"Your phone number" : "A telefonszámod",
"Address" : "Cím",
diff --git a/settings/l10n/hu.json b/settings/l10n/hu.json
index d72c12ede36..4faedf0fdcf 100644
--- a/settings/l10n/hu.json
+++ b/settings/l10n/hu.json
@@ -23,6 +23,7 @@
"You need to set your user email before being able to send test emails." : "Előbb meg kell adnia az e-mail címét, mielőtt tesztelni tudná az e-mail küldést.",
"Invalid request" : "Érvénytelen kérés",
"Invalid mail address" : "Érvénytelen e-mail cím",
+ "No valid group selected" : "Nincs érvényes csoport kiválasztva",
"A user with that name already exists." : "Ilyen névvel már létezik felhasználó!",
"Unable to create user." : "Nem lehet létrehozni a felhasználót.",
"Your %s account was created" : "%s fiók létrehozva",
@@ -53,6 +54,7 @@
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "A hivatalos alkalmazásokat a közösség fejleszti. Ezek adják a központi funkcionalitásokat és éles rendszerekben használhatóak.",
"Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "A jóváhagyott alkalmazásokat megbízható fejlesztők készítik, amik megfelelnek a felületes biztonsági ellenőrzésnek. Nyílt forráskódú tárolóban aktívan karbantartják és biztosítják a stabil használatot.",
"This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ez az alkalmazás még nincs biztonságilag ellenőrizve és vagy új, vagy ismert instabil. Telepítés csak saját felelősségre!",
+ "Disabling app …" : "Alkalmazás tiltása...",
"Error while disabling app" : "Hiba az alkalmazás letiltása közben",
"Disable" : "Letiltás",
"Enable" : "Engedélyezés",
@@ -271,6 +273,7 @@
"Email" : "E-mail",
"Your email address" : "Az Ön e-mail címe",
"No email address set" : "Nincs e-mail cím beállítva",
+ "For password reset and notifications" : "Jelszóvisszaállításhoz és értesítésekhez",
"Phone number" : "Telefonszám",
"Your phone number" : "A telefonszámod",
"Address" : "Cím",
diff --git a/settings/l10n/is.js b/settings/l10n/is.js
index 1065d806b58..b97df80e5ed 100644
--- a/settings/l10n/is.js
+++ b/settings/l10n/is.js
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Fínstilling afkasta",
"Improving the config.php" : "Bæting á config.php skránni",
"Theming" : "Þemu",
+ "Check the security of your Nextcloud over our security scan" : "Athugaðu öryggi Nextcloud-skýsins með öryggisskönnun okkar",
"Hardening and security guidance" : "Brynjun og öryggisleiðbeiningar",
"Developer documentation" : "Skjölun fyrir þróunaraðila",
"by %s" : "frá %s",
diff --git a/settings/l10n/is.json b/settings/l10n/is.json
index 147a4ba5476..455f1ff4f51 100644
--- a/settings/l10n/is.json
+++ b/settings/l10n/is.json
@@ -232,6 +232,7 @@
"Performance tuning" : "Fínstilling afkasta",
"Improving the config.php" : "Bæting á config.php skránni",
"Theming" : "Þemu",
+ "Check the security of your Nextcloud over our security scan" : "Athugaðu öryggi Nextcloud-skýsins með öryggisskönnun okkar",
"Hardening and security guidance" : "Brynjun og öryggisleiðbeiningar",
"Developer documentation" : "Skjölun fyrir þróunaraðila",
"by %s" : "frá %s",
diff --git a/settings/l10n/it.js b/settings/l10n/it.js
index 505705ee691..6b6680ce1f5 100644
--- a/settings/l10n/it.js
+++ b/settings/l10n/it.js
@@ -27,7 +27,7 @@ OC.L10N.register(
"Invalid mail address" : "Indirizzo email non valido",
"No valid group selected" : "Nessun gruppo valido selezionato",
"A user with that name already exists." : "Un utente con quel nome esiste già.",
- "To send a password link to the user an email address is required." : "Per inviare un link password all'utente è richiesta una email.",
+ "To send a password link to the user an email address is required." : "Per inviare un collegamento della password all'utente è richiesto un indirizzo email.",
"Unable to create user." : "Impossibile creare l'utente.",
"Your %s account was created" : "Il tuo account %s è stato creato",
"Unable to delete user." : "Impossibile eliminare l'utente.",
@@ -57,7 +57,7 @@ OC.L10N.register(
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni ufficiali sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.",
"Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Le applicazioni approvate sono sviluppate da sviluppatori affidabili e hanno passato un rapido controllo di sicurezza. Sono attivamente mantenute in un deposito aperto del codice e i loro responsabili le ritengono pronte sia per un utilizzo casuale che per un utilizzo continuativo.",
"This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Questa applicazione non è stata sottoposta a controlli di sicurezza, è nuova o notoriamente instabile. Installala a tuo rischio.",
- "Disabling app …" : "Disabilita applicazione...",
+ "Disabling app …" : "Disabilitazione applicazione...",
"Error while disabling app" : "Errore durante la disattivazione",
"Disable" : "Disabilita",
"Enable" : "Abilita",
@@ -278,7 +278,7 @@ OC.L10N.register(
"Email" : "Posta elettronica",
"Your email address" : "Il tuo indirizzo email",
"No email address set" : "Nessun indirizzo email impostato",
- "For password reset and notifications" : "Per il reset della password e notifiche",
+ "For password reset and notifications" : "Per ripristino della password e notifiche",
"Phone number" : "Numero di telefono",
"Your phone number" : "Il tuo numero di telefono",
"Address" : "Indirizzo",
@@ -321,7 +321,7 @@ OC.L10N.register(
"Show last log in" : "Mostra ultimo accesso",
"Show user backend" : "Mostra il motore utente",
"Send email to new user" : "Invia email al nuovo utente",
- "When the password of the new user is left empty an activation email with a link to set the password is send to the user" : "Quando la password del nuovo utente è lasciata vuota una email con un link per impostare la password è inviata all'utente",
+ "When the password of the new user is left empty an activation email with a link to set the password is send to the user" : "Quando la password del nuovo utente è lasciata vuota una email con un collegamento per impostare la password è inviata all'utente",
"Show email address" : "Mostra l'indirizzo email",
"E-Mail" : "Posta elettronica",
"Create" : "Crea",
@@ -372,7 +372,7 @@ OC.L10N.register(
"Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ciao,<br><br>volevo informarti che ora hai un account %s.<br><br>Il tuo nome utente: %s<br>Accedi: <a href=\"%s\">%s</a><br><br>",
"Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ciao,\n\nvolevo informarti che ora hai un account %s.\n\nIl tuo nome utente: %s\nAccedi: %s\n\n",
"For password recovery and notifications" : "Per il ripristino della password e per le notifiche",
- "If you want to support the project\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se vuoi supportare il progetto\n⇥⇥<a href=\"https://nextcloud.com/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">sviluppa</a>\n⇥⇥o\n⇥⇥<a href=\"https://nextcloud.com/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">fai girare la voce</a>!",
+ "If you want to support the project\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se vuoi supportare il progetto\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">contribuisci allo sviluppo</a>\n\t\to\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">diffondi il verbo</a>!",
"Add Group" : "Aggiungi gruppo",
"Group" : "Gruppo",
"Default Quota" : "Quota predefinita",
diff --git a/settings/l10n/it.json b/settings/l10n/it.json
index 1ee7cf556ca..413dde60f42 100644
--- a/settings/l10n/it.json
+++ b/settings/l10n/it.json
@@ -25,7 +25,7 @@
"Invalid mail address" : "Indirizzo email non valido",
"No valid group selected" : "Nessun gruppo valido selezionato",
"A user with that name already exists." : "Un utente con quel nome esiste già.",
- "To send a password link to the user an email address is required." : "Per inviare un link password all'utente è richiesta una email.",
+ "To send a password link to the user an email address is required." : "Per inviare un collegamento della password all'utente è richiesto un indirizzo email.",
"Unable to create user." : "Impossibile creare l'utente.",
"Your %s account was created" : "Il tuo account %s è stato creato",
"Unable to delete user." : "Impossibile eliminare l'utente.",
@@ -55,7 +55,7 @@
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni ufficiali sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.",
"Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Le applicazioni approvate sono sviluppate da sviluppatori affidabili e hanno passato un rapido controllo di sicurezza. Sono attivamente mantenute in un deposito aperto del codice e i loro responsabili le ritengono pronte sia per un utilizzo casuale che per un utilizzo continuativo.",
"This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Questa applicazione non è stata sottoposta a controlli di sicurezza, è nuova o notoriamente instabile. Installala a tuo rischio.",
- "Disabling app …" : "Disabilita applicazione...",
+ "Disabling app …" : "Disabilitazione applicazione...",
"Error while disabling app" : "Errore durante la disattivazione",
"Disable" : "Disabilita",
"Enable" : "Abilita",
@@ -276,7 +276,7 @@
"Email" : "Posta elettronica",
"Your email address" : "Il tuo indirizzo email",
"No email address set" : "Nessun indirizzo email impostato",
- "For password reset and notifications" : "Per il reset della password e notifiche",
+ "For password reset and notifications" : "Per ripristino della password e notifiche",
"Phone number" : "Numero di telefono",
"Your phone number" : "Il tuo numero di telefono",
"Address" : "Indirizzo",
@@ -319,7 +319,7 @@
"Show last log in" : "Mostra ultimo accesso",
"Show user backend" : "Mostra il motore utente",
"Send email to new user" : "Invia email al nuovo utente",
- "When the password of the new user is left empty an activation email with a link to set the password is send to the user" : "Quando la password del nuovo utente è lasciata vuota una email con un link per impostare la password è inviata all'utente",
+ "When the password of the new user is left empty an activation email with a link to set the password is send to the user" : "Quando la password del nuovo utente è lasciata vuota una email con un collegamento per impostare la password è inviata all'utente",
"Show email address" : "Mostra l'indirizzo email",
"E-Mail" : "Posta elettronica",
"Create" : "Crea",
@@ -370,7 +370,7 @@
"Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Ciao,<br><br>volevo informarti che ora hai un account %s.<br><br>Il tuo nome utente: %s<br>Accedi: <a href=\"%s\">%s</a><br><br>",
"Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Ciao,\n\nvolevo informarti che ora hai un account %s.\n\nIl tuo nome utente: %s\nAccedi: %s\n\n",
"For password recovery and notifications" : "Per il ripristino della password e per le notifiche",
- "If you want to support the project\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se vuoi supportare il progetto\n⇥⇥<a href=\"https://nextcloud.com/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">sviluppa</a>\n⇥⇥o\n⇥⇥<a href=\"https://nextcloud.com/contribute\"\n⇥⇥⇥target=\"_blank\" rel=\"noreferrer\">fai girare la voce</a>!",
+ "If you want to support the project\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se vuoi supportare il progetto\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">contribuisci allo sviluppo</a>\n\t\to\n\t\t<a href=\"https://nextcloud.com/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">diffondi il verbo</a>!",
"Add Group" : "Aggiungi gruppo",
"Group" : "Gruppo",
"Default Quota" : "Quota predefinita",
diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js
index 5d922790612..acb7f4eecc0 100644
--- a/settings/l10n/nl.js
+++ b/settings/l10n/nl.js
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Prestatie afstelling",
"Improving the config.php" : "config.php verbeteren",
"Theming" : "Thema's",
+ "Check the security of your Nextcloud over our security scan" : "Controleer de beveiliging van je Nextcloud met onze securityscan",
"Hardening and security guidance" : "Hardening en security advies",
"Developer documentation" : "Ontwikkelaarsdocumentatie",
"by %s" : "op %s",
diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json
index 38818b5ea1e..7684b6ebc39 100644
--- a/settings/l10n/nl.json
+++ b/settings/l10n/nl.json
@@ -232,6 +232,7 @@
"Performance tuning" : "Prestatie afstelling",
"Improving the config.php" : "config.php verbeteren",
"Theming" : "Thema's",
+ "Check the security of your Nextcloud over our security scan" : "Controleer de beveiliging van je Nextcloud met onze securityscan",
"Hardening and security guidance" : "Hardening en security advies",
"Developer documentation" : "Ontwikkelaarsdocumentatie",
"by %s" : "op %s",
diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js
index 2db3db32d80..a7290c92d13 100644
--- a/settings/l10n/pl.js
+++ b/settings/l10n/pl.js
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Podnoszenie wydajności",
"Improving the config.php" : "Udoskonalać się w config.php",
"Theming" : "Motyw",
+ "Check the security of your Nextcloud over our security scan" : "Sprawdź bezpieczeństwo swojego Nextclouda przez nasz skan zabezpieczeń",
"Hardening and security guidance" : "Kierowanie i wzmacnianie bezpieczeństwa",
"Developer documentation" : "Dokumentacja dewelopera",
"by %s" : "autorstwa %s",
diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json
index bd10e734041..2a03384a6b1 100644
--- a/settings/l10n/pl.json
+++ b/settings/l10n/pl.json
@@ -232,6 +232,7 @@
"Performance tuning" : "Podnoszenie wydajności",
"Improving the config.php" : "Udoskonalać się w config.php",
"Theming" : "Motyw",
+ "Check the security of your Nextcloud over our security scan" : "Sprawdź bezpieczeństwo swojego Nextclouda przez nasz skan zabezpieczeń",
"Hardening and security guidance" : "Kierowanie i wzmacnianie bezpieczeństwa",
"Developer documentation" : "Dokumentacja dewelopera",
"by %s" : "autorstwa %s",
diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js
index 1c27236f476..d797c14da02 100644
--- a/settings/l10n/pt_BR.js
+++ b/settings/l10n/pt_BR.js
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Aprimorando performance",
"Improving the config.php" : "Melhorando o config.php",
"Theming" : "Elaborar um tema",
+ "Check the security of your Nextcloud over our security scan" : "Verifique a segurança da sua Nextcloud sobre a nossa análise de segurança",
"Hardening and security guidance" : "Orientações de proteção e segurança",
"Developer documentation" : "Documentação do desenvolvedor",
"by %s" : "por %s",
diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json
index 164cb7e5eef..fecedd5f40b 100644
--- a/settings/l10n/pt_BR.json
+++ b/settings/l10n/pt_BR.json
@@ -232,6 +232,7 @@
"Performance tuning" : "Aprimorando performance",
"Improving the config.php" : "Melhorando o config.php",
"Theming" : "Elaborar um tema",
+ "Check the security of your Nextcloud over our security scan" : "Verifique a segurança da sua Nextcloud sobre a nossa análise de segurança",
"Hardening and security guidance" : "Orientações de proteção e segurança",
"Developer documentation" : "Documentação do desenvolvedor",
"by %s" : "por %s",
diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js
index 966dcd535d7..7245eaff457 100644
--- a/settings/l10n/ru.js
+++ b/settings/l10n/ru.js
@@ -234,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Настройка производительности",
"Improving the config.php" : "Улучшение config.php",
"Theming" : "Темы оформления",
+ "Check the security of your Nextcloud over our security scan" : "Проверить безопасность вашего Nextcloud нашем сканером",
"Hardening and security guidance" : "Руководство по безопасности и защите",
"Developer documentation" : "Документация для разработчиков",
"by %s" : "от %s",
diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json
index d5a01795030..345bac3745b 100644
--- a/settings/l10n/ru.json
+++ b/settings/l10n/ru.json
@@ -232,6 +232,7 @@
"Performance tuning" : "Настройка производительности",
"Improving the config.php" : "Улучшение config.php",
"Theming" : "Темы оформления",
+ "Check the security of your Nextcloud over our security scan" : "Проверить безопасность вашего Nextcloud нашем сканером",
"Hardening and security guidance" : "Руководство по безопасности и защите",
"Developer documentation" : "Документация для разработчиков",
"by %s" : "от %s",
diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js
index 4f21b72730f..c877b784840 100644
--- a/settings/l10n/sv.js
+++ b/settings/l10n/sv.js
@@ -25,7 +25,9 @@ OC.L10N.register(
"You need to set your user email before being able to send test emails." : "Du behöver ställa in din användares e-postadress före du kan skicka test e-post.",
"Invalid request" : "Ogiltig begäran",
"Invalid mail address" : "Ogiltig e-postadress",
+ "No valid group selected" : "Ingen giltig grupp vald",
"A user with that name already exists." : "En användare med det namnet existerar redan.",
+ "To send a password link to the user an email address is required." : "För att skicka en länk med lösenord till användaren så krävs en e-postadress.",
"Unable to create user." : "Kan inte skapa användare.",
"Your %s account was created" : "Ditt %s konto skapades",
"Unable to delete user." : "Kan inte radera användare.",
@@ -55,6 +57,7 @@ OC.L10N.register(
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiella appar är utvecklade av Nextclouds community. De erbjuder central funktionalitet och är redo för att användas i produktion.",
"Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkända appar är utvecklade av betrodda utvecklare och har genomgått enklare säkerhetstester. De är aktivt utvecklade i ett öppet kodbibliotek och deras underhållare anser dom stabila nog för enklare till normalt användande.",
"This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denna applikation är ej kontrollerad för säkerhetsbrister och är ny eller känd att orsaka instabilitetsproblem. Installera på egen risk.",
+ "Disabling app …" : "Inaktiverar app ...",
"Error while disabling app" : "Fel vid inaktivering av app",
"Disable" : "Inaktivera",
"Enable" : "Aktivera",
@@ -122,6 +125,9 @@ OC.L10N.register(
"undo" : "ångra",
"never" : "aldrig",
"deleted {userName}" : "raderade {userName}",
+ "No user found for <strong>{pattern}</strong>" : "Ingen användare hittades för <strong>{pattern}</strong>",
+ "Unable to add user to group {group}" : "Gick inte att lägga till användaren i gruppen {group}",
+ "Unable to remove user from group {group}" : "Gick inte att ta bort användaren från gruppen {group}",
"Add group" : "Lägg till grupp",
"Invalid quota value \"{val}\"" : "Ogiltigt quota värde \"{val}\"",
"no group" : "ingen grupp",
@@ -228,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "Prestanda inställningar",
"Improving the config.php" : "Förbättra config.php",
"Theming" : "Teman",
+ "Check the security of your Nextcloud over our security scan" : "Kontrollera säkerheten för ditt Nextcloud med vår säkerhets-skanning",
"Hardening and security guidance" : "Säkerhetsriktlinjer",
"Developer documentation" : "Utvecklardokumentation",
"by %s" : "av %s",
@@ -273,6 +280,7 @@ OC.L10N.register(
"Email" : "E-post",
"Your email address" : "Din e-postadress",
"No email address set" : "Ingen e-postadress angiven",
+ "For password reset and notifications" : "För lösenordsåterställning och notifikationer",
"Phone number" : "Telefonnummer",
"Your phone number" : "Ditt telefonnummer",
"Address" : "Adress",
@@ -315,6 +323,7 @@ OC.L10N.register(
"Show last log in" : "Visa senaste inloggning",
"Show user backend" : "Visa användar-backend",
"Send email to new user" : "Skicka e-post till ny användare",
+ "When the password of the new user is left empty an activation email with a link to set the password is send to the user" : "När lösenordet för en ny användare lämnas tomt så skickas ett aktiveringsmail till användaren med ett länk där användaren kan välja ett lösenord",
"Show email address" : "Visa e-postadress",
"E-Mail" : "E-post",
"Create" : "Skapa",
diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json
index b3908ae2d30..f0ce888b011 100644
--- a/settings/l10n/sv.json
+++ b/settings/l10n/sv.json
@@ -23,7 +23,9 @@
"You need to set your user email before being able to send test emails." : "Du behöver ställa in din användares e-postadress före du kan skicka test e-post.",
"Invalid request" : "Ogiltig begäran",
"Invalid mail address" : "Ogiltig e-postadress",
+ "No valid group selected" : "Ingen giltig grupp vald",
"A user with that name already exists." : "En användare med det namnet existerar redan.",
+ "To send a password link to the user an email address is required." : "För att skicka en länk med lösenord till användaren så krävs en e-postadress.",
"Unable to create user." : "Kan inte skapa användare.",
"Your %s account was created" : "Ditt %s konto skapades",
"Unable to delete user." : "Kan inte radera användare.",
@@ -53,6 +55,7 @@
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiella appar är utvecklade av Nextclouds community. De erbjuder central funktionalitet och är redo för att användas i produktion.",
"Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkända appar är utvecklade av betrodda utvecklare och har genomgått enklare säkerhetstester. De är aktivt utvecklade i ett öppet kodbibliotek och deras underhållare anser dom stabila nog för enklare till normalt användande.",
"This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denna applikation är ej kontrollerad för säkerhetsbrister och är ny eller känd att orsaka instabilitetsproblem. Installera på egen risk.",
+ "Disabling app …" : "Inaktiverar app ...",
"Error while disabling app" : "Fel vid inaktivering av app",
"Disable" : "Inaktivera",
"Enable" : "Aktivera",
@@ -120,6 +123,9 @@
"undo" : "ångra",
"never" : "aldrig",
"deleted {userName}" : "raderade {userName}",
+ "No user found for <strong>{pattern}</strong>" : "Ingen användare hittades för <strong>{pattern}</strong>",
+ "Unable to add user to group {group}" : "Gick inte att lägga till användaren i gruppen {group}",
+ "Unable to remove user from group {group}" : "Gick inte att ta bort användaren från gruppen {group}",
"Add group" : "Lägg till grupp",
"Invalid quota value \"{val}\"" : "Ogiltigt quota värde \"{val}\"",
"no group" : "ingen grupp",
@@ -226,6 +232,7 @@
"Performance tuning" : "Prestanda inställningar",
"Improving the config.php" : "Förbättra config.php",
"Theming" : "Teman",
+ "Check the security of your Nextcloud over our security scan" : "Kontrollera säkerheten för ditt Nextcloud med vår säkerhets-skanning",
"Hardening and security guidance" : "Säkerhetsriktlinjer",
"Developer documentation" : "Utvecklardokumentation",
"by %s" : "av %s",
@@ -271,6 +278,7 @@
"Email" : "E-post",
"Your email address" : "Din e-postadress",
"No email address set" : "Ingen e-postadress angiven",
+ "For password reset and notifications" : "För lösenordsåterställning och notifikationer",
"Phone number" : "Telefonnummer",
"Your phone number" : "Ditt telefonnummer",
"Address" : "Adress",
@@ -313,6 +321,7 @@
"Show last log in" : "Visa senaste inloggning",
"Show user backend" : "Visa användar-backend",
"Send email to new user" : "Skicka e-post till ny användare",
+ "When the password of the new user is left empty an activation email with a link to set the password is send to the user" : "När lösenordet för en ny användare lämnas tomt så skickas ett aktiveringsmail till användaren med ett länk där användaren kan välja ett lösenord",
"Show email address" : "Visa e-postadress",
"E-Mail" : "E-post",
"Create" : "Skapa",
diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js
index 62d78e97204..c92f605002b 100644
--- a/settings/l10n/zh_CN.js
+++ b/settings/l10n/zh_CN.js
@@ -80,12 +80,12 @@ OC.L10N.register(
"Allow filesystem access" : "允许访问文件系统",
"Disconnect" : "断开连接",
"Revoke" : "撤销",
- "Internet Explorer" : "Internet Explorer",
- "Edge" : "Edge",
- "Firefox" : "Firefox",
- "Google Chrome" : "Google Chrome",
- "Safari" : "Safari",
- "Google Chrome for Android" : "Google Chrome for Android",
+ "Internet Explorer" : "IE浏览器",
+ "Edge" : "Edge浏览器",
+ "Firefox" : "火狐浏览器",
+ "Google Chrome" : "谷歌浏览器",
+ "Safari" : "Safari浏览器",
+ "Google Chrome for Android" : "安卓版谷歌浏览器",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOS 客户端",
@@ -125,6 +125,7 @@ OC.L10N.register(
"undo" : "撤销",
"never" : "从不",
"deleted {userName}" : "已删除 {userName}",
+ "No user found for <strong>{pattern}</strong>" : "没有用户发现 <strong>{pattern}</strong>",
"Unable to add user to group {group}" : "无法将用户添加到分组 {group}",
"Unable to remove user from group {group}" : "无法从分组 {group} 中移除用户",
"Add group" : "添加分组",
@@ -233,6 +234,7 @@ OC.L10N.register(
"Performance tuning" : "性能优化",
"Improving the config.php" : "优化 config.php",
"Theming" : "主题",
+ "Check the security of your Nextcloud over our security scan" : "通过我们的安全扫描来检查Nextcloud的安全性",
"Hardening and security guidance" : "强化和安全指南",
"Developer documentation" : "开发者文档",
"by %s" : "由 %s",
diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json
index a20d4d0d8ca..e6b902ae655 100644
--- a/settings/l10n/zh_CN.json
+++ b/settings/l10n/zh_CN.json
@@ -78,12 +78,12 @@
"Allow filesystem access" : "允许访问文件系统",
"Disconnect" : "断开连接",
"Revoke" : "撤销",
- "Internet Explorer" : "Internet Explorer",
- "Edge" : "Edge",
- "Firefox" : "Firefox",
- "Google Chrome" : "Google Chrome",
- "Safari" : "Safari",
- "Google Chrome for Android" : "Google Chrome for Android",
+ "Internet Explorer" : "IE浏览器",
+ "Edge" : "Edge浏览器",
+ "Firefox" : "火狐浏览器",
+ "Google Chrome" : "谷歌浏览器",
+ "Safari" : "Safari浏览器",
+ "Google Chrome for Android" : "安卓版谷歌浏览器",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOS 客户端",
@@ -123,6 +123,7 @@
"undo" : "撤销",
"never" : "从不",
"deleted {userName}" : "已删除 {userName}",
+ "No user found for <strong>{pattern}</strong>" : "没有用户发现 <strong>{pattern}</strong>",
"Unable to add user to group {group}" : "无法将用户添加到分组 {group}",
"Unable to remove user from group {group}" : "无法从分组 {group} 中移除用户",
"Add group" : "添加分组",
@@ -231,6 +232,7 @@
"Performance tuning" : "性能优化",
"Improving the config.php" : "优化 config.php",
"Theming" : "主题",
+ "Check the security of your Nextcloud over our security scan" : "通过我们的安全扫描来检查Nextcloud的安全性",
"Hardening and security guidance" : "强化和安全指南",
"Developer documentation" : "开发者文档",
"by %s" : "由 %s",