aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/federation/l10n/fr.js2
-rw-r--r--apps/federation/l10n/fr.json2
-rw-r--r--apps/federation/templates/settings-admin.php8
-rw-r--r--apps/files/js/newfilemenu.js2
-rw-r--r--apps/files/l10n/ar.js1
-rw-r--r--apps/files/l10n/ar.json1
-rw-r--r--apps/files_external/l10n/sl.js8
-rw-r--r--apps/files_external/l10n/sl.json8
-rw-r--r--apps/user_ldap/l10n/he.js1
-rw-r--r--apps/user_ldap/l10n/he.json1
-rw-r--r--config/config.sample.php8
-rw-r--r--core/l10n/de.js1
-rw-r--r--core/l10n/de.json1
-rw-r--r--core/l10n/fi_FI.js1
-rw-r--r--core/l10n/fi_FI.json1
-rw-r--r--core/l10n/he.js1
-rw-r--r--core/l10n/he.json1
-rw-r--r--core/l10n/it.js1
-rw-r--r--core/l10n/it.json1
-rw-r--r--core/l10n/pt_BR.js1
-rw-r--r--core/l10n/pt_BR.json1
-rw-r--r--core/l10n/sl.js8
-rw-r--r--core/l10n/sl.json8
-rw-r--r--lib/l10n/he.js3
-rw-r--r--lib/l10n/he.json3
-rw-r--r--settings/l10n/fi_FI.js4
-rw-r--r--settings/l10n/fi_FI.json4
-rw-r--r--settings/l10n/he.js3
-rw-r--r--settings/l10n/he.json3
-rw-r--r--settings/l10n/pt_BR.js3
-rw-r--r--settings/l10n/pt_BR.json3
-rw-r--r--settings/l10n/sl.js3
-rw-r--r--settings/l10n/sl.json3
-rw-r--r--settings/l10n/sq.js3
-rw-r--r--settings/l10n/sq.json3
35 files changed, 90 insertions, 16 deletions
diff --git a/apps/federation/l10n/fr.js b/apps/federation/l10n/fr.js
index a6e4fbda16f..f796acbcc83 100644
--- a/apps/federation/l10n/fr.js
+++ b/apps/federation/l10n/fr.js
@@ -6,6 +6,6 @@ OC.L10N.register(
"No ownCloud server found" : "Aucun serveur ownCloud trouvé",
"Could not add server" : "Impossible d'ajouter le serveur",
"Federation" : "Fédération",
- "ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La Fédération ownCloud vous permet de vous connecter avec d'autres ownCloud de confiance pour partager l'annuaire d'utilisateurs. Par exemple, cela peut être utilisé pour compléter automatiquement les noms des utilisateurs externes pour le partage fédéré."
+ "ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La Fédération ownCloud permet la connexion à d'autres instances ownCloud de confiance pour partager les annuaires d'utilisateurs. Cela peut par exemple être utilisé pour compléter automatiquement les noms des utilisateurs externes lors d'un partage vers une autre instance."
},
"nplurals=2; plural=(n > 1);");
diff --git a/apps/federation/l10n/fr.json b/apps/federation/l10n/fr.json
index c84cb78dbc1..c00b0474466 100644
--- a/apps/federation/l10n/fr.json
+++ b/apps/federation/l10n/fr.json
@@ -4,6 +4,6 @@
"No ownCloud server found" : "Aucun serveur ownCloud trouvé",
"Could not add server" : "Impossible d'ajouter le serveur",
"Federation" : "Fédération",
- "ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La Fédération ownCloud vous permet de vous connecter avec d'autres ownCloud de confiance pour partager l'annuaire d'utilisateurs. Par exemple, cela peut être utilisé pour compléter automatiquement les noms des utilisateurs externes pour le partage fédéré."
+ "ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La Fédération ownCloud permet la connexion à d'autres instances ownCloud de confiance pour partager les annuaires d'utilisateurs. Cela peut par exemple être utilisé pour compléter automatiquement les noms des utilisateurs externes lors d'un partage vers une autre instance."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/apps/federation/templates/settings-admin.php b/apps/federation/templates/settings-admin.php
index 77c552ee789..704fc9a9ace 100644
--- a/apps/federation/templates/settings-admin.php
+++ b/apps/federation/templates/settings-admin.php
@@ -12,13 +12,13 @@ style('federation', 'settings-admin')
<p>
<input id="autoAddServers" type="checkbox" class="checkbox" <?php if($_['autoAddServers']) p('checked'); ?> />
- <label for="autoAddServers">Add server automatically once a federated share was created successfully</label>
+ <label for="autoAddServers"><?php p($l->t('Add server automatically once a federated share was created successfully')); ?></label>
</p>
- <h3>Trusted ownCloud Servers</h3>
+ <h3><?php p($l->t('Trusted ownCloud Servers')); ?></h3>
<p id="ocFederationAddServer">
- <button id="ocFederationAddServerButton" class="">+ Add ownCloud server</button>
- <input id="serverUrl" class="hidden" type="text" value="" placeholder="ownCloud Server" name="server_url"/>
+ <button id="ocFederationAddServerButton" class=""><?php p($l->t('+ Add ownCloud server')); ?></button>
+ <input id="serverUrl" class="hidden" type="text" value="" placeholder="<?php p($l->t('ownCloud Server')); ?>" name="server_url"/>
<span class="msg"></span>
</p>
<ul id="listOfTrustedServers">
diff --git a/apps/files/js/newfilemenu.js b/apps/files/js/newfilemenu.js
index be7dcc40b6e..3553d2d1aa0 100644
--- a/apps/files/js/newfilemenu.js
+++ b/apps/files/js/newfilemenu.js
@@ -27,7 +27,7 @@
var TEMPLATE_FILENAME_FORM =
'<form class="filenameform">' +
'<label class="hidden-visually" for="{{cid}}-input-{{fileType}}">{{fileName}}</label>' +
- '<input id="{{cid}}-input-{{fileType}}" type="text" value="{{fileName}}">' +
+ '<input id="{{cid}}-input-{{fileType}}" type="text" value="{{fileName}}" autocomplete="off" autocapitalize="off" autocorrect="off">' +
'</form>';
/**
diff --git a/apps/files/l10n/ar.js b/apps/files/l10n/ar.js
index a2329a0b57d..56489fe30e4 100644
--- a/apps/files/l10n/ar.js
+++ b/apps/files/l10n/ar.js
@@ -56,6 +56,7 @@ OC.L10N.register(
"Your storage is full, files can not be updated or synced anymore!" : "مساحتك التخزينية ممتلئة, لا يمكن تحديث ملفاتك أو مزامنتها بعد الآن !",
"Storage of {owner} is almost full ({usedSpacePercent}%)" : "المساحة التخزينية لـ {owner} ممتلئة تقريبا ({usedSpacePercent}%)",
"Your storage is almost full ({usedSpacePercent}%)" : "مساحتك التخزينية امتلأت تقريبا ",
+ "Path" : "المسار",
"Favorite" : "المفضلة",
"Folder" : "مجلد",
"New folder" : "مجلد جديد",
diff --git a/apps/files/l10n/ar.json b/apps/files/l10n/ar.json
index fbc3f2e21d5..697c9627397 100644
--- a/apps/files/l10n/ar.json
+++ b/apps/files/l10n/ar.json
@@ -54,6 +54,7 @@
"Your storage is full, files can not be updated or synced anymore!" : "مساحتك التخزينية ممتلئة, لا يمكن تحديث ملفاتك أو مزامنتها بعد الآن !",
"Storage of {owner} is almost full ({usedSpacePercent}%)" : "المساحة التخزينية لـ {owner} ممتلئة تقريبا ({usedSpacePercent}%)",
"Your storage is almost full ({usedSpacePercent}%)" : "مساحتك التخزينية امتلأت تقريبا ",
+ "Path" : "المسار",
"Favorite" : "المفضلة",
"Folder" : "مجلد",
"New folder" : "مجلد جديد",
diff --git a/apps/files_external/l10n/sl.js b/apps/files_external/l10n/sl.js
index 09ed491559a..cdb84ab4095 100644
--- a/apps/files_external/l10n/sl.js
+++ b/apps/files_external/l10n/sl.js
@@ -19,15 +19,22 @@ OC.L10N.register(
"Error generating key pair" : "Prišlo je do napake med ustvarjanjem para ključev",
"Enable encryption" : "Omogoči šifriranje",
"Enable previews" : "Omogoči predogled",
+ "Enable sharing" : "Omogoči souporabo",
"Check for changes" : "Preveri za spremembe",
"Never" : "Nikoli",
"Once every direct access" : "Enkrat ob neposrednem dostopu",
"All users. Type to select user or group." : "Vsi uporabniki. Skupino ali uporabnika je mogoče tudi izbrati.",
"(group)" : "(skupina)",
"Saved" : "Shranjeno",
+ "There was an error with message: " : "Prišlo je do napake s sporočilom:",
"External mount error" : "Notranja napaka priklopa",
+ "external-storage" : "zunanja-shramba",
+ "Please enter the credentials for the {mount} mount" : "Vpišite poverila za priklopno točko {mount}",
"Username" : "Uporabniško ime",
"Password" : "Geslo",
+ "Credentials saved" : "Poverila so shranjena",
+ "Credentials saving failed" : "Shranjevanje poveril je spodletelo",
+ "Credentials required" : "Zahtevana so poverila",
"Save" : "Shrani",
"Access key" : "Ključ za dostop",
"Secret key" : "Skriti ključ",
@@ -41,6 +48,7 @@ OC.L10N.register(
"Client secret" : "Skrivni ključ odjemalca",
"OpenStack" : "OpenStack",
"Tenant name" : "Ime uporabnika",
+ "Identity endpoint URL" : "Naslov URL končne točke istovetnosti",
"API key" : "Ključ API",
"Username and password" : "Uporabniško ime in geslo",
"RSA public key" : "Javni ključ RSA",
diff --git a/apps/files_external/l10n/sl.json b/apps/files_external/l10n/sl.json
index 4aefcc681dd..c81ba62b789 100644
--- a/apps/files_external/l10n/sl.json
+++ b/apps/files_external/l10n/sl.json
@@ -17,15 +17,22 @@
"Error generating key pair" : "Prišlo je do napake med ustvarjanjem para ključev",
"Enable encryption" : "Omogoči šifriranje",
"Enable previews" : "Omogoči predogled",
+ "Enable sharing" : "Omogoči souporabo",
"Check for changes" : "Preveri za spremembe",
"Never" : "Nikoli",
"Once every direct access" : "Enkrat ob neposrednem dostopu",
"All users. Type to select user or group." : "Vsi uporabniki. Skupino ali uporabnika je mogoče tudi izbrati.",
"(group)" : "(skupina)",
"Saved" : "Shranjeno",
+ "There was an error with message: " : "Prišlo je do napake s sporočilom:",
"External mount error" : "Notranja napaka priklopa",
+ "external-storage" : "zunanja-shramba",
+ "Please enter the credentials for the {mount} mount" : "Vpišite poverila za priklopno točko {mount}",
"Username" : "Uporabniško ime",
"Password" : "Geslo",
+ "Credentials saved" : "Poverila so shranjena",
+ "Credentials saving failed" : "Shranjevanje poveril je spodletelo",
+ "Credentials required" : "Zahtevana so poverila",
"Save" : "Shrani",
"Access key" : "Ključ za dostop",
"Secret key" : "Skriti ključ",
@@ -39,6 +46,7 @@
"Client secret" : "Skrivni ključ odjemalca",
"OpenStack" : "OpenStack",
"Tenant name" : "Ime uporabnika",
+ "Identity endpoint URL" : "Naslov URL končne točke istovetnosti",
"API key" : "Ključ API",
"Username and password" : "Uporabniško ime in geslo",
"RSA public key" : "Javni ključ RSA",
diff --git a/apps/user_ldap/l10n/he.js b/apps/user_ldap/l10n/he.js
index d54be2c546b..3f659e622a9 100644
--- a/apps/user_ldap/l10n/he.js
+++ b/apps/user_ldap/l10n/he.js
@@ -128,6 +128,7 @@ OC.L10N.register(
"Base Group Tree" : "עץ קבוצה בסיסי",
"Group Search Attributes" : "מאפייני חיפוש קבוצה",
"Dynamic Group Member URL" : "נתיב חבר קבוצה דינמית",
+ "Nested Groups" : "קבוצות משנה",
"Special Attributes" : "מאפיינים מיוחדים",
"Quota Field" : "שדה מכסה",
"Quota Default" : "ברירת מחדל מכסה",
diff --git a/apps/user_ldap/l10n/he.json b/apps/user_ldap/l10n/he.json
index eb69f016698..8480d1abe00 100644
--- a/apps/user_ldap/l10n/he.json
+++ b/apps/user_ldap/l10n/he.json
@@ -126,6 +126,7 @@
"Base Group Tree" : "עץ קבוצה בסיסי",
"Group Search Attributes" : "מאפייני חיפוש קבוצה",
"Dynamic Group Member URL" : "נתיב חבר קבוצה דינמית",
+ "Nested Groups" : "קבוצות משנה",
"Special Attributes" : "מאפיינים מיוחדים",
"Quota Field" : "שדה מכסה",
"Quota Default" : "ברירת מחדל מכסה",
diff --git a/config/config.sample.php b/config/config.sample.php
index 1a6c8b31280..18ac59f6cc9 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -414,6 +414,12 @@ $CONFIG = array(
/**
+ * File versions
+ *
+ * These parameters control the Versions app.
+ */
+
+/**
* If the versions app is enabled (default), this setting defines the policy
* for when versions will be permanently deleted.
* The app allows for two settings, a minimum time for version retention,
@@ -1104,7 +1110,7 @@ $CONFIG = array(
'filesystem_check_changes' => 0,
/**
- * On default ownCloud will store the part files created during upload in the
+ * By default ownCloud will store the part files created during upload in the
* same storage as the upload target. Setting this to false will store the part
* files in the root of the users folder which might be required to work with certain
* external storage setups that have limited rename capabilities.
diff --git a/core/l10n/de.js b/core/l10n/de.js
index 52f88b36734..91cabc1dc2f 100644
--- a/core/l10n/de.js
+++ b/core/l10n/de.js
@@ -197,6 +197,7 @@ OC.L10N.register(
"sunny" : "sonnig",
"Hello {name}, the weather is {weather}" : "Hallo {name}, das Wetter ist {weather}",
"Hello {name}" : "Hallo {name}",
+ "new" : "neu",
"_download %n file_::_download %n files_" : ["Lade %n Datei herunter","Lade %n Dateien herunter"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Das Update läuft gerade. Das Verlassen dieser Seite könnte den Update Prozess in einigen Umgebungen unterbrechen.",
"Updating {productName} to version {version}, this may take a while." : "Aktualisiere {productName} auf Version {version}. Dies könnte eine Weile dauern.",
diff --git a/core/l10n/de.json b/core/l10n/de.json
index 5f8b163c678..32404248e19 100644
--- a/core/l10n/de.json
+++ b/core/l10n/de.json
@@ -195,6 +195,7 @@
"sunny" : "sonnig",
"Hello {name}, the weather is {weather}" : "Hallo {name}, das Wetter ist {weather}",
"Hello {name}" : "Hallo {name}",
+ "new" : "neu",
"_download %n file_::_download %n files_" : ["Lade %n Datei herunter","Lade %n Dateien herunter"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Das Update läuft gerade. Das Verlassen dieser Seite könnte den Update Prozess in einigen Umgebungen unterbrechen.",
"Updating {productName} to version {version}, this may take a while." : "Aktualisiere {productName} auf Version {version}. Dies könnte eine Weile dauern.",
diff --git a/core/l10n/fi_FI.js b/core/l10n/fi_FI.js
index c6550a1733c..ee274733c58 100644
--- a/core/l10n/fi_FI.js
+++ b/core/l10n/fi_FI.js
@@ -197,6 +197,7 @@ OC.L10N.register(
"sunny" : "aurinkoinen",
"Hello {name}, the weather is {weather}" : "Hei {name}, sää on {weather}",
"Hello {name}" : "Hei {name}",
+ "new" : "uusi",
"_download %n file_::_download %n files_" : ["lataa %n tiedosto","lataa %n tiedostoa"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Päivitys on meneillään. Poistuminen tältä sivulta saattaa keskeyttää toimenpiteen joissain käyttöympäristöissä.",
"Updating {productName} to version {version}, this may take a while." : "Päivitetään {productName} versioon {version}, tämä saattaa kestää hetken.",
diff --git a/core/l10n/fi_FI.json b/core/l10n/fi_FI.json
index 58f2edb8402..1845167f2f9 100644
--- a/core/l10n/fi_FI.json
+++ b/core/l10n/fi_FI.json
@@ -195,6 +195,7 @@
"sunny" : "aurinkoinen",
"Hello {name}, the weather is {weather}" : "Hei {name}, sää on {weather}",
"Hello {name}" : "Hei {name}",
+ "new" : "uusi",
"_download %n file_::_download %n files_" : ["lataa %n tiedosto","lataa %n tiedostoa"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Päivitys on meneillään. Poistuminen tältä sivulta saattaa keskeyttää toimenpiteen joissain käyttöympäristöissä.",
"Updating {productName} to version {version}, this may take a while." : "Päivitetään {productName} versioon {version}, tämä saattaa kestää hetken.",
diff --git a/core/l10n/he.js b/core/l10n/he.js
index 9a4dca6db4b..61846d6172f 100644
--- a/core/l10n/he.js
+++ b/core/l10n/he.js
@@ -197,6 +197,7 @@ OC.L10N.register(
"sunny" : "שמשי",
"Hello {name}, the weather is {weather}" : "שלום {name}, מזג האוויר הנו {weather}",
"Hello {name}" : "שלום {name}",
+ "new" : "חדש",
"_download %n file_::_download %n files_" : ["הורד %n קובץ","הורדו %n קבצים"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "מתבצע עכשיו שדרוג, מעבר מדף זה עלול לפגוע בתהליך בסביבות הפעלה מסויימות.",
"Updating {productName} to version {version}, this may take a while." : "מעדכן {productName} לגרסה {version}, זה יקח זמן מה.",
diff --git a/core/l10n/he.json b/core/l10n/he.json
index 0cc3a80da20..6ae708f005b 100644
--- a/core/l10n/he.json
+++ b/core/l10n/he.json
@@ -195,6 +195,7 @@
"sunny" : "שמשי",
"Hello {name}, the weather is {weather}" : "שלום {name}, מזג האוויר הנו {weather}",
"Hello {name}" : "שלום {name}",
+ "new" : "חדש",
"_download %n file_::_download %n files_" : ["הורד %n קובץ","הורדו %n קבצים"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "מתבצע עכשיו שדרוג, מעבר מדף זה עלול לפגוע בתהליך בסביבות הפעלה מסויימות.",
"Updating {productName} to version {version}, this may take a while." : "מעדכן {productName} לגרסה {version}, זה יקח זמן מה.",
diff --git a/core/l10n/it.js b/core/l10n/it.js
index c5abb478002..d2aa71ade8b 100644
--- a/core/l10n/it.js
+++ b/core/l10n/it.js
@@ -197,6 +197,7 @@ OC.L10N.register(
"sunny" : "soleggiato",
"Hello {name}, the weather is {weather}" : "Ciao {name}, il tempo è {weather}",
"Hello {name}" : "Ciao {name}",
+ "new" : "nuovo",
"_download %n file_::_download %n files_" : ["scarica %n file","scarica %s file"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "L'aggiornamento è in corso, l'abbandono di questa pagina potrebbe interrompere il processo in alcuni ambienti.",
"Updating {productName} to version {version}, this may take a while." : "Aggiornamento di {productName} alla versione {version}, potrebbe richiedere del tempo.",
diff --git a/core/l10n/it.json b/core/l10n/it.json
index a8a463449c9..90caceb76d0 100644
--- a/core/l10n/it.json
+++ b/core/l10n/it.json
@@ -195,6 +195,7 @@
"sunny" : "soleggiato",
"Hello {name}, the weather is {weather}" : "Ciao {name}, il tempo è {weather}",
"Hello {name}" : "Ciao {name}",
+ "new" : "nuovo",
"_download %n file_::_download %n files_" : ["scarica %n file","scarica %s file"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "L'aggiornamento è in corso, l'abbandono di questa pagina potrebbe interrompere il processo in alcuni ambienti.",
"Updating {productName} to version {version}, this may take a while." : "Aggiornamento di {productName} alla versione {version}, potrebbe richiedere del tempo.",
diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js
index fc00b309591..9fe8589701a 100644
--- a/core/l10n/pt_BR.js
+++ b/core/l10n/pt_BR.js
@@ -197,6 +197,7 @@ OC.L10N.register(
"sunny" : "ensolarado",
"Hello {name}, the weather is {weather}" : "Olá {name}, o clima está {weather}",
"Hello {name}" : "Olá {name}",
+ "new" : "novo",
"_download %n file_::_download %n files_" : ["baixar %n arquivo","baixar %n arquivos"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "A atualização está em andamento, deixando esta página pode haver interrupção do processo em alguns ambientes.",
"Updating {productName} to version {version}, this may take a while." : "Atualizando {productName} para a versão {version}, isso pode demorar um pouco.",
diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json
index 659da4f76cf..f31423f7ac5 100644
--- a/core/l10n/pt_BR.json
+++ b/core/l10n/pt_BR.json
@@ -195,6 +195,7 @@
"sunny" : "ensolarado",
"Hello {name}, the weather is {weather}" : "Olá {name}, o clima está {weather}",
"Hello {name}" : "Olá {name}",
+ "new" : "novo",
"_download %n file_::_download %n files_" : ["baixar %n arquivo","baixar %n arquivos"],
"The upgrade is in progress, leaving this page might interrupt the process in some environments." : "A atualização está em andamento, deixando esta página pode haver interrupção do processo em alguns ambientes.",
"Updating {productName} to version {version}, this may take a while." : "Atualizando {productName} para a versão {version}, isso pode demorar um pouco.",
diff --git a/core/l10n/sl.js b/core/l10n/sl.js
index a86d7cdbe6f..308fe462627 100644
--- a/core/l10n/sl.js
+++ b/core/l10n/sl.js
@@ -31,7 +31,7 @@ OC.L10N.register(
"An error occurred. Please contact your admin." : "Prišlo je do napake. Stopite v stik s skrbnikom sistema.",
"No temporary profile picture available, try again" : "Na voljo ni nobene začasne slike za profil. Poskusite znova.",
"No crop data provided" : "Ni podanih podatkov obreza",
- "No valid crop data provided" : "Napačni podatki za obrez slike",
+ "No valid crop data provided" : "Navedeni so neveljavni podatki obrez slike",
"Crop is not square" : "Obrez ni pravokoten",
"Couldn't reset password because the token is invalid" : "Ni mogoče ponastaviti gesla zaradi neustreznega žetona.",
"Couldn't reset password because the token is expired" : "Ni mogoče ponastaviti gesla, ker je žeton potekel.",
@@ -148,12 +148,12 @@ OC.L10N.register(
"change" : "sprememba",
"delete" : "izbriše",
"access control" : "nadzor dostopa",
- "Share details could not be loaded for this item." : "Detajlov souporabe ne morem naložiti za ta element.",
+ "Share details could not be loaded for this item." : "Podrobnosti souporabe za te predmet ni mogoče naložiti.",
"An error occured. Please try again" : "Prišlo je do napake. Poskusite znova.",
"Share" : "Souporaba",
"Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Soupraba z ljudmi v drugih ownCloud oblakih v formatu uporabnik@domena.si/owncloud",
"Share with users or groups …" : "Souporaba z uporabniki ali skupinami ...",
- "Share with users, groups or remote users …" : "Souporaba z usporabniki, skupinami ali zunanjimi uporabniki ...",
+ "Share with users, groups or remote users …" : "Souporaba z uporabniki, skupinami ali oddaljenimi uporabniki ...",
"Warning" : "Opozorilo",
"Error while sending notification" : "Napaka med pošiljanjem obvestila",
"Delete" : "Izbriši",
@@ -175,7 +175,7 @@ OC.L10N.register(
"An error occurred." : "Prišlo je do napake.",
"Please reload the page." : "Stran je treba ponovno naložiti",
"The update was unsuccessful. " : "Posodobitev je spodletela.",
- "The update was successful. There were warnings." : "Posodobitev je uspela. Z nekaj opozorili.",
+ "The update was successful. There were warnings." : "Posodobitev je uspešno končana, vendar z nekaj opozorili.",
"The update was successful. Redirecting you to ownCloud now." : "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.",
"Searching other places" : "Iskanje drugih mest",
"No search results in other folders" : "Iskanje po drugih mapah ni vrnilo rezultata",
diff --git a/core/l10n/sl.json b/core/l10n/sl.json
index cccdbee4f8b..2fde27f4db7 100644
--- a/core/l10n/sl.json
+++ b/core/l10n/sl.json
@@ -29,7 +29,7 @@
"An error occurred. Please contact your admin." : "Prišlo je do napake. Stopite v stik s skrbnikom sistema.",
"No temporary profile picture available, try again" : "Na voljo ni nobene začasne slike za profil. Poskusite znova.",
"No crop data provided" : "Ni podanih podatkov obreza",
- "No valid crop data provided" : "Napačni podatki za obrez slike",
+ "No valid crop data provided" : "Navedeni so neveljavni podatki obrez slike",
"Crop is not square" : "Obrez ni pravokoten",
"Couldn't reset password because the token is invalid" : "Ni mogoče ponastaviti gesla zaradi neustreznega žetona.",
"Couldn't reset password because the token is expired" : "Ni mogoče ponastaviti gesla, ker je žeton potekel.",
@@ -146,12 +146,12 @@
"change" : "sprememba",
"delete" : "izbriše",
"access control" : "nadzor dostopa",
- "Share details could not be loaded for this item." : "Detajlov souporabe ne morem naložiti za ta element.",
+ "Share details could not be loaded for this item." : "Podrobnosti souporabe za te predmet ni mogoče naložiti.",
"An error occured. Please try again" : "Prišlo je do napake. Poskusite znova.",
"Share" : "Souporaba",
"Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Soupraba z ljudmi v drugih ownCloud oblakih v formatu uporabnik@domena.si/owncloud",
"Share with users or groups …" : "Souporaba z uporabniki ali skupinami ...",
- "Share with users, groups or remote users …" : "Souporaba z usporabniki, skupinami ali zunanjimi uporabniki ...",
+ "Share with users, groups or remote users …" : "Souporaba z uporabniki, skupinami ali oddaljenimi uporabniki ...",
"Warning" : "Opozorilo",
"Error while sending notification" : "Napaka med pošiljanjem obvestila",
"Delete" : "Izbriši",
@@ -173,7 +173,7 @@
"An error occurred." : "Prišlo je do napake.",
"Please reload the page." : "Stran je treba ponovno naložiti",
"The update was unsuccessful. " : "Posodobitev je spodletela.",
- "The update was successful. There were warnings." : "Posodobitev je uspela. Z nekaj opozorili.",
+ "The update was successful. There were warnings." : "Posodobitev je uspešno končana, vendar z nekaj opozorili.",
"The update was successful. Redirecting you to ownCloud now." : "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.",
"Searching other places" : "Iskanje drugih mest",
"No search results in other folders" : "Iskanje po drugih mapah ni vrnilo rezultata",
diff --git a/lib/l10n/he.js b/lib/l10n/he.js
index b3ac1eb5d46..5d59045e4ce 100644
--- a/lib/l10n/he.js
+++ b/lib/l10n/he.js
@@ -95,6 +95,9 @@ OC.L10N.register(
"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "לא ניתן לקבוע תאריך תפוגה. שיתופים אינם יכולים לפוג תוקף מאוחר יותר מ- %s לאחר ששותפו",
"Cannot set expiration date. Expiration date is in the past" : "לא ניתן לקבוע תאריך תפוגה. תאריך התפוגה הנו בעבר",
"Cannot clear expiration date. Shares are required to have an expiration date." : "לא ניתן לבטל תאריך תפוגה. שיתופים חייבים להכיל תאריך תפוגה.",
+ "Sharing backend %s not found" : "צד אחורי לשיתוף %s לא נמצא",
+ "Sharing backend for %s not found" : "צד אחורי לשיתוף של %s לא נמצא",
+ "Sharing failed, because the user %s is the original sharer" : "שיתוף נכשל, כיוון שמשתמש %s הנו המשתף המקורי",
"Expiration date is in the past" : "תאריך תפוגה הנו בעבר",
"Could not find category \"%s\"" : "לא ניתן למצוא את הקטגוריה „%s“",
"Apps" : "יישומים",
diff --git a/lib/l10n/he.json b/lib/l10n/he.json
index 4eca14df850..04f88b870ca 100644
--- a/lib/l10n/he.json
+++ b/lib/l10n/he.json
@@ -93,6 +93,9 @@
"Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "לא ניתן לקבוע תאריך תפוגה. שיתופים אינם יכולים לפוג תוקף מאוחר יותר מ- %s לאחר ששותפו",
"Cannot set expiration date. Expiration date is in the past" : "לא ניתן לקבוע תאריך תפוגה. תאריך התפוגה הנו בעבר",
"Cannot clear expiration date. Shares are required to have an expiration date." : "לא ניתן לבטל תאריך תפוגה. שיתופים חייבים להכיל תאריך תפוגה.",
+ "Sharing backend %s not found" : "צד אחורי לשיתוף %s לא נמצא",
+ "Sharing backend for %s not found" : "צד אחורי לשיתוף של %s לא נמצא",
+ "Sharing failed, because the user %s is the original sharer" : "שיתוף נכשל, כיוון שמשתמש %s הנו המשתף המקורי",
"Expiration date is in the past" : "תאריך תפוגה הנו בעבר",
"Could not find category \"%s\"" : "לא ניתן למצוא את הקטגוריה „%s“",
"Apps" : "יישומים",
diff --git a/settings/l10n/fi_FI.js b/settings/l10n/fi_FI.js
index 35804bee4a7..ff8c4718963 100644
--- a/settings/l10n/fi_FI.js
+++ b/settings/l10n/fi_FI.js
@@ -72,6 +72,9 @@ OC.L10N.register(
"Disable" : "Poista käytöstä",
"Enable" : "Käytä",
"Error while enabling app" : "Virhe ottaessa sovellusta käyttöön",
+ "Error: this app cannot be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan",
+ "Error: could not disable broken app" : "Virhe: rikkinäisen sovelluksen poistaminen käytöstä ei onnistunut",
+ "Error while disabling broken app" : "Virhe rikkinäistä sovellusta käytöstä poistaessa",
"Updating...." : "Päivitetään...",
"Error while updating app" : "Virhe sovellusta päivittäessä",
"Updated" : "Päivitetty",
@@ -204,6 +207,7 @@ OC.L10N.register(
"Admin documentation" : "Ylläpitäjän ohjeistus",
"Show description …" : "Näytä kuvaus…",
"Hide description …" : "Piilota kuvaus…",
+ "This app has an update available." : "Tähän sovellukseen on päivitys saatavilla.",
"This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tälle sovellukselle ei ole määritelty ownCloudin vähimmäisversiota. Tämä johtaa virheeseen ownCloud 11:stä alkaen.",
"This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tälle sovellukselle ei ole määritelty ownCloudin enimmäisversiota. Tämä johtaa virheeseen ownCloud 11:stä alkaen.",
"This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:",
diff --git a/settings/l10n/fi_FI.json b/settings/l10n/fi_FI.json
index 79ee34ce10e..4d3a144aa11 100644
--- a/settings/l10n/fi_FI.json
+++ b/settings/l10n/fi_FI.json
@@ -70,6 +70,9 @@
"Disable" : "Poista käytöstä",
"Enable" : "Käytä",
"Error while enabling app" : "Virhe ottaessa sovellusta käyttöön",
+ "Error: this app cannot be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan",
+ "Error: could not disable broken app" : "Virhe: rikkinäisen sovelluksen poistaminen käytöstä ei onnistunut",
+ "Error while disabling broken app" : "Virhe rikkinäistä sovellusta käytöstä poistaessa",
"Updating...." : "Päivitetään...",
"Error while updating app" : "Virhe sovellusta päivittäessä",
"Updated" : "Päivitetty",
@@ -202,6 +205,7 @@
"Admin documentation" : "Ylläpitäjän ohjeistus",
"Show description …" : "Näytä kuvaus…",
"Hide description …" : "Piilota kuvaus…",
+ "This app has an update available." : "Tähän sovellukseen on päivitys saatavilla.",
"This app has no minimum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tälle sovellukselle ei ole määritelty ownCloudin vähimmäisversiota. Tämä johtaa virheeseen ownCloud 11:stä alkaen.",
"This app has no maximum ownCloud version assigned. This will be an error in ownCloud 11 and later." : "Tälle sovellukselle ei ole määritelty ownCloudin enimmäisversiota. Tämä johtaa virheeseen ownCloud 11:stä alkaen.",
"This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:",
diff --git a/settings/l10n/he.js b/settings/l10n/he.js
index 2a92a7d60c8..c063dfc6162 100644
--- a/settings/l10n/he.js
+++ b/settings/l10n/he.js
@@ -73,6 +73,9 @@ OC.L10N.register(
"Disable" : "ניטרול",
"Enable" : "הפעלה",
"Error while enabling app" : "שגיאה בעת הפעלת יישום",
+ "Error: this app cannot be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישום זה כיוון שהוא גורם לשרת להיות לא יציב. ",
+ "Error: could not disable broken app" : "שגיאה: לא ניתן לנטרל יישום פגום",
+ "Error while disabling broken app" : "שגיאה בזמן נטרול יישום פגום",
"Updating...." : "מתבצע עדכון…",
"Error while updating app" : "אירעה שגיאה בעת עדכון היישום",
"Updated" : "מעודכן",
diff --git a/settings/l10n/he.json b/settings/l10n/he.json
index 19914c41893..abe7cbc98f2 100644
--- a/settings/l10n/he.json
+++ b/settings/l10n/he.json
@@ -71,6 +71,9 @@
"Disable" : "ניטרול",
"Enable" : "הפעלה",
"Error while enabling app" : "שגיאה בעת הפעלת יישום",
+ "Error: this app cannot be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישום זה כיוון שהוא גורם לשרת להיות לא יציב. ",
+ "Error: could not disable broken app" : "שגיאה: לא ניתן לנטרל יישום פגום",
+ "Error while disabling broken app" : "שגיאה בזמן נטרול יישום פגום",
"Updating...." : "מתבצע עדכון…",
"Error while updating app" : "אירעה שגיאה בעת עדכון היישום",
"Updated" : "מעודכן",
diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js
index 5dbc6369449..844032b86b7 100644
--- a/settings/l10n/pt_BR.js
+++ b/settings/l10n/pt_BR.js
@@ -73,6 +73,9 @@ OC.L10N.register(
"Disable" : "Desabilitar",
"Enable" : "Habilitar",
"Error while enabling app" : "Erro enquanto habilitava o aplicativo",
+ "Error: this app cannot be enabled because it makes the server unstable" : "Erro: este aplicativo não pode ser habilitado porque faz com que o servidor fique instável",
+ "Error: could not disable broken app" : "Erro: Não foi possível desativar o aplicativo quebrado",
+ "Error while disabling broken app" : "Erro ao desativar aplicativo quebrado",
"Updating...." : "Atualizando...",
"Error while updating app" : "Erro ao atualizar aplicativo",
"Updated" : "Atualizado",
diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json
index 189e0f5be21..0800c4f006d 100644
--- a/settings/l10n/pt_BR.json
+++ b/settings/l10n/pt_BR.json
@@ -71,6 +71,9 @@
"Disable" : "Desabilitar",
"Enable" : "Habilitar",
"Error while enabling app" : "Erro enquanto habilitava o aplicativo",
+ "Error: this app cannot be enabled because it makes the server unstable" : "Erro: este aplicativo não pode ser habilitado porque faz com que o servidor fique instável",
+ "Error: could not disable broken app" : "Erro: Não foi possível desativar o aplicativo quebrado",
+ "Error while disabling broken app" : "Erro ao desativar aplicativo quebrado",
"Updating...." : "Atualizando...",
"Error while updating app" : "Erro ao atualizar aplicativo",
"Updated" : "Atualizado",
diff --git a/settings/l10n/sl.js b/settings/l10n/sl.js
index c37cf5d6217..976e77145c4 100644
--- a/settings/l10n/sl.js
+++ b/settings/l10n/sl.js
@@ -179,6 +179,7 @@ OC.L10N.register(
"Admin documentation" : "Skrbniška dokumentacija",
"Show description …" : "Pokaži opis ...",
"Hide description …" : "Skrij opis ...",
+ "This app has an update available." : "Za program so na voljo posodobitve.",
"This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerešenih odvisnosti:",
"Enable only for specific groups" : "Omogoči le za posamezne skupine",
"Uninstall App" : "Odstrani program",
@@ -204,10 +205,12 @@ OC.L10N.register(
"Remove image" : "Odstrani sliko",
"png or jpg, max. 20 MB" : "png ali jpg, največ. 20 MB",
"Cancel" : "Prekliči",
+ "Choose as profile picture" : "Izberi kot sliko profila",
"Full name" : "Polno ime",
"No display name set" : "Ime za prikaz ni bilo nastavljeno",
"Email" : "Elektronski naslov",
"Your email address" : "Osebni elektronski naslov",
+ "For password recovery and notifications" : "Za obnovo gesla in obveščanje",
"No email address set" : "Poštni naslov ni bil vpisan",
"You are member of the following groups:" : "Vi ste član sledečih skupin:",
"Password" : "Geslo",
diff --git a/settings/l10n/sl.json b/settings/l10n/sl.json
index a619a04f963..e212815124d 100644
--- a/settings/l10n/sl.json
+++ b/settings/l10n/sl.json
@@ -177,6 +177,7 @@
"Admin documentation" : "Skrbniška dokumentacija",
"Show description …" : "Pokaži opis ...",
"Hide description …" : "Skrij opis ...",
+ "This app has an update available." : "Za program so na voljo posodobitve.",
"This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerešenih odvisnosti:",
"Enable only for specific groups" : "Omogoči le za posamezne skupine",
"Uninstall App" : "Odstrani program",
@@ -202,10 +203,12 @@
"Remove image" : "Odstrani sliko",
"png or jpg, max. 20 MB" : "png ali jpg, največ. 20 MB",
"Cancel" : "Prekliči",
+ "Choose as profile picture" : "Izberi kot sliko profila",
"Full name" : "Polno ime",
"No display name set" : "Ime za prikaz ni bilo nastavljeno",
"Email" : "Elektronski naslov",
"Your email address" : "Osebni elektronski naslov",
+ "For password recovery and notifications" : "Za obnovo gesla in obveščanje",
"No email address set" : "Poštni naslov ni bil vpisan",
"You are member of the following groups:" : "Vi ste član sledečih skupin:",
"Password" : "Geslo",
diff --git a/settings/l10n/sq.js b/settings/l10n/sq.js
index 5a9b4ca678d..68ba5c58a3e 100644
--- a/settings/l10n/sq.js
+++ b/settings/l10n/sq.js
@@ -73,6 +73,9 @@ OC.L10N.register(
"Disable" : "Çaktivizoje",
"Enable" : "Aktivizoje",
"Error while enabling app" : "Gabim në aktivizimin e aplikacionit",
+ "Error: this app cannot be enabled because it makes the server unstable" : "Gabim: ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.",
+ "Error: could not disable broken app" : "Gabim: s’u çaktivizua dot aplikacion i dëmtuar",
+ "Error while disabling broken app" : "Gabim teka çaktivizohej aplikacion i dëmtuar",
"Updating...." : "Po përditësohet…",
"Error while updating app" : "Gabim gjatë përditësimit të aplikacionit",
"Updated" : "U përditësua",
diff --git a/settings/l10n/sq.json b/settings/l10n/sq.json
index 5962f5bf68a..a27d763a618 100644
--- a/settings/l10n/sq.json
+++ b/settings/l10n/sq.json
@@ -71,6 +71,9 @@
"Disable" : "Çaktivizoje",
"Enable" : "Aktivizoje",
"Error while enabling app" : "Gabim në aktivizimin e aplikacionit",
+ "Error: this app cannot be enabled because it makes the server unstable" : "Gabim: ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.",
+ "Error: could not disable broken app" : "Gabim: s’u çaktivizua dot aplikacion i dëmtuar",
+ "Error while disabling broken app" : "Gabim teka çaktivizohej aplikacion i dëmtuar",
"Updating...." : "Po përditësohet…",
"Error while updating app" : "Gabim gjatë përditësimit të aplikacionit",
"Updated" : "U përditësua",