diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php
index 0920bf62109..45fb17de94a 100644
--- a/apps/files/ajax/upload.php
+++ b/apps/files/ajax/upload.php
@@ -110,30 +110,35 @@ if (strpos($dir, '..') === false) {
|| (isset($_POST['resolution']) && $_POST['resolution']==='replace')
) {
// upload and overwrite file
- if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
-
- // updated max file size after upload
- $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir);
-
- $meta = \OC\Files\Filesystem::getFileInfo($target);
- if ($meta === false) {
- $error = $l->t('Upload failed. Could not get file info.');
+ try
+ {
+ if (is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
+
+ // updated max file size after upload
+ $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir);
+
+ $meta = \OC\Files\Filesystem::getFileInfo($target);
+ if ($meta === false) {
+ $error = $l->t('Upload failed. Could not get file info.');
+ } else {
+ $result[] = array('status' => 'success',
+ 'mime' => $meta['mimetype'],
+ 'mtime' => $meta['mtime'],
+ 'size' => $meta['size'],
+ 'id' => $meta['fileid'],
+ 'name' => basename($target),
+ 'originalname' => $files['tmp_name'][$i],
+ 'uploadMaxFilesize' => $maxUploadFileSize,
+ 'maxHumanFilesize' => $maxHumanFileSize,
+ 'permissions' => $meta['permissions'],
+ );
+ }
+
} else {
- $result[] = array('status' => 'success',
- 'mime' => $meta['mimetype'],
- 'mtime' => $meta['mtime'],
- 'size' => $meta['size'],
- 'id' => $meta['fileid'],
- 'name' => basename($target),
- 'originalname' => $files['tmp_name'][$i],
- 'uploadMaxFilesize' => $maxUploadFileSize,
- 'maxHumanFilesize' => $maxHumanFileSize,
- 'permissions' => $meta['permissions'],
- );
+ $error = $l->t('Upload failed. Could not find uploaded file');
}
-
- } else {
- $error = $l->t('Upload failed. Could not find uploaded file');
+ } catch(Exception $ex) {
+ $error = $ex->getMessage();
}
} else {
@@ -164,5 +169,5 @@ if ($error === false) {
OCP\JSON::encodedPrint($result);
exit();
} else {
- OCP\JSON::error(array('data' => array_merge(array('message' => $error), $storageStats)));
+ OCP\JSON::error(array(array('data' => array_merge(array('message' => $error), $storageStats))));
}
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index e26c1a89b78..c4a231551b1 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -8,7 +8,7 @@
.actions .button a { color: #555; }
.actions .button a:hover, .actions .button a:active { color: #333; }
-#new, #trash {
+#new {
z-index: 1010;
float: left;
padding: 0 !important; /* override default control bar button padding */
@@ -16,8 +16,10 @@
#trash {
margin-right: 12px;
float: right;
+ z-index: 1010;
+ padding: 10px;
}
-#new>a, #trash>a {
+#new>a {
padding: 14px 10px;
position: relative;
top: 7px;
@@ -103,8 +105,6 @@ table th#headerDate, table td.date {
box-sizing: border-box;
position: relative;
min-width: 11em;
- display: block;
- height: 51px;
}
/* Multiselect bar */
@@ -159,8 +159,6 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0
}
.modified {
position: relative;
- top: 11px;
- left: 5px;
}
/* TODO fix usability bug (accidental file/folder selection) */
@@ -176,6 +174,9 @@ table td.filename .nametext {
table td.filename .uploadtext { font-weight:normal; margin-left:.5em; }
table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; }
+.ie8 input[type="checkbox"]{
+ padding: 0;
+}
/* File checkboxes */
#fileList tr td.filename>input[type="checkbox"]:first-child {
@@ -251,9 +252,7 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; }
#fileList a.action.delete {
position: absolute;
right: 0;
- top: 0;
- margin: 0;
- padding: 15px 14px 19px !important;
+ padding: 9px 14px 19px !important;
}
a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; }
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js
index f1ef485fc3d..c03e9037cec 100644
--- a/apps/files/js/file-upload.js
+++ b/apps/files/js/file-upload.js
@@ -345,7 +345,7 @@ $(document).ready(function() {
} else if (result[0].status !== 'success') {
//delete data.jqXHR;
data.textStatus = 'servererror';
- data.errorThrown = result.data.message; // error message has been translated on server
+ data.errorThrown = result[0].data.message; // error message has been translated on server
var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload');
fu._trigger('fail', e, data);
}
@@ -523,8 +523,10 @@ $(document).ready(function() {
function(result){
if (result.status == 'success') {
var date=new Date();
- FileList.addFile(name,0,date,false,hidden);
- var tr=$('tr').filterAttr('data-file',name);
+ // TODO: ideally addFile should be able to receive
+ // all attributes and set them automatically,
+ // and also auto-load the preview
+ var tr = FileList.addFile(name,0,date,false,hidden);
tr.attr('data-size',result.data.size);
tr.attr('data-mime',result.data.mime);
tr.attr('data-id', result.data.id);
@@ -533,6 +535,7 @@ $(document).ready(function() {
lazyLoadPreview(path, result.data.mime, function(previewpath){
tr.find('td.filename').attr('style','background-image:url('+previewpath+')');
});
+ FileActions.display(tr.find('td.filename'));
} else {
OC.dialogs.alert(result.data.message, t('core', 'Error'));
}
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 37b66858840..9e7a2364b18 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -703,7 +703,10 @@ function checkTrashStatus() {
}
function onClickBreadcrumb(e){
- var $el = $(e.target).closest('.crumb');
- e.preventDefault();
- FileList.changeDirectory(decodeURIComponent($el.data('dir')));
+ var $el = $(e.target).closest('.crumb'),
+ $targetDir = $el.data('dir');
+ if ($targetDir !== undefined){
+ e.preventDefault();
+ FileList.changeDirectory(decodeURIComponent($targetDir));
+ }
}
diff --git a/apps/files/l10n/ady.php b/apps/files/l10n/ady.php
new file mode 100644
index 00000000000..0157af093e9
--- /dev/null
+++ b/apps/files/l10n/ady.php
@@ -0,0 +1,7 @@
+ array("",""),
+"_%n file_::_%n files_" => array("",""),
+"_Uploading %n file_::_Uploading %n files_" => array("","")
+);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php
index c747555e40b..96a4be20b5c 100644
--- a/apps/files/l10n/en_GB.php
+++ b/apps/files/l10n/en_GB.php
@@ -44,6 +44,8 @@ $TRANSLATIONS = array(
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.",
"Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!",
"Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)",
+"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App is enabled but your keys are not initialised, please log-out and log-in again",
+"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.",
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files.",
"Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.",
"Error moving file" => "Error moving file",
diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php
index bfed4b22276..b7091fe544d 100644
--- a/apps/files/l10n/es.php
+++ b/apps/files/l10n/es.php
@@ -44,6 +44,8 @@ $TRANSLATIONS = array(
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ",
"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡no se pueden actualizar o sincronizar más!",
"Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)",
+"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.",
+"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "La clave privada no es válida para Encryption App. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos encriptados.",
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos.",
"Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes.",
"Error moving file" => "Error moviendo archivo",
diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php
index cb637d849b3..d25b737037f 100644
--- a/apps/files/l10n/et_EE.php
+++ b/apps/files/l10n/et_EE.php
@@ -17,6 +17,7 @@ $TRANSLATIONS = array(
"Upload failed. Could not find uploaded file" => "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud",
"Invalid directory." => "Vigane kaust.",
"Files" => "Failid",
+"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti",
"Not enough space available" => "Pole piisavalt ruumi",
"Upload cancelled." => "Üleslaadimine tühistati.",
"Could not get result from server." => "Serverist ei saadud tulemusi",
@@ -43,6 +44,8 @@ $TRANSLATIONS = array(
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.",
"Your storage is full, files can not be updated or synced anymore!" => "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!",
"Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)",
+"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.",
+"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele.",
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.",
"Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. ",
"Error moving file" => "Viga faili eemaldamisel",
diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php
index 03505a2a269..ca1ed09ef3d 100644
--- a/apps/files/l10n/fr.php
+++ b/apps/files/l10n/fr.php
@@ -44,6 +44,8 @@ $TRANSLATIONS = array(
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.",
"Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !",
"Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)",
+"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter.",
+"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.",
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers.",
"Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.",
"Error moving file" => "Erreur lors du déplacement du fichier",
diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php
index 65ad5265237..5e2a752b974 100644
--- a/apps/files/l10n/nl.php
+++ b/apps/files/l10n/nl.php
@@ -13,10 +13,14 @@ $TRANSLATIONS = array(
"Missing a temporary folder" => "Er ontbreekt een tijdelijke map",
"Failed to write to disk" => "Schrijven naar schijf mislukt",
"Not enough storage available" => "Niet genoeg opslagruimte beschikbaar",
+"Upload failed. Could not get file info." => "Upload mislukt, Kon geen bestandsinfo krijgen.",
+"Upload failed. Could not find uploaded file" => "Upload mislukt. Kon ge-uploade bestand niet vinden",
"Invalid directory." => "Ongeldige directory.",
"Files" => "Bestanden",
+"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan {filename} niet uploaden omdat het een map is of 0 bytes groot is",
"Not enough space available" => "Niet genoeg ruimte beschikbaar",
"Upload cancelled." => "Uploaden geannuleerd.",
+"Could not get result from server." => "Kon het resultaat van de server niet terugkrijgen.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.",
"URL cannot be empty." => "URL kan niet leeg zijn.",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ongeldige mapnaam. Gebruik van 'Gedeeld' is voorbehouden aan Owncloud zelf",
@@ -40,8 +44,11 @@ $TRANSLATIONS = array(
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.",
"Your storage is full, files can not be updated or synced anymore!" => "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!",
"Your storage is almost full ({usedSpacePercent}%)" => "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)",
+"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in.",
+"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden.",
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen.",
"Your download is being prepared. This might take some time if the files are big." => "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden.",
+"Error moving file" => "Fout bij verplaatsen bestand",
"Name" => "Naam",
"Size" => "Grootte",
"Modified" => "Aangepast",
diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php
index f6d61fc9873..342cab2bf4e 100644
--- a/apps/files/l10n/pt_PT.php
+++ b/apps/files/l10n/pt_PT.php
@@ -13,10 +13,12 @@ $TRANSLATIONS = array(
"Missing a temporary folder" => "Está a faltar a pasta temporária",
"Failed to write to disk" => "Falhou a escrita no disco",
"Not enough storage available" => "Não há espaço suficiente em disco",
+"Upload failed. Could not get file info." => "O carregamento falhou. Não foi possível obter a informação do ficheiro.",
"Invalid directory." => "Directório Inválido",
"Files" => "Ficheiros",
"Not enough space available" => "Espaço em disco insuficiente!",
"Upload cancelled." => "Envio cancelado.",
+"Could not get result from server." => "Não foi possível obter o resultado do servidor.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.",
"URL cannot be empty." => "O URL não pode estar vazio.",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud",
@@ -42,6 +44,7 @@ $TRANSLATIONS = array(
"Your storage is almost full ({usedSpacePercent}%)" => "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)",
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.",
"Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.",
+"Error moving file" => "Erro ao mover o ficheiro",
"Name" => "Nome",
"Size" => "Tamanho",
"Modified" => "Modificado",
diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php
index 208dcd4ea12..32267ea2e71 100644
--- a/apps/files/l10n/sv.php
+++ b/apps/files/l10n/sv.php
@@ -13,10 +13,14 @@ $TRANSLATIONS = array(
"Missing a temporary folder" => "En temporär mapp saknas",
"Failed to write to disk" => "Misslyckades spara till disk",
"Not enough storage available" => "Inte tillräckligt med lagringsutrymme tillgängligt",
+"Upload failed. Could not get file info." => "Uppladdning misslyckades. Gick inte att hämta filinformation.",
+"Upload failed. Could not find uploaded file" => "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen",
"Invalid directory." => "Felaktig mapp.",
"Files" => "Filer",
+"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes.",
"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt",
"Upload cancelled." => "Uppladdning avbruten.",
+"Could not get result from server." => "Gick inte att hämta resultat från server.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.",
"URL cannot be empty." => "URL kan inte vara tom.",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ogiltigt mappnamn. Användning av 'Shared' är reserverad av ownCloud",
@@ -40,8 +44,11 @@ $TRANSLATIONS = array(
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.",
"Your storage is full, files can not be updated or synced anymore!" => "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!",
"Your storage is almost full ({usedSpacePercent}%)" => "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)",
+"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen",
+"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer.",
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer.",
"Your download is being prepared. This might take some time if the files are big." => "Din nedladdning förbereds. Det kan ta tid om det är stora filer.",
+"Error moving file" => "Fel uppstod vid flyttning av fil",
"Name" => "Namn",
"Size" => "Storlek",
"Modified" => "Ändrad",
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php
index 5e7ad41b0f0..32a59f1e1a6 100644
--- a/apps/files/templates/index.php
+++ b/apps/files/templates/index.php
@@ -1,4 +1,3 @@
-
@@ -108,6 +107,7 @@
+
diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php
index 0679da334de..a6d2e44f34f 100644
--- a/apps/files/templates/part.list.php
+++ b/apps/files/templates/part.list.php
@@ -36,7 +36,7 @@ $totalsize = 0; ?>
-
+
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php
index ac0c0269164..61574edf509 100644
--- a/apps/files_encryption/files/error.php
+++ b/apps/files_encryption/files/error.php
@@ -5,26 +5,39 @@ if (!isset($_)) { //also provide standalone error page
$l = OC_L10N::get('files_encryption');
- if (isset($_GET['i']) && $_GET['i'] === '0') {
- $errorMsg = $l->t('Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.');
- $init = '0';
+ if (isset($_GET['errorCode'])) {
+ $errorCode = $_GET['errorCode'];
+ switch ($errorCode) {
+ case \OCA\Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR:
+ $errorMsg = $l->t('Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.');
+ break;
+ case \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR:
+ $errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.');
+ break;
+ case \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND:
+ $errorMsg = $l->t('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.');
+ break;
+ default:
+ $errorMsg = $l->t("Unknown error please check your system settings or contact your administrator");
+ break;
+ }
} else {
- $errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.');
- $init = '1';
+ $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR;
+ $errorMsg = $l->t("Unknown error please check your system settings or contact your administrator");
}
if (isset($_GET['p']) && $_GET['p'] === '1') {
- header('HTTP/1.0 404 ' . $errorMsg);
+ header('HTTP/1.0 403 ' . $errorMsg);
}
// check if ajax request
if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
\OCP\JSON::error(array('data' => array('message' => $errorMsg)));
} else {
- header('HTTP/1.0 404 ' . $errorMsg);
+ header('HTTP/1.0 403 ' . $errorMsg);
$tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest');
$tmpl->assign('message', $errorMsg);
- $tmpl->assign('init', $init);
+ $tmpl->assign('errorCode', $errorCode);
$tmpl->printPage();
}
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php
index 2df860a8e57..d9a76becf25 100644
--- a/apps/files_encryption/hooks/hooks.php
+++ b/apps/files_encryption/hooks/hooks.php
@@ -92,8 +92,6 @@ class Hooks {
}
// Encrypt existing user files:
- // This serves to upgrade old versions of the encryption
- // app (see appinfo/spec.txt)
if (
$util->encryptAll('/' . $params['uid'] . '/' . 'files', $session->getLegacyKey(), $params['password'])
) {
diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php
index 93a715d3417..99548cb1cac 100644
--- a/apps/files_encryption/l10n/de.php
+++ b/apps/files_encryption/l10n/de.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.",
"Private key password successfully updated." => "Passwort des privaten Schlüssels erfolgreich aktualisiert",
"Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.",
"Missing requirements." => "Fehlende Vorraussetzungen",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.",
"Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
"Saving..." => "Speichern...",
+"Go directly to your " => "Direkt wechseln zu Deinem",
"personal settings" => "Private Einstellungen",
"Encryption" => "Verschlüsselung",
"Enable recovery key (allow to recover users files in case of password loss):" => "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):",
"Recovery key password" => "Wiederherstellungsschlüssel-Passwort",
+"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen",
"Enabled" => "Aktiviert",
"Disabled" => "Deaktiviert",
"Change recovery key password:" => "Wiederherstellungsschlüssel-Passwort ändern:",
"Old Recovery key password" => "Altes Wiederherstellungsschlüssel-Passwort",
"New Recovery key password" => "Neues Wiederherstellungsschlüssel-Passwort",
+"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen",
"Change Password" => "Passwort ändern",
"Your private key password no longer match your log-in password:" => "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein.",
"Set your old private key password to your current log-in password." => "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort",
diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php
index 79fdbe995e9..9d33d2100d2 100644
--- a/apps/files_encryption/l10n/de_DE.php
+++ b/apps/files_encryption/l10n/de_DE.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.",
"Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.",
"Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.",
"Missing requirements." => "Fehlende Voraussetzungen",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.",
"Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
"Saving..." => "Speichern...",
+"Go directly to your " => "Direkt wechseln zu Ihrem",
"personal settings" => "Persönliche Einstellungen",
"Encryption" => "Verschlüsselung",
"Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).",
"Recovery key password" => "Wiederherstellungschlüsselpasswort",
+"Repeat Recovery key password" => "Schlüssel-Passwort zur Wiederherstellung wiederholen",
"Enabled" => "Aktiviert",
"Disabled" => "Deaktiviert",
"Change recovery key password:" => "Wiederherstellungsschlüsselpasswort ändern",
"Old Recovery key password" => "Altes Wiederherstellungsschlüsselpasswort",
"New Recovery key password" => "Neues Wiederherstellungsschlüsselpasswort ",
+"Repeat New Recovery key password" => "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen",
"Change Password" => "Passwort ändern",
"Your private key password no longer match your log-in password:" => "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen.",
"Set your old private key password to your current log-in password." => "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort.",
diff --git a/apps/files_encryption/l10n/en_GB.php b/apps/files_encryption/l10n/en_GB.php
index d2bfdfa9ea4..53eef77eb54 100644
--- a/apps/files_encryption/l10n/en_GB.php
+++ b/apps/files_encryption/l10n/en_GB.php
@@ -8,22 +8,26 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Could not change the password. Maybe the old password was incorrect.",
"Private key password successfully updated." => "Private key password updated successfully.",
"Could not update the private key password. Maybe the old password was not correct." => "Could not update the private key password. Maybe the old password was not correct.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.",
"Missing requirements." => "Missing requirements.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.",
"Following users are not set up for encryption:" => "Following users are not set up for encryption:",
"Saving..." => "Saving...",
+"Go directly to your " => "Go directly to your ",
"personal settings" => "personal settings",
"Encryption" => "Encryption",
"Enable recovery key (allow to recover users files in case of password loss):" => "Enable recovery key (allow to recover users files in case of password loss):",
"Recovery key password" => "Recovery key password",
+"Repeat Recovery key password" => "Repeat recovery key password",
"Enabled" => "Enabled",
"Disabled" => "Disabled",
"Change recovery key password:" => "Change recovery key password:",
-"Old Recovery key password" => "Old Recovery key password",
-"New Recovery key password" => "New Recovery key password",
+"Old Recovery key password" => "Old recovery key password",
+"New Recovery key password" => "New recovery key password",
+"Repeat New Recovery key password" => "Repeat new recovery key password",
"Change Password" => "Change Password",
-"Your private key password no longer match your log-in password:" => "Your private key password no longer match your login password:",
+"Your private key password no longer match your log-in password:" => "Your private key password no longer matches your login password:",
"Set your old private key password to your current log-in password." => "Set your old private key password to your current login password.",
" If you don't remember your old password you can ask your administrator to recover your files." => " If you don't remember your old password you can ask your administrator to recover your files.",
"Old log-in password" => "Old login password",
diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php
index b302795f934..2e3c7c58163 100644
--- a/apps/files_encryption/l10n/es.php
+++ b/apps/files_encryption/l10n/es.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
"Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.",
"Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "¡Encryption App no está inicializada!. Quizás la aplicación fue reiniciada durante tu sesión. Por favor, cierra la sesión y vuelva a iniciarla para intentar inicializar la Encryption App.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.",
"Missing requirements." => "Requisitos incompletos.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.",
"Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:",
"Saving..." => "Guardando...",
+"Go directly to your " => "Ir directamente a su",
"personal settings" => "opciones personales",
"Encryption" => "Cifrado",
"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);",
"Recovery key password" => "Contraseña de clave de recuperación",
+"Repeat Recovery key password" => "Repetir contraseña de clave de recuperación",
"Enabled" => "Habilitar",
"Disabled" => "Deshabilitado",
"Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación",
"Old Recovery key password" => "Antigua clave de recuperación",
"New Recovery key password" => "Nueva clave de recuperación",
+"Repeat New Recovery key password" => "Repetir nueva contraseña de clave de recuperación",
"Change Password" => "Cambiar contraseña",
"Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:",
"Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.",
diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php
index 0c9234d3a51..c49e4e9e5a5 100644
--- a/apps/files_encryption/l10n/et_EE.php
+++ b/apps/files_encryption/l10n/et_EE.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.",
"Private key password successfully updated." => "Privaatse võtme parool edukalt uuendatud.",
"Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.",
"Missing requirements." => "Nõutavad on puudu.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.",
"Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:",
"Saving..." => "Salvestamine...",
+"Go directly to your " => "Liigu otse oma",
"personal settings" => "isiklikes seadetes",
"Encryption" => "Krüpteerimine",
"Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):",
"Recovery key password" => "Taastevõtme parool",
+"Repeat Recovery key password" => "Korda taastevõtme parooli",
"Enabled" => "Sisse lülitatud",
"Disabled" => "Väljalülitatud",
"Change recovery key password:" => "Muuda taastevõtme parooli:",
"Old Recovery key password" => "Vana taastevõtme parool",
"New Recovery key password" => "Uus taastevõtme parool",
+"Repeat New Recovery key password" => "Korda uut taastevõtme parooli",
"Change Password" => "Muuda parooli",
"Your private key password no longer match your log-in password:" => "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:",
"Set your old private key password to your current log-in password." => "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.",
diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php
index b222aa10e4b..afce2ccfd35 100644
--- a/apps/files_encryption/l10n/fr.php
+++ b/apps/files_encryption/l10n/fr.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect.",
"Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.",
"Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.",
"Missing requirements." => "Système minimum requis non respecté.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée.",
"Following users are not set up for encryption:" => "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :",
"Saving..." => "Enregistrement...",
+"Go directly to your " => "Allez directement à votre",
"personal settings" => "paramètres personnel",
"Encryption" => "Chiffrement",
"Enable recovery key (allow to recover users files in case of password loss):" => "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).",
"Recovery key password" => "Mot de passe de la clef de récupération",
+"Repeat Recovery key password" => "Répétez le mot de passe de la clé de récupération",
"Enabled" => "Activer",
"Disabled" => "Désactiver",
"Change recovery key password:" => "Modifier le mot de passe de la clef de récupération :",
"Old Recovery key password" => "Ancien mot de passe de la clef de récupération",
"New Recovery key password" => "Nouveau mot de passe de la clef de récupération",
+"Repeat New Recovery key password" => "Répétez le nouveau mot de passe de la clé de récupération",
"Change Password" => "Changer de mot de passe",
"Your private key password no longer match your log-in password:" => "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :",
"Set your old private key password to your current log-in password." => "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. ",
diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php
index a6ffe10d57d..5a1d8ec750d 100644
--- a/apps/files_encryption/l10n/gl.php
+++ b/apps/files_encryption/l10n/gl.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.",
"Private key password successfully updated." => "A chave privada foi actualizada correctamente.",
"Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Non se iniciou o aplicativo de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala que tamén se inicie o aplicativo de cifrado.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros",
"Missing requirements." => "Non se cumpren os requisitos.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado.",
"Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:",
"Saving..." => "Gardando...",
+"Go directly to your " => "Vaia directamente ao seu",
"personal settings" => "axustes persoais",
"Encryption" => "Cifrado",
"Enable recovery key (allow to recover users files in case of password loss):" => "Activar a chave de recuperación (permitirá recuperar os ficheiros dos usuarios no caso de perda do contrasinal):",
"Recovery key password" => "Contrasinal da chave de recuperación",
+"Repeat Recovery key password" => "Repita o contrasinal da chave da recuperación",
"Enabled" => "Activado",
"Disabled" => "Desactivado",
"Change recovery key password:" => "Cambiar o contrasinal da chave de la recuperación:",
"Old Recovery key password" => "Antigo contrasinal da chave de recuperación",
"New Recovery key password" => "Novo contrasinal da chave de recuperación",
+"Repeat New Recovery key password" => "Repita o novo contrasinal da chave da recuperación",
"Change Password" => "Cambiar o contrasinal",
"Your private key password no longer match your log-in password:" => "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.",
"Set your old private key password to your current log-in password." => "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual",
diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php
index f45dbe7c734..c93afa15729 100644
--- a/apps/files_encryption/l10n/it.php
+++ b/apps/files_encryption/l10n/it.php
@@ -13,15 +13,18 @@ $TRANSLATIONS = array(
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.",
"Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:",
"Saving..." => "Salvataggio in corso...",
+"Go directly to your " => "Passa direttamente a",
"personal settings" => "impostazioni personali",
"Encryption" => "Cifratura",
"Enable recovery key (allow to recover users files in case of password loss):" => "Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):",
"Recovery key password" => "Password della chiave di recupero",
+"Repeat Recovery key password" => "Ripeti la password della chiave di recupero",
"Enabled" => "Abilitata",
"Disabled" => "Disabilitata",
"Change recovery key password:" => "Cambia la password della chiave di recupero:",
"Old Recovery key password" => "Vecchia password della chiave di recupero",
"New Recovery key password" => "Nuova password della chiave di recupero",
+"Repeat New Recovery key password" => "Ripeti la nuova password della chiave di recupero",
"Change Password" => "Modifica password",
"Your private key password no longer match your log-in password:" => "La password della chiave privata non corrisponde più alla password di accesso:",
"Set your old private key password to your current log-in password." => "Imposta la vecchia password della chiave privata sull'attuale password di accesso.",
diff --git a/apps/files_encryption/l10n/lt_LT.php b/apps/files_encryption/l10n/lt_LT.php
index 381c03f7e11..ae57cb1c561 100644
--- a/apps/files_encryption/l10n/lt_LT.php
+++ b/apps/files_encryption/l10n/lt_LT.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Slaptažodis nebuvo pakeistas. Gali būti, kad buvo neteisingai suvestas senasis.",
"Private key password successfully updated." => "Privataus rakto slaptažodis buvo sėkmingai atnaujintas.",
"Could not update the private key password. Maybe the old password was not correct." => "Nepavyko atnaujinti privataus rakto slaptažodžio. Gali būti, kad buvo neteisingai suvestas senasis.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas išorėje ownCloud sistemos (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų.",
"Missing requirements." => "Trūkstami laukai.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta.",
"Following users are not set up for encryption:" => "Sekantys naudotojai nenustatyti šifravimui:",
"Saving..." => "Saugoma...",
+"Go directly to your " => "Eiti tiesiai į Jūsų",
"personal settings" => "asmeniniai nustatymai",
"Encryption" => "Šifravimas",
"Enable recovery key (allow to recover users files in case of password loss):" => "Įjunkite atkūrimo raktą, (leisti atkurti naudotojų failus praradus slaptažodį):",
"Recovery key password" => "Atkūrimo rakto slaptažodis",
+"Repeat Recovery key password" => "Pakartokite atkūrimo rakto slaptažodį",
"Enabled" => "Įjungta",
"Disabled" => "Išjungta",
"Change recovery key password:" => "Pakeisti atkūrimo rakto slaptažodį:",
"Old Recovery key password" => "Senas atkūrimo rakto slaptažodis",
"New Recovery key password" => "Naujas atkūrimo rakto slaptažodis",
+"Repeat New Recovery key password" => "Pakartokite naują atkūrimo rakto slaptažodį",
"Change Password" => "Pakeisti slaptažodį",
"Your private key password no longer match your log-in password:" => "Privatus rakto slaptažodis daugiau neatitinka Jūsų prisijungimo slaptažodžio:",
"Set your old private key password to your current log-in password." => "Nustatyti Jūsų privataus rakto slaptažodį į Jūsų dabartinį prisijungimo.",
diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php
index 511120856a0..86d56e40315 100644
--- a/apps/files_encryption/l10n/nl.php
+++ b/apps/files_encryption/l10n/nl.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd.",
"Private key password successfully updated." => "Privésleutel succesvol bijgewerkt.",
"Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Crypto app niet geïnitialiseerd. Misschien werd de crypto app geheractiveerd tijdens de sessie. Log uit en log daarna opnieuw in om de crypto app te initialiseren.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren.",
"Missing requirements." => "Missende benodigdheden.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.",
"Following users are not set up for encryption:" => "De volgende gebruikers hebben geen configuratie voor encryptie:",
"Saving..." => "Opslaan",
+"Go directly to your " => "Ga meteen naar uw",
"personal settings" => "persoonlijke instellingen",
"Encryption" => "Versleuteling",
"Enable recovery key (allow to recover users files in case of password loss):" => "Activeren herstelsleutel (maakt het mogelijk om gebruikersbestanden terug te halen in geval van verlies van het wachtwoord):",
"Recovery key password" => "Wachtwoord herstelsleulel",
+"Repeat Recovery key password" => "Herhaal het herstelsleutel wachtwoord",
"Enabled" => "Geactiveerd",
"Disabled" => "Gedeactiveerd",
"Change recovery key password:" => "Wijzig wachtwoord herstelsleutel:",
"Old Recovery key password" => "Oude wachtwoord herstelsleutel",
"New Recovery key password" => "Nieuwe wachtwoord herstelsleutel",
+"Repeat New Recovery key password" => "Herhaal het nieuwe herstelsleutel wachtwoord",
"Change Password" => "Wijzigen wachtwoord",
"Your private key password no longer match your log-in password:" => "Het wachtwoord van uw privésleutel komt niet meer overeen met uw inlogwachtwoord:",
"Set your old private key password to your current log-in password." => "Stel het wachtwoord van uw oude privésleutel in op uw huidige inlogwachtwoord.",
diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php
index 4eb1ca00dda..b448aaef148 100644
--- a/apps/files_encryption/l10n/pl.php
+++ b/apps/files_encryption/l10n/pl.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.",
"Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.",
"Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.",
"Missing requirements." => "Brak wymagań.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.",
"Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:",
"Saving..." => "Zapisywanie...",
+"Go directly to your " => "Przejdź bezpośrednio do",
"personal settings" => "Ustawienia osobiste",
"Encryption" => "Szyfrowanie",
"Enable recovery key (allow to recover users files in case of password loss):" => "Włączhasło klucza odzyskiwania (pozwala odzyskać pliki użytkowników w przypadku utraty hasła):",
"Recovery key password" => "Hasło klucza odzyskiwania",
+"Repeat Recovery key password" => "Powtórz hasło klucza odzyskiwania",
"Enabled" => "Włączone",
"Disabled" => "Wyłączone",
"Change recovery key password:" => "Zmień hasło klucza odzyskiwania",
"Old Recovery key password" => "Stare hasło klucza odzyskiwania",
"New Recovery key password" => "Nowe hasło klucza odzyskiwania",
+"Repeat New Recovery key password" => "Powtórz nowe hasło klucza odzyskiwania",
"Change Password" => "Zmień hasło",
"Your private key password no longer match your log-in password:" => "Hasło klucza prywatnego nie pasuje do hasła logowania:",
"Set your old private key password to your current log-in password." => "Podaj swoje stare prywatne hasło aby ustawić nowe",
diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php
index 8e9432dacf6..c6abb1952d2 100644
--- a/apps/files_encryption/l10n/pt_BR.php
+++ b/apps/files_encryption/l10n/pt_BR.php
@@ -8,20 +8,24 @@ $TRANSLATIONS = array(
"Could not change the password. Maybe the old password was not correct." => "Não foi possível alterar a senha. Talvez a senha antiga não estava correta.",
"Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.",
"Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Aplicativo de criptografia não foi inicializado! Talvez o aplicativo de criptografia tenha sido reativado durante essa sessão. Por favor, tente fazer logoff e login novamente para inicializar o aplicativo de criptografia.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.",
"Missing requirements." => "Requisitos não encontrados.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.",
"Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:",
"Saving..." => "Salvando...",
+"Go directly to your " => "Ir diretamente para o seu",
"personal settings" => "configurações pessoais.",
"Encryption" => "Criptografia",
"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):",
"Recovery key password" => "Senha da chave de recuperação",
+"Repeat Recovery key password" => "Repita Recuperação de senha da chave",
"Enabled" => "Habilitado",
"Disabled" => "Desabilitado",
"Change recovery key password:" => "Mudar a senha da chave de recuperação:",
"Old Recovery key password" => "Senha antiga da chave de recuperação",
"New Recovery key password" => "Nova senha da chave de recuperação",
+"Repeat New Recovery key password" => "Repita Nova senha da chave de recuperação",
"Change Password" => "Trocar Senha",
"Your private key password no longer match your log-in password:" => "Sua senha de chave privada não coincide mais com sua senha de login:",
"Set your old private key password to your current log-in password." => "Configure sua antiga senha de chave privada para sua atual senha de login.",
diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php
index 53335ab7297..788e102dd67 100644
--- a/apps/files_encryption/l10n/pt_PT.php
+++ b/apps/files_encryption/l10n/pt_PT.php
@@ -9,6 +9,7 @@ $TRANSLATIONS = array(
"Could not update the private key password. Maybe the old password was not correct." => "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.",
"Missing requirements." => "Faltam alguns requisitos.",
+"Following users are not set up for encryption:" => "Os utilizadores seguintes não estão marcados para cifragem:",
"Saving..." => "A guardar...",
"personal settings" => "configurações personalizadas ",
"Encryption" => "Encriptação",
diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php
index d425111cf03..f806c3cc3e6 100644
--- a/apps/files_encryption/l10n/sv.php
+++ b/apps/files_encryption/l10n/sv.php
@@ -6,29 +6,33 @@ $TRANSLATIONS = array(
"Could not disable recovery key. Please check your recovery key password!" => "Kunde inte inaktivera återställningsnyckeln. Vänligen kontrollera ditt lösenord för återställningsnyckeln!",
"Password successfully changed." => "Ändringen av lösenordet lyckades.",
"Could not change the password. Maybe the old password was not correct." => "Kunde inte ändra lösenordet. Kanske det gamla lösenordet inte var rätt.",
-"Private key password successfully updated." => "Den privata lösenordsnyckeln uppdaterades utan problem.",
-"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.",
-"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.",
+"Private key password successfully updated." => "Den privata nyckelns lösenord uppdaterades utan problem.",
+"Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera lösenordet för den privata nyckeln. Kanske var det gamla lösenordet fel.",
+"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krypteringsprogrammet kunde inte initieras! Möjligen blev krypteringsprogrammet återaktiverad under din session. Försök med att logga ut och in igen för att initiera krypteringsprogrammet.",
+"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Lösenordet för din privata nyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera lösenordet för den privata nyckeln under dina personliga inställningar för att återfå tillgång till dina filer.",
"Missing requirements." => "Krav som saknas",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.",
"Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:",
"Saving..." => "Sparar...",
+"Go directly to your " => "Gå direkt till din",
"personal settings" => "personliga inställningar",
"Encryption" => "Kryptering",
-"Enable recovery key (allow to recover users files in case of password loss):" => "Aktivera lösenordsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):",
-"Recovery key password" => "Lösenordsnyckel",
+"Enable recovery key (allow to recover users files in case of password loss):" => "Aktivera återställningsnyckel (för att kunna återfå användarens filer vid glömt eller förlorat lösenord):",
+"Recovery key password" => "Lösenord för återställningsnyckel",
+"Repeat Recovery key password" => "Upprepa återställningsnyckelns lösenord",
"Enabled" => "Aktiverad",
"Disabled" => "Inaktiverad",
-"Change recovery key password:" => "Ändra lösenordsnyckel:",
-"Old Recovery key password" => "Gammal lösenordsnyckel",
-"New Recovery key password" => "Ny lösenordsnyckel",
+"Change recovery key password:" => "Ändra lösenord för återställningsnyckel:",
+"Old Recovery key password" => "Gammalt lösenord för återställningsnyckel",
+"New Recovery key password" => "Nytt lösenord för återställningsnyckel",
+"Repeat New Recovery key password" => "Upprepa lösenord för ny återställningsnyckel",
"Change Password" => "Byt lösenord",
-"Your private key password no longer match your log-in password:" => "Din privata lösenordsnyckel stämmer inte längre överrens med ditt inloggningslösenord:",
-"Set your old private key password to your current log-in password." => "Ställ in din gamla privata lösenordsnyckel till ditt aktuella inloggningslösenord.",
+"Your private key password no longer match your log-in password:" => "Lösenordet till din privata nyckel stämmer inte längre överens med ditt inloggningslösenord:",
+"Set your old private key password to your current log-in password." => "Använd din gamla privata nyckels lösenord som ditt aktuella inloggningslösenord.",
" If you don't remember your old password you can ask your administrator to recover your files." => "Om du inte kommer ihåg ditt gamla lösenord kan du be din administratör att återställa dina filer.",
"Old log-in password" => "Gammalt inloggningslösenord",
"Current log-in password" => "Nuvarande inloggningslösenord",
-"Update Private Key Password" => "Uppdatera den privata lösenordsnyckeln",
+"Update Private Key Password" => "Uppdatera lösenordet för din privata nyckel",
"Enable password recovery:" => "Aktivera lösenordsåterställning",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord",
"File recovery settings updated" => "Inställningarna för filåterställning har uppdaterats",
diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php
index c009718160a..9155d238c77 100755
--- a/apps/files_encryption/lib/crypt.php
+++ b/apps/files_encryption/lib/crypt.php
@@ -33,6 +33,12 @@ require_once __DIR__ . '/../3rdparty/Crypt_Blowfish/Blowfish.php';
class Crypt {
+ const ENCRYPTION_UNKNOWN_ERROR = -1;
+ const ENCRYPTION_NOT_INITIALIZED_ERROR = 1;
+ const ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR = 2;
+ const ENCRYPTION_NO_SHARE_KEY_FOUND = 3;
+
+
/**
* @brief return encryption mode client or server side encryption
* @param string $user name (use system wide setting if name=null)
@@ -183,8 +189,8 @@ class Crypt {
// Fetch all file metadata from DB
$metadata = \OC\Files\Filesystem::getFileInfo($relPath, '');
- // If a file is flagged with encryption in DB, but isn't a
- // valid content + IV combination, it's probably using the
+ // If a file is flagged with encryption in DB, but isn't a
+ // valid content + IV combination, it's probably using the
// legacy encryption system
if (isset($metadata['encrypted'])
&& $metadata['encrypted'] === true
@@ -388,7 +394,7 @@ class Crypt {
*/
public static function multiKeyEncrypt($plainContent, array $publicKeys) {
- // openssl_seal returns false without errors if $plainContent
+ // openssl_seal returns false without errors if $plainContent
// is empty, so trigger our own error
if (empty($plainContent)) {
@@ -405,7 +411,7 @@ class Crypt {
$i = 0;
- // Ensure each shareKey is labelled with its
+ // Ensure each shareKey is labelled with its
// corresponding userId
foreach ($publicKeys as $userId => $publicKey) {
@@ -476,7 +482,7 @@ class Crypt {
}
- // We encode the iv purely for string manipulation
+ // We encode the iv purely for string manipulation
// purposes - it gets decoded before use
$iv = base64_encode($random);
diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php
index ebfc00157f7..a754f9f28c4 100755
--- a/apps/files_encryption/lib/helper.php
+++ b/apps/files_encryption/lib/helper.php
@@ -235,16 +235,28 @@ class Helper {
/**
* @brief redirect to a error page
*/
- public static function redirectToErrorPage($session) {
-
- $init = $session->getInitialized();
+ public static function redirectToErrorPage($session, $errorCode = null) {
+
+ if ($errorCode === null) {
+ $init = $session->getInitialized();
+ switch ($init) {
+ case \OCA\Encryption\Session::INIT_EXECUTED:
+ $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR;
+ break;
+ case \OCA\Encryption\Session::NOT_INITIALIZED:
+ $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR;
+ break;
+ default:
+ $errorCode = \OCA\Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR;
+ }
+ }
$location = \OC_Helper::linkToAbsolute('apps/files_encryption/files', 'error.php');
$post = 0;
if(count($_POST) > 0) {
$post = 1;
}
- header('Location: ' . $location . '?p=' . $post . '&i=' . $init);
+ header('Location: ' . $location . '?p=' . $post . '&errorCode=' . $errorCode);
exit();
}
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php
index 6f630c83a3f..8621c1ba51d 100644
--- a/apps/files_encryption/lib/proxy.php
+++ b/apps/files_encryption/lib/proxy.php
@@ -38,8 +38,6 @@ class Proxy extends \OC_FileProxy {
private static $blackList = null; //mimetypes blacklisted from encryption
- private static $enableEncryption = null;
-
/**
* Check if a file requires encryption
* @param string $path
@@ -49,46 +47,22 @@ class Proxy extends \OC_FileProxy {
*/
private static function shouldEncrypt($path) {
- if (is_null(self::$enableEncryption)) {
- if (
- \OCP\App::isEnabled('files_encryption') === true
- && Crypt::mode() === 'server'
- ) {
-
- self::$enableEncryption = true;
-
- } else {
-
- self::$enableEncryption = false;
-
- }
-
- }
-
- if (!self::$enableEncryption) {
-
+ if (\OCP\App::isEnabled('files_encryption') === false || Crypt::mode() !== 'server') {
return false;
-
}
if (is_null(self::$blackList)) {
-
self::$blackList = explode(',', \OCP\Config::getAppValue('files_encryption', 'type_blacklist', ''));
-
}
if (Crypt::isCatfileContent($path)) {
-
return true;
-
}
$extension = substr($path, strrpos($path, '.') + 1);
if (array_search($extension, self::$blackList) === false) {
-
return true;
-
}
return false;
diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php
index 02955bb064e..5ce5caf80ce 100644
--- a/apps/files_encryption/lib/stream.php
+++ b/apps/files_encryption/lib/stream.php
@@ -254,16 +254,20 @@ class Stream {
// If a keyfile already exists
if ($this->encKeyfile) {
+ $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath);
+
// if there is no valid private key return false
if ($this->privateKey === false) {
-
// if private key is not valid redirect user to a error page
- \OCA\Encryption\Helper::redirectToErrorPage();
-
+ \OCA\Encryption\Helper::redirectToErrorPage($this->session);
return false;
}
- $shareKey = Keymanager::getShareKey($this->rootView, $this->userId, $this->relPath);
+ if ($shareKey === false) {
+ // if no share key is available redirect user to a error page
+ \OCA\Encryption\Helper::redirectToErrorPage($this->session, \OCA\Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND);
+ return false;
+ }
$this->plainKey = Crypt::multiKeyDecrypt($this->encKeyfile, $shareKey, $this->privateKey);
@@ -506,9 +510,10 @@ class Stream {
// Get all users sharing the file includes current user
$uniqueUserIds = $util->getSharingUsersArray($sharingEnabled, $this->relPath, $this->userId);
+ $checkedUserIds = $util->filterShareReadyUsers($uniqueUserIds);
// Fetch public keys for all sharing users
- $publicKeys = Keymanager::getPublicKeys($this->rootView, $uniqueUserIds);
+ $publicKeys = Keymanager::getPublicKeys($this->rootView, $checkedUserIds['ready']);
// Encrypt enc key for all sharing users
$this->encKeyfiles = Crypt::multiKeyEncrypt($this->plainKey, $publicKeys);
diff --git a/apps/files_encryption/templates/invalid_private_key.php b/apps/files_encryption/templates/invalid_private_key.php
index 9af65f831b4..a3cae60b1da 100644
--- a/apps/files_encryption/templates/invalid_private_key.php
+++ b/apps/files_encryption/templates/invalid_private_key.php
@@ -4,7 +4,7 @@
-
+
p($l->t('Go directly to your ')); ?> t('personal settings')); ?>.
diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php
index 3a6adc09f4b..231a68b6a58 100644
--- a/apps/files_encryption/templates/settings-admin.php
+++ b/apps/files_encryption/templates/settings-admin.php
@@ -1,10 +1,7 @@
t( 'Deleted' )); ?>
diff --git a/apps/files_versions/ajax/preview.php b/apps/files_versions/ajax/preview.php
index c24134df534..62bcc03f522 100644
--- a/apps/files_versions/ajax/preview.php
+++ b/apps/files_versions/ajax/preview.php
@@ -12,25 +12,32 @@ if(!\OC_App::isEnabled('files_versions')){
}
$file = array_key_exists('file', $_GET) ? (string) urldecode($_GET['file']) : '';
+$user = array_key_exists('user', $_GET) ? $_GET['user'] : '';
$maxX = array_key_exists('x', $_GET) ? (int) $_GET['x'] : 44;
$maxY = array_key_exists('y', $_GET) ? (int) $_GET['y'] : 44;
$version = array_key_exists('version', $_GET) ? $_GET['version'] : '';
$scalingUp = array_key_exists('scalingup', $_GET) ? (bool) $_GET['scalingup'] : true;
+if($user === '') {
+ \OC_Response::setStatus(400); //400 Bad Request
+ \OC_Log::write('versions-preview', 'No user parameter was passed', \OC_Log::DEBUG);
+ exit;
+}
+
if($file === '' && $version === '') {
\OC_Response::setStatus(400); //400 Bad Request
- \OC_Log::write('core-preview', 'No file parameter was passed', \OC_Log::DEBUG);
+ \OC_Log::write('versions-preview', 'No file parameter was passed', \OC_Log::DEBUG);
exit;
}
if($maxX === 0 || $maxY === 0) {
\OC_Response::setStatus(400); //400 Bad Request
- \OC_Log::write('core-preview', 'x and/or y set to 0', \OC_Log::DEBUG);
+ \OC_Log::write('versions-preview', 'x and/or y set to 0', \OC_Log::DEBUG);
exit;
}
try{
- $preview = new \OC\Preview(\OC_User::getUser(), 'files_versions');
+ $preview = new \OC\Preview($user, 'files_versions');
$preview->setFile($file.'.v'.$version);
$preview->setMaxX($maxX);
$preview->setMaxY($maxY);
diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php
index fc8d0365c71..225611374a6 100644
--- a/apps/files_versions/lib/versions.php
+++ b/apps/files_versions/lib/versions.php
@@ -19,6 +19,7 @@ class Storage {
const DEFAULTENABLED=true;
const DEFAULTMAXSIZE=50; // unit: percentage; 50% of available disk space/quota
+ const VERSIONS_ROOT = 'files_versions/';
private static $max_versions_per_interval = array(
//first 10sec, one version every 2sec
@@ -238,60 +239,38 @@ class Storage {
* @param $filename file to find versions of, relative to the user files dir
* @returns array
*/
- public static function getVersions($uid, $filename ) {
- if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) {
- $versions_fileview = new \OC\Files\View('/' . $uid . '/files_versions');
- $versionsName = $versions_fileview->getLocalFile($filename).'.v';
- $escapedVersionName = preg_replace('/(\*|\?|\[)/', '[$1]', $versionsName);
-
- $versions = array();
- // fetch for old versions
- $matches = glob($escapedVersionName.'*');
-
- if ( !$matches ) {
- return $versions;
- }
-
- sort( $matches );
-
- $files_view = new \OC\Files\View('/'.$uid.'/files');
- $local_file = $files_view->getLocalFile($filename);
- $local_file_md5 = \md5_file( $local_file );
-
- foreach( $matches as $ma ) {
- $parts = explode( '.v', $ma );
- $version = ( end( $parts ) );
- $key = $version.'#'.$filename;
- $versions[$key]['cur'] = 0;
- $versions[$key]['version'] = $version;
- $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version);
- $versions[$key]['path'] = $filename;
- $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version));
- $versions[$key]['size'] = $versions_fileview->filesize($filename.'.v'.$version);
-
- // if file with modified date exists, flag it in array as currently enabled version
- ( \md5_file( $ma ) == $local_file_md5 ? $versions[$key]['fileMatch'] = 1 : $versions[$key]['fileMatch'] = 0 );
-
- }
-
- // newest versions first
- $versions = array_reverse( $versions );
-
- foreach( $versions as $key => $value ) {
- // flag the first matched file in array (which will have latest modification date) as current version
- if ( $value['fileMatch'] ) {
- $value['cur'] = 1;
- break;
+ public static function getVersions($uid, $filename) {
+ $versions = array();
+ // fetch for old versions
+ $view = new \OC\Files\View('/' . $uid . '/' . self::VERSIONS_ROOT);
+
+ $pathinfo = pathinfo($filename);
+
+ $files = $view->getDirectoryContent($pathinfo['dirname']);
+
+ $versionedFile = $pathinfo['basename'];
+
+ foreach ($files as $file) {
+ if ($file['type'] === 'file') {
+ $pos = strrpos($file['path'], '.v');
+ $currentFile = substr($file['name'], 0, strrpos($file['name'], '.v'));
+ if ($currentFile === $versionedFile) {
+ $version = substr($file['path'], $pos + 2);
+ $key = $version . '#' . $filename;
+ $versions[$key]['cur'] = 0;
+ $versions[$key]['version'] = $version;
+ $versions[$key]['humanReadableTimestamp'] = self::getHumanReadableTimestamp($version);
+ $versions[$key]['preview'] = \OCP\Util::linkToRoute('core_ajax_versions_preview', array('file' => $filename, 'version' => $version, 'user' => $uid));
+ $versions[$key]['path'] = $filename;
+ $versions[$key]['size'] = $file['size'];
}
}
-
- return( $versions );
-
- } else {
- // if versioning isn't enabled then return an empty array
- return( array() );
}
+ // sort with newest version first
+ krsort($versions);
+
+ return $versions;
}
/**
@@ -366,48 +345,45 @@ class Storage {
* @return array with contains two arrays 'all' which contains all versions sorted by age and 'by_file' which contains all versions sorted by filename
*/
private static function getAllVersions($uid) {
- if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) {
- $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions');
- $versionsRoot = $versions_fileview->getLocalFolder('');
+ $view = new \OC\Files\View('/' . $uid . '/');
+ $dirs = array(self::VERSIONS_ROOT);
- $iterator = new \RecursiveIteratorIterator(
- new \RecursiveDirectoryIterator($versionsRoot),
- \RecursiveIteratorIterator::CHILD_FIRST
- );
+ while (!empty($dirs)) {
+ $dir = array_pop($dirs);
+ $files = $view->getDirectoryContent($dir);
- $versions = array();
-
- foreach ($iterator as $path) {
- if ( preg_match('/^.+\.v(\d+)$/', $path, $match) ) {
- $relpath = substr($path, strlen($versionsRoot)-1);
- $versions[$match[1].'#'.$relpath] = array('path' => $relpath, 'timestamp' => $match[1]);
+ foreach ($files as $file) {
+ if ($file['type'] === 'dir') {
+ array_push($dirs, $file['path']);
+ } else {
+ $versionsBegin = strrpos($file['path'], '.v');
+ $relPathStart = strlen(self::VERSIONS_ROOT);
+ $version = substr($file['path'], $versionsBegin + 2);
+ $relpath = substr($file['path'], $relPathStart, $versionsBegin - $relPathStart);
+ $key = $version . '#' . $relpath;
+ $versions[$key] = array('path' => $relpath, 'timestamp' => $version);
}
}
+ }
- ksort($versions);
-
- $i = 0;
-
- $result = array();
-
- foreach( $versions as $key => $value ) {
- $i++;
- $size = $versions_fileview->filesize($value['path']);
- $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2);
+ ksort($versions);
- $result['all'][$key]['version'] = $value['timestamp'];
- $result['all'][$key]['path'] = $filename;
- $result['all'][$key]['size'] = $size;
+ $result = array();
- $filename = substr($value['path'], 0, -strlen($value['timestamp'])-2);
- $result['by_file'][$filename][$key]['version'] = $value['timestamp'];
- $result['by_file'][$filename][$key]['path'] = $filename;
- $result['by_file'][$filename][$key]['size'] = $size;
+ foreach ($versions as $key => $value) {
+ $size = $view->filesize($value['path']);
+ $filename = $value['path'];
- }
+ $result['all'][$key]['version'] = $value['timestamp'];
+ $result['all'][$key]['path'] = $filename;
+ $result['all'][$key]['size'] = $size;
- return $result;
+ $result['by_file'][$filename][$key]['version'] = $value['timestamp'];
+ $result['by_file'][$filename][$key]['path'] = $filename;
+ $result['by_file'][$filename][$key]['size'] = $size;
}
+
+ return $result;
}
/**
diff --git a/apps/user_ldap/appinfo/update.php b/apps/user_ldap/appinfo/update.php
index 179451dad69..41770cf97b1 100644
--- a/apps/user_ldap/appinfo/update.php
+++ b/apps/user_ldap/appinfo/update.php
@@ -1,20 +1,5 @@
setConnector($connector);
-$groupBE = new \OCA\user_ldap\GROUP_LDAP();
-$groupBE->setConnector($connector);
-
-foreach($objects as $object) {
- $fetchDNSql = '
- SELECT `ldap_dn`, `owncloud_name`, `directory_uuid`
- FROM `*PREFIX*ldap_'.$object.'_mapping`';
- $updateSql = '
- UPDATE `*PREFIX*ldap_'.$object.'_mapping`
- SET `ldap_DN` = ?, `directory_uuid` = ?
- WHERE `ldap_dn` = ?';
-
- $query = OCP\DB::prepare($fetchDNSql);
- $res = $query->execute();
- $DNs = $res->fetchAll();
- $updateQuery = OCP\DB::prepare($updateSql);
- foreach($DNs as $dn) {
- $newDN = escapeDN(mb_strtolower($dn['ldap_dn'], 'UTF-8'));
- if(!empty($dn['directory_uuid'])) {
- $uuid = $dn['directory_uuid'];
- } elseif($object === 'user') {
- $uuid = $userBE->getUUID($newDN);
- //fix home folder to avoid new ones depending on the configuration
- $userBE->getHome($dn['owncloud_name']);
- } else {
- $uuid = $groupBE->getUUID($newDN);
- }
- try {
- $updateQuery->execute(array($newDN, $uuid, $dn['ldap_dn']));
- } catch(Exception $e) {
- \OCP\Util::writeLog('user_ldap',
- 'Could not update '.$object.' '.$dn['ldap_dn'].' in the mappings table. ',
- \OCP\Util::WARN);
- }
-
- }
-}
-
-function escapeDN($dn) {
- $aDN = ldap_explode_dn($dn, false);
- unset($aDN['count']);
- foreach($aDN as $key => $part) {
- $value = substr($part, strpos($part, '=')+1);
- $escapedValue = strtr($value, Array(','=>'\2c', '='=>'\3d', '+'=>'\2b',
- '<'=>'\3c', '>'=>'\3e', ';'=>'\3b', '\\'=>'\5c',
- '"'=>'\22', '#'=>'\23'));
- $part = str_replace($part, $value, $escapedValue);
- }
- $dn = implode(',', $aDN);
-
- return $dn;
-}
-
-
-// SUPPORTED UPGRADE FROM Version 0.3 (ownCloud 4.5) to 0.4 (ownCloud 5)
-
-if(!isset($connector)) {
- $connector = new \OCA\user_ldap\lib\Connection();
+$configPrefixes = OCA\user_ldap\lib\Helper::getServerConfigurationPrefixes(true);
+$ldap = new OCA\user_ldap\lib\LDAP();
+foreach($configPrefixes as $config) {
+ $connection = new OCA\user_ldap\lib\Connection($ldap, $config);
+ $value = \OCP\Config::getAppValue('user_ldap',
+ $config.'ldap_uuid_attribute', 'auto');
+ \OCP\Config::setAppValue('user_ldap',
+ $config.'ldap_uuid_user_attribute', $value);
+ \OCP\Config::setAppValue('user_ldap',
+ $config.'ldap_uuid_group_attribute', $value);
+
+ $value = \OCP\Config::getAppValue('user_ldap',
+ $config.'ldap_expert_uuid_attr', 'auto');
+ \OCP\Config::setAppValue('user_ldap',
+ $config.'ldap_expert_uuid_user_attr', $value);
+ \OCP\Config::setAppValue('user_ldap',
+ $config.'ldap_expert_uuid_group_attr', $value);
}
-//it is required, that connections do have ldap_configuration_active setting stored in the database
-$connector->getConfiguration();
-$connector->saveConfiguration();
-
-// we don't save it anymore, was a well-meant bad idea. Clean up database.
-$query = OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `appid` = ? AND `configkey` = ?');
-$query->execute(array('user_ldap' , 'homedir'));
diff --git a/apps/user_ldap/appinfo/version b/apps/user_ldap/appinfo/version
index 60a2d3e96c8..44bb5d1f743 100644
--- a/apps/user_ldap/appinfo/version
+++ b/apps/user_ldap/appinfo/version
@@ -1 +1 @@
-0.4.0
\ No newline at end of file
+0.4.1
\ No newline at end of file
diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php
index 455ad62d84c..36a06b99da9 100644
--- a/apps/user_ldap/l10n/ca.php
+++ b/apps/user_ldap/l10n/ca.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Atribut nom d'usuari intern:",
"Override UUID detection" => "Sobrescriu la detecció UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits).",
-"UUID Attribute:" => "Atribut UUID:",
"Username-LDAP User Mapping" => "Mapatge d'usuari Nom d'usuari-LDAP",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental.",
"Clear Username-LDAP User Mapping" => "Elimina el mapatge d'usuari Nom d'usuari-LDAP",
diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php
index 9109a8c710a..be84aa2b647 100644
--- a/apps/user_ldap/l10n/cs_CZ.php
+++ b/apps/user_ldap/l10n/cs_CZ.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Atribut interního uživatelského jména:",
"Override UUID detection" => "Nastavit ručně UUID atribut",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP.",
-"UUID Attribute:" => "Atribut UUID:",
"Username-LDAP User Mapping" => "Mapování uživatelských jmen z LDAPu",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi.",
"Clear Username-LDAP User Mapping" => "Zrušit mapování uživatelských jmen LDAPu",
diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php
index cb13275fafa..77f77b71150 100644
--- a/apps/user_ldap/l10n/de.php
+++ b/apps/user_ldap/l10n/de.php
@@ -76,7 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Attribut für interne Benutzernamen:",
"Override UUID detection" => "UUID-Erkennung überschreiben",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.",
-"UUID Attribute:" => "UUID-Attribut:",
+"UUID Attribute for Users:" => "UUID-Attribute für Benutzer:",
+"UUID Attribute for Groups:" => "UUID-Attribute für Gruppen:",
"Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung.",
"Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung",
diff --git a/apps/user_ldap/l10n/de_CH.php b/apps/user_ldap/l10n/de_CH.php
index df9175e73b1..28971ed9e42 100644
--- a/apps/user_ldap/l10n/de_CH.php
+++ b/apps/user_ldap/l10n/de_CH.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:",
"Override UUID detection" => "UUID-Erkennung überschreiben",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.",
-"UUID Attribute:" => "UUID-Attribut:",
"Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.",
"Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung",
diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php
index 677d603ffa0..a2ee5bbd2a6 100644
--- a/apps/user_ldap/l10n/de_DE.php
+++ b/apps/user_ldap/l10n/de_DE.php
@@ -76,7 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:",
"Override UUID detection" => "UUID-Erkennung überschreiben",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus.",
-"UUID Attribute:" => "UUID-Attribut:",
+"UUID Attribute for Users:" => "UUID-Attribute für Benutzer:",
+"UUID Attribute for Groups:" => "UUID-Attribute für Gruppen:",
"Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.",
"Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung",
diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php
index d613be34868..3be8add83ec 100644
--- a/apps/user_ldap/l10n/en_GB.php
+++ b/apps/user_ldap/l10n/en_GB.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Internal Username Attribute:",
"Override UUID detection" => "Override UUID detection",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups.",
-"UUID Attribute:" => "UUID Attribute:",
"Username-LDAP User Mapping" => "Username-LDAP User Mapping",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.",
"Clear Username-LDAP User Mapping" => "Clear Username-LDAP User Mapping",
diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php
index 4f37d5177a7..537ee1e4bd1 100644
--- a/apps/user_ldap/l10n/es.php
+++ b/apps/user_ldap/l10n/es.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Atributo Nombre de usuario Interno:",
"Override UUID detection" => "Sobrescribir la detección UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente.",
-"UUID Attribute:" => "Atributo UUID:",
"Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental.",
"Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP",
diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php
index 2436df8de77..c9ea9184b41 100644
--- a/apps/user_ldap/l10n/es_AR.php
+++ b/apps/user_ldap/l10n/es_AR.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Atributo Nombre Interno de usuario:",
"Override UUID detection" => "Sobrescribir la detección UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP mapeados (agregados).",
-"UUID Attribute:" => "Atributo UUID:",
"Username-LDAP User Mapping" => "Asignación del Nombre de usuario de un usuario LDAP",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental.",
"Clear Username-LDAP User Mapping" => "Borrar la asignación de los Nombres de usuario de los usuarios LDAP",
diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php
index b949fe02041..943ad0bc119 100644
--- a/apps/user_ldap/l10n/et_EE.php
+++ b/apps/user_ldap/l10n/et_EE.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Sisemise kasutajatunnuse atribuut:",
"Override UUID detection" => "Tühista UUID tuvastus",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi.",
-"UUID Attribute:" => "UUID atribuut:",
"Username-LDAP User Mapping" => "LDAP-Kasutajatunnus Kasutaja Vastendus",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas.",
"Clear Username-LDAP User Mapping" => "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus",
diff --git a/apps/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php
index c4db39521dd..89bbe5170b8 100644
--- a/apps/user_ldap/l10n/fa.php
+++ b/apps/user_ldap/l10n/fa.php
@@ -57,7 +57,6 @@ $TRANSLATIONS = array(
"Internal Username" => "نام کاربری داخلی",
"Internal Username Attribute:" => "ویژگی نام کاربری داخلی:",
"Override UUID detection" => "نادیده گرفتن تشخیص UUID ",
-"UUID Attribute:" => "صفت UUID:",
"Username-LDAP User Mapping" => "نام کاربری - نگاشت کاربر LDAP ",
"Clear Username-LDAP User Mapping" => "پاک کردن نام کاربری- LDAP نگاشت کاربر ",
"Clear Groupname-LDAP Group Mapping" => "پاک کردن نام گروه -LDAP گروه نقشه برداری",
diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php
index 8b6027b81e6..e33558a9d2a 100644
--- a/apps/user_ldap/l10n/fr.php
+++ b/apps/user_ldap/l10n/fr.php
@@ -76,7 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Nom d'utilisateur interne:",
"Override UUID detection" => "Surcharger la détection d'UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP.",
-"UUID Attribute:" => "Attribut UUID :",
+"UUID Attribute for Users:" => "Attribut UUID pour les utilisateurs :",
+"UUID Attribute for Groups:" => "Attribut UUID pour les groupes :",
"Username-LDAP User Mapping" => "Association Nom d'utilisateur-Utilisateur LDAP",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation.",
"Clear Username-LDAP User Mapping" => "Supprimer l'association utilisateur interne-utilisateur LDAP",
diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php
index 911e481ca76..0b70984c1ab 100644
--- a/apps/user_ldap/l10n/gl.php
+++ b/apps/user_ldap/l10n/gl.php
@@ -76,7 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Atributo do nome de usuario interno:",
"Override UUID detection" => "Ignorar a detección do UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP.",
-"UUID Attribute:" => "Atributo do UUID:",
+"UUID Attribute for Users:" => "Atributo do UUID para usuarios:",
+"UUID Attribute for Groups:" => "Atributo do UUID para grupos:",
"Username-LDAP User Mapping" => "Asignación do usuario ao «nome de usuario LDAP»",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais.",
"Clear Username-LDAP User Mapping" => "Limpar a asignación do usuario ao «nome de usuario LDAP»",
diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php
index b43dcbc2c87..84f8ca948ef 100644
--- a/apps/user_ldap/l10n/hu_HU.php
+++ b/apps/user_ldap/l10n/hu_HU.php
@@ -75,7 +75,6 @@ $TRANSLATIONS = array(
"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Alapértelmezetten a belső felhasználónév az UUID tulajdonságból jön létre. Ez biztosítja a felhasználónév egyediségét és hogy a nem kell konvertálni a karaktereket benne. A belső felhasználónévnél a megkötés az, hogy csak a következő karakterek engdélyezettek benne: [ a-zA-Z0-9_.@- ]. Ezeken a karaktereken kivül minden karakter le lesz cserélve az adott karakter ASCII kódtáblában használható párjára vagy ha ilyen nincs akkor egyszerűen ki lesz hagyva. Ha így mégis ütköznének a nevek akkor hozzá lesz füzve egy folyamatosan növekvő számláló rész. A belső felhasználónevet lehet használni a felhasználó azonosítására a programon belül. Illetve ez lesz az alapáértelmezett neve a felhasználó kezdő könyvtárának az ownCloud-ban. Illetve...............................",
"Internal Username Attribute:" => "A belső felhasználónév attribútuma:",
"Override UUID detection" => "Az UUID-felismerés felülbírálása",
-"UUID Attribute:" => "UUID attribútum:",
"Username-LDAP User Mapping" => "Felhasználó - LDAP felhasználó hozzárendelés",
"Clear Username-LDAP User Mapping" => "A felhasználó - LDAP felhasználó hozzárendelés törlése",
"Clear Groupname-LDAP Group Mapping" => "A csoport - LDAP csoport hozzárendelés törlése",
diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php
index 4b47846f227..914cc3d32ae 100644
--- a/apps/user_ldap/l10n/it.php
+++ b/apps/user_ldap/l10n/it.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Attributo nome utente interno:",
"Override UUID detection" => "Ignora rilevamento UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti).",
-"UUID Attribute:" => "Attributo UUID:",
"Username-LDAP User Mapping" => "Associazione Nome utente-Utente LDAP",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test.",
"Clear Username-LDAP User Mapping" => "Cancella associazione Nome utente-Utente LDAP",
diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php
index e9ef2165bb3..904a93e1c2e 100644
--- a/apps/user_ldap/l10n/ja_JP.php
+++ b/apps/user_ldap/l10n/ja_JP.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "内部ユーザ名属性:",
"Override UUID detection" => "UUID検出を再定義する",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。",
-"UUID Attribute:" => "UUID属性:",
"Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピング",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。",
"Clear Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピングをクリアする",
diff --git a/apps/user_ldap/l10n/lt_LT.php b/apps/user_ldap/l10n/lt_LT.php
index f0522016825..05edf75e8b9 100644
--- a/apps/user_ldap/l10n/lt_LT.php
+++ b/apps/user_ldap/l10n/lt_LT.php
@@ -47,7 +47,6 @@ $TRANSLATIONS = array(
"Internal Username" => "Vidinis naudotojo vardas",
"Internal Username Attribute:" => "Vidinis naudotojo vardo atributas:",
"Override UUID detection" => "Perrašyti UUID aptikimą",
-"UUID Attribute:" => "UUID atributas:",
"Username-LDAP User Mapping" => "Naudotojo vardo - LDAP naudotojo sąsaja",
"Clear Username-LDAP User Mapping" => "Išvalyti naudotojo vardo - LDAP naudotojo sąsają",
"Clear Groupname-LDAP Group Mapping" => "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają",
diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php
index b56dcf15791..05e3b5f3429 100644
--- a/apps/user_ldap/l10n/nl.php
+++ b/apps/user_ldap/l10n/nl.php
@@ -76,7 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Interne gebruikersnaam attribuut:",
"Override UUID detection" => "Negeren UUID detectie",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen.",
-"UUID Attribute:" => "UUID Attribuut:",
+"UUID Attribute for Users:" => "UUID attribuut voor gebruikers:",
+"UUID Attribute for Groups:" => "UUID attribuut voor groepen:",
"Username-LDAP User Mapping" => "Gebruikersnaam-LDAP gebruikers vertaling",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving.",
"Clear Username-LDAP User Mapping" => "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling",
diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php
index 7801f73dc12..7e11e6cfc73 100644
--- a/apps/user_ldap/l10n/pl.php
+++ b/apps/user_ldap/l10n/pl.php
@@ -66,7 +66,6 @@ $TRANSLATIONS = array(
"Internal Username" => "Wewnętrzna nazwa użytkownika",
"Internal Username Attribute:" => "Wewnętrzny atrybut nazwy uzżytkownika:",
"Override UUID detection" => "Zastąp wykrywanie UUID",
-"UUID Attribute:" => "Atrybuty UUID:",
"Username-LDAP User Mapping" => "Mapowanie użytkownika LDAP",
"Clear Username-LDAP User Mapping" => "Czyść Mapowanie użytkownika LDAP",
"Clear Groupname-LDAP Group Mapping" => "Czyść Mapowanie nazwy grupy LDAP",
diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php
index 9469146d359..0ff145f0a9c 100644
--- a/apps/user_ldap/l10n/pt_BR.php
+++ b/apps/user_ldap/l10n/pt_BR.php
@@ -76,7 +76,8 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Atributo Interno de Nome de Usuário:",
"Override UUID detection" => "Substituir detecção UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados).",
-"UUID Attribute:" => "Atributo UUID:",
+"UUID Attribute for Users:" => "UUID Atributos para Usuários:",
+"UUID Attribute for Groups:" => "UUID Atributos para Grupos:",
"Username-LDAP User Mapping" => "Usuário-LDAP Mapeamento de Usuário",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental.",
"Clear Username-LDAP User Mapping" => "Limpar Mapeamento de Usuário Nome de Usuário-LDAP",
diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php
index b88ad18f0f6..338d68d1dfd 100644
--- a/apps/user_ldap/l10n/pt_PT.php
+++ b/apps/user_ldap/l10n/pt_PT.php
@@ -66,7 +66,6 @@ $TRANSLATIONS = array(
"Internal Username" => "Nome de utilizador interno",
"Internal Username Attribute:" => "Atributo do nome de utilizador interno",
"Override UUID detection" => "Passar a detecção do UUID",
-"UUID Attribute:" => "Atributo UUID:",
"Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP",
"Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP",
"Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP",
diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php
index f1cf51dc51b..a76afa1fe19 100644
--- a/apps/user_ldap/l10n/ru.php
+++ b/apps/user_ldap/l10n/ru.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Аттрибут для внутреннего имени:",
"Override UUID detection" => "Переопределить нахождение UUID",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.",
-"UUID Attribute:" => "Аттрибут для UUID:",
"Username-LDAP User Mapping" => "Соответствия Имя-Пользователь LDAP",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется доменное имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования.",
"Clear Username-LDAP User Mapping" => "Очистить соответствия Имя-Пользователь LDAP",
diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php
index df71a71e933..08b32e75f93 100644
--- a/apps/user_ldap/l10n/sk_SK.php
+++ b/apps/user_ldap/l10n/sk_SK.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Atribút interného používateľského mena:",
"Override UUID detection" => "Prepísať UUID detekciu",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP.",
-"UUID Attribute:" => "UUID atribút:",
"Username-LDAP User Mapping" => "Mapovanie názvov LDAP používateľských mien",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.",
"Clear Username-LDAP User Mapping" => "Zrušiť mapovanie LDAP používateľských mien",
diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php
index 703b643db58..de81b2c8de0 100644
--- a/apps/user_ldap/l10n/sl.php
+++ b/apps/user_ldap/l10n/sl.php
@@ -66,7 +66,6 @@ $TRANSLATIONS = array(
"Internal Username" => "Interno uporabniško ime",
"Internal Username Attribute:" => "Atribut Interno uporabniško ime",
"Override UUID detection" => "Prezri zaznavo UUID",
-"UUID Attribute:" => "Atribut UUID",
"Username-LDAP User Mapping" => "Preslikava uporabniško ime - LDAP-uporabnik",
"Clear Username-LDAP User Mapping" => "Izbriši preslikavo Uporabniškega imena in LDAP-uporabnika",
"Clear Groupname-LDAP Group Mapping" => "Izbriši preslikavo Skupine in LDAP-skupine",
diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php
index 3288438c09b..a5c060c717d 100644
--- a/apps/user_ldap/l10n/sv.php
+++ b/apps/user_ldap/l10n/sv.php
@@ -76,7 +76,6 @@ $TRANSLATIONS = array(
"Internal Username Attribute:" => "Internt Användarnamn Attribut:",
"Override UUID detection" => "Åsidosätt UUID detektion",
"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper.",
-"UUID Attribute:" => "UUID Attribut:",
"Username-LDAP User Mapping" => "Användarnamn-LDAP User Mapping",
"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!",
"Clear Username-LDAP User Mapping" => "Rensa Användarnamn-LDAP User Mapping",
diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php
index c30cb421505..e59b91a0e90 100644
--- a/apps/user_ldap/l10n/zh_CN.php
+++ b/apps/user_ldap/l10n/zh_CN.php
@@ -66,7 +66,6 @@ $TRANSLATIONS = array(
"Internal Username" => "内部用户名",
"Internal Username Attribute:" => "内部用户名属性:",
"Override UUID detection" => "超越UUID检测",
-"UUID Attribute:" => "UUID属性:",
"Username-LDAP User Mapping" => "用户名-LDAP用户映射",
"Clear Username-LDAP User Mapping" => "清除用户-LDAP用户映射",
"Clear Groupname-LDAP Group Mapping" => "清除组用户-LDAP级映射",
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php
index fdf9c24612d..f75a78bcb0b 100644
--- a/apps/user_ldap/lib/access.php
+++ b/apps/user_ldap/lib/access.php
@@ -288,7 +288,7 @@ class Access extends LDAPUtility {
}
//second try: get the UUID and check if it is known. Then, update the DN and return the name.
- $uuid = $this->getUUID($dn);
+ $uuid = $this->getUUID($dn, $isUser);
if($uuid) {
$query = \OCP\DB::prepare('
SELECT `owncloud_name`
@@ -580,7 +580,9 @@ class Access extends LDAPUtility {
');
//feed the DB
- $insRows = $insert->execute(array($dn, $ocname, $this->getUUID($dn), $dn, $ocname));
+ $insRows = $insert->execute(array($dn, $ocname,
+ $this->getUUID($dn, $isUser), $dn,
+ $ocname));
if(\OCP\DB::isError($insRows)) {
return false;
@@ -905,55 +907,67 @@ class Access extends LDAPUtility {
* @param $force the detection should be run, even if it is not set to auto
* @returns true on success, false otherwise
*/
- private function detectUuidAttribute($dn, $force = false) {
- if(($this->connection->ldapUuidAttribute !== 'auto') && !$force) {
+ private function detectUuidAttribute($dn, $isUser = true, $force = false) {
+ if($isUser) {
+ $uuidAttr = 'ldapUuidUserAttribute';
+ $uuidOverride = $this->connection->ldapExpertUUIDUserAttr;
+ } else {
+ $uuidAttr = 'ldapUuidGroupAttribute';
+ $uuidOverride = $this->connection->ldapExpertUUIDGroupAttr;
+ }
+
+ if(($this->connection->$uuidAttr !== 'auto') && !$force) {
return true;
}
- $fixedAttribute = $this->connection->ldapExpertUUIDAttr;
- if(!empty($fixedAttribute)) {
- $this->connection->ldapUuidAttribute = $fixedAttribute;
+ if(!empty($uuidOverride) && !$force) {
+ $this->connection->$uuidAttr = $uuidOverride;
return true;
}
- //for now, supported (known) attributes are entryUUID, nsuniqueid, objectGUID
+ //for now, supported attributes are entryUUID, nsuniqueid, objectGUID
$testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid');
foreach($testAttributes as $attribute) {
- \OCP\Util::writeLog('user_ldap', 'Testing '.$attribute.' as UUID attr', \OCP\Util::DEBUG);
-
$value = $this->readAttribute($dn, $attribute);
if(is_array($value) && isset($value[0]) && !empty($value[0])) {
- \OCP\Util::writeLog('user_ldap', 'Setting '.$attribute.' as UUID attr', \OCP\Util::DEBUG);
- $this->connection->ldapUuidAttribute = $attribute;
+ \OCP\Util::writeLog('user_ldap',
+ 'Setting '.$attribute.' as '.$uuidAttr,
+ \OCP\Util::DEBUG);
+ $this->connection->$uuidAttr = $attribute;
return true;
}
- \OCP\Util::writeLog('user_ldap',
- 'The looked for uuid attr is not '.$attribute.', result was '.print_r($value, true),
- \OCP\Util::DEBUG);
}
+ \OCP\Util::writeLog('user_ldap',
+ 'Could not autodetect the UUID attribute',
+ \OCP\Util::ERROR);
return false;
}
- public function getUUID($dn) {
- if($this->detectUuidAttribute($dn)) {
- \OCP\Util::writeLog('user_ldap',
- 'UUID Checking \ UUID for '.$dn.' using '. $this->connection->ldapUuidAttribute,
- \OCP\Util::DEBUG);
- $uuid = $this->readAttribute($dn, $this->connection->ldapUuidAttribute);
- if(!is_array($uuid) && $this->connection->ldapOverrideUuidAttribute) {
- $this->detectUuidAttribute($dn, true);
- $uuid = $this->readAttribute($dn, $this->connection->ldapUuidAttribute);
+ public function getUUID($dn, $isUser = true) {
+ if($isUser) {
+ $uuidAttr = 'ldapUuidUserAttribute';
+ $uuidOverride = $this->connection->ldapExpertUUIDUserAttr;
+ } else {
+ $uuidAttr = 'ldapUuidGroupAttribute';
+ $uuidOverride = $this->connection->ldapExpertUUIDGroupAttr;
+ }
+
+ $uuid = false;
+ if($this->detectUuidAttribute($dn, $isUser)) {
+ $uuid = $this->readAttribute($dn, $this->connection->$uuidAttr);
+ if( !is_array($uuid)
+ && !empty($uuidOverride)
+ && $this->detectUuidAttribute($dn, $isUser, true)) {
+ $uuid = $this->readAttribute($dn,
+ $this->connection->$uuidAttr);
}
if(is_array($uuid) && isset($uuid[0]) && !empty($uuid[0])) {
$uuid = $uuid[0];
- } else {
- $uuid = false;
}
- } else {
- $uuid = false;
}
+
return $uuid;
}
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php
index a53022c27b3..93efdb4c9cb 100644
--- a/apps/user_ldap/lib/connection.php
+++ b/apps/user_ldap/lib/connection.php
@@ -60,7 +60,8 @@ class Connection extends LDAPUtility {
'ldapQuotaDefault' => null,
'ldapEmailAttribute' => null,
'ldapCacheTTL' => null,
- 'ldapUuidAttribute' => 'auto',
+ 'ldapUuidUserAttribute' => 'auto',
+ 'ldapUuidGroupAttribute' => 'auto',
'ldapOverrideUuidAttribute' => null,
'ldapOverrideMainServer' => false,
'ldapConfigurationActive' => false,
@@ -69,7 +70,8 @@ class Connection extends LDAPUtility {
'homeFolderNamingRule' => null,
'hasPagedResultSupport' => false,
'ldapExpertUsernameAttr' => null,
- 'ldapExpertUUIDAttr' => null,
+ 'ldapExpertUUIDUserAttr' => null,
+ 'ldapExpertUUIDGroupAttr' => null,
);
/**
@@ -120,11 +122,11 @@ class Connection extends LDAPUtility {
public function __set($name, $value) {
$changed = false;
//only few options are writable
- if($name === 'ldapUuidAttribute') {
- \OCP\Util::writeLog('user_ldap', 'Set config ldapUuidAttribute to '.$value, \OCP\Util::DEBUG);
+ if($name === 'ldapUuidUserAttribute' || $name === 'ldapUuidGroupAttribute') {
+ \OCP\Util::writeLog('user_ldap', 'Set config '.$name.' to '.$value, \OCP\Util::DEBUG);
$this->config[$name] = $value;
if(!empty($this->configID)) {
- \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', $value);
+ \OCP\Config::setAppValue($this->configID, $this->configPrefix.$name, $value);
}
$changed = true;
}
@@ -285,8 +287,10 @@ class Connection extends LDAPUtility {
$this->config['ldapIgnoreNamingRules']
= \OCP\Config::getSystemValue('ldapIgnoreNamingRules', false);
$this->config['ldapCacheTTL'] = $this->$v('ldap_cache_ttl');
- $this->config['ldapUuidAttribute']
- = $this->$v('ldap_uuid_attribute');
+ $this->config['ldapUuidUserAttribute']
+ = $this->$v('ldap_uuid_user_attribute');
+ $this->config['ldapUuidGroupAttribute']
+ = $this->$v('ldap_uuid_group_attribute');
$this->config['ldapOverrideUuidAttribute']
= $this->$v('ldap_override_uuid_attribute');
$this->config['homeFolderNamingRule']
@@ -299,8 +303,10 @@ class Connection extends LDAPUtility {
= preg_split('/\r\n|\r|\n/', $this->$v('ldap_attributes_for_group_search'));
$this->config['ldapExpertUsernameAttr']
= $this->$v('ldap_expert_username_attr');
- $this->config['ldapExpertUUIDAttr']
- = $this->$v('ldap_expert_uuid_attr');
+ $this->config['ldapExpertUUIDUserAttr']
+ = $this->$v('ldap_expert_uuid_user_attr');
+ $this->config['ldapExpertUUIDGroupAttr']
+ = $this->$v('ldap_expert_uuid_group_attr');
$this->configured = $this->validateConfiguration();
}
@@ -339,7 +345,8 @@ class Connection extends LDAPUtility {
'ldap_attributes_for_user_search' => 'ldapAttributesForUserSearch',
'ldap_attributes_for_group_search' => 'ldapAttributesForGroupSearch',
'ldap_expert_username_attr' => 'ldapExpertUsernameAttr',
- 'ldap_expert_uuid_attr' => 'ldapExpertUUIDAttr',
+ 'ldap_expert_uuid_user_attr' => 'ldapExpertUUIDUserAttr',
+ 'ldap_expert_uuid_group_attr' => 'ldapExpertUUIDGroupAttr',
);
return $array;
}
@@ -413,7 +420,8 @@ class Connection extends LDAPUtility {
break;
case 'ldapIgnoreNamingRules':
case 'ldapOverrideUuidAttribute':
- case 'ldapUuidAttribute':
+ case 'ldapUuidUserAttribute':
+ case 'ldapUuidGroupAttribute':
case 'hasPagedResultSupport':
continue 2;
}
@@ -476,13 +484,23 @@ class Connection extends LDAPUtility {
}
$uuidAttributes = array(
'auto', 'entryuuid', 'nsuniqueid', 'objectguid', 'guid');
- if(!in_array($this->config['ldapUuidAttribute'], $uuidAttributes)
- && (!is_null($this->configID))) {
- \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', 'auto');
- \OCP\Util::writeLog('user_ldap',
- 'Illegal value for the UUID Attribute, reset to autodetect.',
- \OCP\Util::INFO);
+ $uuidSettings = array(
+ 'ldapUuidUserAttribute' => 'ldapExpertUUIDUserAttr',
+ 'ldapUuidGroupAttribute' => 'ldapExpertUUIDGroupAttr');
+ $cta = array_flip($this->getConfigTranslationArray());
+ foreach($uuidSettings as $defaultKey => $overrideKey) {
+ if( !in_array($this->config[$defaultKey], $uuidAttributes)
+ && is_null($this->config[$overrideKey])
+ && !is_null($this->configID)) {
+ \OCP\Config::setAppValue($this->configID,
+ $this->configPrefix.$cta[$defaultKey],
+ 'auto');
+ \OCP\Util::writeLog('user_ldap',
+ 'Illegal value for'.$defaultKey.', reset to autodetect.',
+ \OCP\Util::DEBUG);
+ }
}
+
if(empty($this->config['ldapBackupPort'])) {
//force default
$this->config['ldapBackupPort'] = $this->config['ldapPort'];
@@ -502,8 +520,6 @@ class Connection extends LDAPUtility {
\OCP\Util::INFO);
}
-
-
//second step: critical checks. If left empty or filled wrong, set as unconfigured and give a warning.
$configurationOK = true;
if(empty($this->config['ldapHost'])) {
@@ -552,8 +568,11 @@ class Connection extends LDAPUtility {
$configurationOK = false;
}
- if(!empty($this->config['ldapExpertUUIDAttr'])) {
- $this->config['ldapUuidAttribute'] = $this->config['ldapExpertUUIDAttr'];
+ if(!empty($this->config['ldapExpertUUIDUserAttr'])) {
+ $this->config['ldapUuidUserAttribute'] = $this->config['ldapExpertUUIDUserAttr'];
+ }
+ if(!empty($this->config['ldapExpertUUIDGroupAttr'])) {
+ $this->config['ldapUuidGroupAttribute'] = $this->config['ldapExpertUUIDGroupAttr'];
}
return $configurationOK;
@@ -587,15 +606,17 @@ class Connection extends LDAPUtility {
'ldap_email_attr' => '',
'ldap_group_member_assoc_attribute' => 'uniqueMember',
'ldap_cache_ttl' => 600,
- 'ldap_uuid_attribute' => 'auto',
+ 'ldap_uuid_user_attribute' => 'auto',
+ 'ldap_uuid_group_attribute' => 'auto',
'ldap_override_uuid_attribute' => 0,
'home_folder_naming_rule' => '',
'ldap_turn_off_cert_check' => 0,
'ldap_configuration_active' => 1,
'ldap_attributes_for_user_search' => '',
'ldap_attributes_for_group_search' => '',
- 'ldap_expert_username_attr' => '',
- 'ldap_expert_uuid_attr' => '',
+ 'ldap_expert_username_attr' => '',
+ 'ldap_expert_uuid_user_attr' => '',
+ 'ldap_expert_uuid_group_attr' => '',
);
}
diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php
index b7070f23183..f20bc191183 100644
--- a/apps/user_ldap/settings.php
+++ b/apps/user_ldap/settings.php
@@ -25,18 +25,6 @@
OC_Util::checkAdminUser();
-$params = array('ldap_host', 'ldap_port', 'ldap_backup_host',
- 'ldap_backup_port', 'ldap_override_main_server', 'ldap_dn',
- 'ldap_agent_password', 'ldap_base', 'ldap_base_users',
- 'ldap_base_groups', 'ldap_userlist_filter',
- 'ldap_login_filter', 'ldap_group_filter', 'ldap_display_name',
- 'ldap_group_display_name', 'ldap_tls',
- 'ldap_turn_off_cert_check', 'ldap_nocase', 'ldap_quota_def',
- 'ldap_quota_attr', 'ldap_email_attr',
- 'ldap_group_member_assoc_attribute', 'ldap_cache_ttl',
- 'home_folder_naming_rule'
- );
-
OCP\Util::addscript('user_ldap', 'settings');
OCP\Util::addstyle('user_ldap', 'settings');
diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php
index e214d57fb1d..319dc38a62d 100644
--- a/apps/user_ldap/templates/settings.php
+++ b/apps/user_ldap/templates/settings.php
@@ -100,7 +100,8 @@
t('Override UUID detection'));?>
t('By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups.'));?>
-
+
+
t('Username-LDAP User Mapping'));?>
t('Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.'));?>
diff --git a/apps/user_webdavauth/l10n/mk.php b/apps/user_webdavauth/l10n/mk.php
index 245a5101341..6ebe36423b2 100644
--- a/apps/user_webdavauth/l10n/mk.php
+++ b/apps/user_webdavauth/l10n/mk.php
@@ -1,3 +1,5 @@
- "URL: http://"
+ "Адреса:"
);
+$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;";
diff --git a/config/config.sample.php b/config/config.sample.php
index 29085af4716..9a24c9364e0 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -141,10 +141,16 @@ $CONFIG = array(
/* date format to be used while writing to the owncloud logfile */
'logdateformat' => 'F d, Y H:i:s',
+/* timezone used while writing to the owncloud logfile (default: UTC) */
+'logtimezone' => 'Europe/Berlin',
+
/* Append all database queries and parameters to the log file.
(watch out, this option can increase the size of your log file)*/
"log_query" => false,
+/* Enable or disable the logging of IP addresses in case of webform auth failures */
+"log_authfailip" => false,
+
/*
* Configure the size in bytes log rotation should happen, 0 or false disables the rotation.
* This rotates the current owncloud logfile to a new name, this way the total log usage
diff --git a/core/ajax/share.php b/core/ajax/share.php
index 1166ea3198a..dbad8f2e971 100644
--- a/core/ajax/share.php
+++ b/core/ajax/share.php
@@ -293,7 +293,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
while ($count < 15 && count($users) == $limit) {
$limit = 15 - $count;
if ($sharePolicy == 'groups_only') {
- $users = OC_Group::DisplayNamesInGroups($groups, $_GET['search'], $limit, $offset);
+ $users = OC_Group::DisplayNamesInGroups($usergroups, $_GET['search'], $limit, $offset);
} else {
$users = OC_User::getDisplayNames($_GET['search'], $limit, $offset);
}
diff --git a/core/ajax/vcategories/add.php b/core/ajax/vcategories/add.php
deleted file mode 100644
index 16a1461be08..00000000000
--- a/core/ajax/vcategories/add.php
+++ /dev/null
@@ -1,42 +0,0 @@
-
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-function bailOut($msg) {
- OC_JSON::error(array('data' => array('message' => $msg)));
- OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG);
- exit();
-}
-function debug($msg) {
- OC_Log::write('core', 'ajax/vcategories/add.php: '.$msg, OC_Log::DEBUG);
-}
-
-OCP\JSON::checkLoggedIn();
-OCP\JSON::callCheck();
-
-$l = OC_L10N::get('core');
-
-$category = isset($_POST['category']) ? strip_tags($_POST['category']) : null;
-$type = isset($_POST['type']) ? $_POST['type'] : null;
-
-if(is_null($type)) {
- bailOut($l->t('Category type not provided.'));
-}
-
-if(is_null($category)) {
- bailOut($l->t('No category to add?'));
-}
-
-debug(print_r($category, true));
-
-$categories = new OC_VCategories($type);
-if($categories->hasCategory($category)) {
- bailOut($l->t('This category already exists: %s', array($category)));
-} else {
- $categories->add($category, true);
-}
-
-OC_JSON::success(array('data' => array('categories'=>$categories->categories())));
diff --git a/core/ajax/vcategories/addToFavorites.php b/core/ajax/vcategories/addToFavorites.php
deleted file mode 100644
index 52f62d5fc6b..00000000000
--- a/core/ajax/vcategories/addToFavorites.php
+++ /dev/null
@@ -1,38 +0,0 @@
-
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-function bailOut($msg) {
- OC_JSON::error(array('data' => array('message' => $msg)));
- OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG);
- exit();
-}
-function debug($msg) {
- OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG);
-}
-
-OCP\JSON::checkLoggedIn();
-OCP\JSON::callCheck();
-
-$l = OC_L10N::get('core');
-
-$id = isset($_POST['id']) ? strip_tags($_POST['id']) : null;
-$type = isset($_POST['type']) ? $_POST['type'] : null;
-
-if(is_null($type)) {
- bailOut($l->t('Object type not provided.'));
-}
-
-if(is_null($id)) {
- bailOut($l->t('%s ID not provided.', $type));
-}
-
-$categories = new OC_VCategories($type);
-if(!$categories->addToFavorites($id, $type)) {
- bailOut($l->t('Error adding %s to favorites.', $id));
-}
-
-OC_JSON::success();
diff --git a/core/ajax/vcategories/delete.php b/core/ajax/vcategories/delete.php
deleted file mode 100644
index dfec3785743..00000000000
--- a/core/ajax/vcategories/delete.php
+++ /dev/null
@@ -1,40 +0,0 @@
-
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-function bailOut($msg) {
- OC_JSON::error(array('data' => array('message' => $msg)));
- OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG);
- exit();
-}
-function debug($msg) {
- OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG);
-}
-
-OCP\JSON::checkLoggedIn();
-OCP\JSON::callCheck();
-
-$l = OC_L10N::get('core');
-
-$type = isset($_POST['type']) ? $_POST['type'] : null;
-$categories = isset($_POST['categories']) ? $_POST['categories'] : null;
-
-if(is_null($type)) {
- bailOut($l->t('Object type not provided.'));
-}
-
-debug('The application using category type "'
- . $type
- . '" uses the default file for deletion. OC_VObjects will not be updated.');
-
-if(is_null($categories)) {
- bailOut($l->t('No categories selected for deletion.'));
-}
-
-$vcategories = new OC_VCategories($type);
-$vcategories->delete($categories);
-OC_JSON::success(array('data' => array('categories'=>$vcategories->categories())));
diff --git a/core/ajax/vcategories/edit.php b/core/ajax/vcategories/edit.php
deleted file mode 100644
index 0387b17576c..00000000000
--- a/core/ajax/vcategories/edit.php
+++ /dev/null
@@ -1,34 +0,0 @@
-
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-function bailOut($msg) {
- OC_JSON::error(array('data' => array('message' => $msg)));
- OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG);
- exit();
-}
-function debug($msg) {
- OC_Log::write('core', 'ajax/vcategories/edit.php: '.$msg, OC_Log::DEBUG);
-}
-
-OC_JSON::checkLoggedIn();
-
-$l = OC_L10N::get('core');
-
-$type = isset($_GET['type']) ? $_GET['type'] : null;
-
-if(is_null($type)) {
- bailOut($l->t('Category type not provided.'));
-}
-
-$tmpl = new OCP\Template("core", "edit_categories_dialog");
-
-$vcategories = new OC_VCategories($type);
-$categories = $vcategories->categories();
-debug(print_r($categories, true));
-$tmpl->assign('categories', $categories);
-$tmpl->printpage();
diff --git a/core/ajax/vcategories/favorites.php b/core/ajax/vcategories/favorites.php
deleted file mode 100644
index db4244d601a..00000000000
--- a/core/ajax/vcategories/favorites.php
+++ /dev/null
@@ -1,30 +0,0 @@
-
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-function bailOut($msg) {
- OC_JSON::error(array('data' => array('message' => $msg)));
- OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG);
- exit();
-}
-function debug($msg) {
- OC_Log::write('core', 'ajax/vcategories/addToFavorites.php: '.$msg, OC_Log::DEBUG);
-}
-
-OCP\JSON::checkLoggedIn();
-OCP\JSON::callCheck();
-
-$type = isset($_GET['type']) ? $_GET['type'] : null;
-
-if(is_null($type)) {
- $l = OC_L10N::get('core');
- bailOut($l->t('Object type not provided.'));
-}
-
-$categories = new OC_VCategories($type);
-$ids = $categories->getFavorites($type);
-
-OC_JSON::success(array('ids' => $ids));
diff --git a/core/ajax/vcategories/removeFromFavorites.php b/core/ajax/vcategories/removeFromFavorites.php
deleted file mode 100644
index 78a528caa86..00000000000
--- a/core/ajax/vcategories/removeFromFavorites.php
+++ /dev/null
@@ -1,38 +0,0 @@
-
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-function bailOut($msg) {
- OC_JSON::error(array('data' => array('message' => $msg)));
- OC_Log::write('core', 'ajax/vcategories/removeFromFavorites.php: '.$msg, OC_Log::DEBUG);
- exit();
-}
-function debug($msg) {
- OC_Log::write('core', 'ajax/vcategories/removeFromFavorites.php: '.$msg, OC_Log::DEBUG);
-}
-
-OCP\JSON::checkLoggedIn();
-OCP\JSON::callCheck();
-
-$l = OC_L10N::get('core');
-
-$id = isset($_POST['id']) ? strip_tags($_POST['id']) : null;
-$type = isset($_POST['type']) ? $_POST['type'] : null;
-
-if(is_null($type)) {
- bailOut($l->t('Object type not provided.'));
-}
-
-if(is_null($id)) {
- bailOut($l->t('%s ID not provided.', array($type)));
-}
-
-$categories = new OC_VCategories($type);
-if(!$categories->removeFromFavorites($id, $type)) {
- bailOut($l->t('Error removing %s from favorites.', array($id)));
-}
-
-OC_JSON::success();
diff --git a/core/css/apps.css b/core/css/apps.css
index 49fb189f384..f68f53d6999 100644
--- a/core/css/apps.css
+++ b/core/css/apps.css
@@ -104,8 +104,8 @@
padding-left: 32px;
}
#app-navigation > .with-icon ul li > a {
- padding-left: 48px;
- background-position: 24px center;
+ padding-left: 68px;
+ background-position: 44px center;
}
#app-navigation .open {
diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css
index aa72eaf8474..236968e3245 100644
--- a/core/css/jquery.ocdialog.css
+++ b/core/css/jquery.ocdialog.css
@@ -29,6 +29,7 @@
bottom: 0;
display: block;
margin-top: 10px;
+ width: 100%;
}
.oc-dialog-close {
diff --git a/core/css/styles.css b/core/css/styles.css
index 6406bcd7e63..b919660779e 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -237,6 +237,7 @@ input[type="submit"].enabled {
#body-login p.info,
#body-login form fieldset legend,
#body-login #datadirContent label,
+#body-login form fieldset .warning-info,
#body-login form input[type="checkbox"]+label {
text-align: center;
color: #ccc;
@@ -253,6 +254,8 @@ input[type="submit"].enabled {
}
#body-login p.info a {
font-weight: bold;
+ padding: 13px;
+ margin: -13px;
}
#body-login #submit.login { margin-right:7px; } /* quick fix for log in button not being aligned with input fields, should be properly fixed by input field width later */
@@ -431,7 +434,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
padding: 10px;
color: #d2322d;
background-color: rgba(0,0,0,.3);
- text-align: center;
+ text-align: left;
border-radius: 3px;
cursor: default;
}
@@ -466,7 +469,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
}
#body-login .warning {
margin: 0 7px 5px;
- font-weight: bold;
}
#body-login .warning legend {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
@@ -746,20 +748,27 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin
span.ui-icon {float: left; margin: 3px 7px 30px 0;}
.loading { background: url('../img/loading.gif') no-repeat center; cursor: wait; }
+.loading-small { background: url('../img/loading-small.gif') no-repeat center; cursor: wait; }
.move2trash { /* decrease spinner size */
width: 16px;
height: 16px;
}
-
-/* ---- CATEGORIES ---- */
-#categoryform .scrollarea { position:absolute; left:10px; top:10px; right:10px; bottom:50px; overflow:auto; border:1px solid #ddd; background:#f8f8f8; }
-#categoryform .bottombuttons { position:absolute; bottom:10px;}
-#categoryform .bottombuttons * { float:left;}
-/*#categorylist { border:1px solid #ddd;}*/
-#categorylist li { background:#f8f8f8; padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; }
-#categorylist li:hover, #categorylist li:active { background:#eee; }
-#category_addinput { width:10em; }
+/* ---- TAGS ---- */
+#tagsdialog .content {
+ width: 100%; height: 280px;
+}
+#tagsdialog .scrollarea {
+ overflow:auto; border:1px solid #ddd;
+ width: 100%; height: 240px;
+}
+#tagsdialog .bottombuttons {
+ width: 100%; height: 30px;
+}
+#tagsdialog .bottombuttons * { float:left;}
+#tagsdialog .taglist li { background:#f8f8f8; padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; }
+#tagsdialog .taglist li:hover, #tagsdialog .taglist li:active { background:#eee; }
+#tagsdialog .addinput { width: 90%; clear: both; }
/* ---- APP SETTINGS ---- */
.popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:100; }
diff --git a/core/img/actions/confirm.png b/core/img/actions/confirm.png
new file mode 100644
index 00000000000..3021d4c27d6
Binary files /dev/null and b/core/img/actions/confirm.png differ
diff --git a/core/img/actions/confirm.svg b/core/img/actions/confirm.svg
new file mode 100644
index 00000000000..6b69c1d6c4f
--- /dev/null
+++ b/core/img/actions/confirm.svg
@@ -0,0 +1,6 @@
+
+
diff --git a/core/img/loading-small.gif b/core/img/loading-small.gif
new file mode 100644
index 00000000000..5025f0bedeb
Binary files /dev/null and b/core/img/loading-small.gif differ
diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js
deleted file mode 100644
index c297a24680d..00000000000
--- a/core/js/oc-vcategories.js
+++ /dev/null
@@ -1,216 +0,0 @@
-var OCCategories= {
- category_favorites:'_$!!$_',
- edit:function(type, cb) {
- if(!type && !this.type) {
- throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') };
- }
- type = type ? type : this.type;
- $('body').append('');
- $('#category_dialog').load(
- OC.filePath('core', 'ajax', 'vcategories/edit.php') + '?type=' + type, function(response) {
- try {
- var jsondata = jQuery.parseJSON(response);
- if(response.status == 'error') {
- OC.dialogs.alert(response.data.message, t('core', 'Error'));
- return;
- }
- } catch(e) {
- var setEnabled = function(d, enable) {
- if(enable) {
- d.css('cursor', 'default').find('input,button:not(#category_addbutton)')
- .prop('disabled', false).css('cursor', 'default');
- } else {
- d.css('cursor', 'wait').find('input,button:not(#category_addbutton)')
- .prop('disabled', true).css('cursor', 'wait');
- }
- };
- var dlg = $('#edit_categories_dialog').dialog({
- modal: true,
- height: 350, minHeight:200, width: 250, minWidth: 200,
- buttons: {
- 'Close': function() {
- $(this).dialog('close');
- },
- 'Delete':function() {
- var categories = $('#categorylist').find('input:checkbox').serialize();
- setEnabled(dlg, false);
- OCCategories.doDelete(categories, function() {
- setEnabled(dlg, true);
- });
- },
- 'Rescan':function() {
- setEnabled(dlg, false);
- OCCategories.rescan(function() {
- setEnabled(dlg, true);
- });
- }
- },
- close : function(event, ui) {
- $(this).dialog('destroy').remove();
- $('#category_dialog').remove();
- },
- open : function(event, ui) {
- $('#category_addinput').on('input',function() {
- if($(this).val().length > 0) {
- $('#category_addbutton').removeAttr('disabled');
- }
- });
- $('#categoryform').submit(function() {
- OCCategories.add($('#category_addinput').val());
- $('#category_addinput').val('');
- $('#category_addbutton').attr('disabled', 'disabled');
- return false;
- });
- $('#category_addbutton').on('click',function(e) {
- e.preventDefault();
- if($('#category_addinput').val().length > 0) {
- OCCategories.add($('#category_addinput').val());
- $('#category_addinput').val('');
- }
- });
- }
- });
- }
- });
- },
- _processDeleteResult:function(jsondata) {
- if(jsondata.status == 'success') {
- OCCategories._update(jsondata.data.categories);
- } else {
- OC.dialogs.alert(jsondata.data.message, t('core', 'Error'));
- }
- },
- favorites:function(type, cb) {
- if(!type && !this.type) {
- throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') };
- }
- type = type ? type : this.type;
- $.getJSON(OC.filePath('core', 'ajax', 'categories/favorites.php'), {type: type},function(jsondata) {
- if(typeof cb == 'function') {
- cb(jsondata);
- } else {
- if(jsondata.status === 'success') {
- OCCategories._update(jsondata.data.categories);
- } else {
- OC.dialogs.alert(jsondata.data.message, t('core', 'Error'));
- }
- }
- });
- },
- addToFavorites:function(id, type, cb) {
- if(!type && !this.type) {
- throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') };
- }
- type = type ? type : this.type;
- $.post(OC.filePath('core', 'ajax', 'vcategories/addToFavorites.php'), {id:id, type:type}, function(jsondata) {
- if(typeof cb == 'function') {
- cb(jsondata);
- } else {
- if(jsondata.status !== 'success') {
- OC.dialogs.alert(jsondata.data.message, t('core', 'Error'));
- }
- }
- });
- },
- removeFromFavorites:function(id, type, cb) {
- if(!type && !this.type) {
- throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') };
- }
- type = type ? type : this.type;
- $.post(OC.filePath('core', 'ajax', 'vcategories/removeFromFavorites.php'), {id:id, type:type}, function(jsondata) {
- if(typeof cb == 'function') {
- cb(jsondata);
- } else {
- if(jsondata.status !== 'success') {
- OC.dialogs.alert(jsondata.data.message, t('core', 'Error'));
- }
- }
- });
- },
- doDelete:function(categories, type, cb) {
- if(!type && !this.type) {
- throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') };
- }
- type = type ? type : this.type;
- if(categories == '' || categories == undefined) {
- OC.dialogs.alert(t('core', 'No categories selected for deletion.'), t('core', 'Error'));
- return false;
- }
- var self = this;
- var q = categories + '&type=' + type;
- if(this.app) {
- q += '&app=' + this.app;
- $.post(OC.filePath(this.app, 'ajax', 'categories/delete.php'), q, function(jsondata) {
- if(typeof cb == 'function') {
- cb(jsondata);
- } else {
- self._processDeleteResult(jsondata);
- }
- });
- } else {
- $.post(OC.filePath('core', 'ajax', 'vcategories/delete.php'), q, function(jsondata) {
- if(typeof cb == 'function') {
- cb(jsondata);
- } else {
- self._processDeleteResult(jsondata);
- }
- });
- }
- },
- add:function(category, type, cb) {
- if(!type && !this.type) {
- throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') };
- }
- type = type ? type : this.type;
- $.post(OC.filePath('core', 'ajax', 'vcategories/add.php'),{'category':category, 'type':type},function(jsondata) {
- if(typeof cb == 'function') {
- cb(jsondata);
- } else {
- if(jsondata.status === 'success') {
- OCCategories._update(jsondata.data.categories);
- } else {
- OC.dialogs.alert(jsondata.data.message, t('core', 'Error'));
- }
- }
- });
- },
- rescan:function(app, cb) {
- if(!app && !this.app) {
- throw { name: 'MissingParameter', message: t('core', 'The app name is not specified.') };
- }
- app = app ? app : this.app;
- $.getJSON(OC.filePath(app, 'ajax', 'categories/rescan.php'),function(jsondata, status, xhr) {
- if(typeof cb == 'function') {
- cb(jsondata);
- } else {
- if(jsondata.status === 'success') {
- OCCategories._update(jsondata.data.categories);
- } else {
- OC.dialogs.alert(jsondata.data.message, t('core', 'Error'));
- }
- }
- }).error(function(xhr){
- if (xhr.status == 404) {
- var errormessage = t('core', 'The required file {file} is not installed!',
- {file: OC.filePath(app, 'ajax', 'categories/rescan.php')}, t('core', 'Error'));
- if(typeof cb == 'function') {
- cb({status:'error', data:{message:errormessage}});
- } else {
- OC.dialogs.alert(errormessage, t('core', 'Error'));
- }
- }
- });
- },
- _update:function(categories) {
- var categorylist = $('#categorylist');
- categorylist.find('li').remove();
- for(var category in categories) {
- var item = '
' + categories[category] + '
';
- $(item).appendTo(categorylist);
- }
- if(typeof OCCategories.changed === 'function') {
- OCCategories.changed(categories);
- }
- }
-}
-
diff --git a/core/js/oc-vcategories.txt b/core/js/oc-vcategories.txt
deleted file mode 100644
index 31216f80bd3..00000000000
--- a/core/js/oc-vcategories.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-Using OCCategories
-
-This 'class' is meant for any apps that uses OC_VObjects with the CATEGORIES field e.g.
-Contacts and Calendar. It provides an editor UI for adding/deleting and rescanning categories
-and basic ajax functions for adding and deleting.
-To use the mass updating of OC_VObjects that /lib/vcategories.php provides, the app must implement
-its own ajax functions in /apps/$(APP)/ajax/categories/rescan.php and /apps/$(APP)/ajax/categories/delete.php
-See examples in /apps/contacts/ajax/categories and the inline docs in /lib/vcategories.php.
-
-In your app make sure you load the script and stylesheet:
-
-OC_Util::addScript('','oc-vcategories');
-OC_Util::addStyle('','oc-vcategories');
-
-Set the app specific values in your javascript file. This is what I've used for the Contacts app:
-
- OCCategories.app = 'contacts';
- OCCategories.changed = Contacts.UI.Card.categoriesChanged;
-
-If OCCategories.changed is set that function will be called each time the categories have been changed
-in the editor (add/delete/rescan) to allow the app to update the UI accordingly. The only argument to the function
-is an array of the updated categories e.g.:
-
-OCCategories.changed = function(categories) {
- for(var category in categories) {
- console.log(categories[category]);
- }
-}
-
-To show the categories editor call:
-
- OCCategories.edit()
-
diff --git a/core/js/setup.js b/core/js/setup.js
index 62f313fc501..0863be35886 100644
--- a/core/js/setup.js
+++ b/core/js/setup.js
@@ -9,8 +9,7 @@ $(document).ready(function() {
};
$('#selectDbType').buttonset();
- $('#datadirContent').hide(250);
- $('#databaseField').hide(250);
+
if($('#hasSQLite').val()){
$('#use_other_db').hide();
$('#use_oracle_db').hide();
@@ -23,12 +22,7 @@ $(document).ready(function() {
$('#use_oracle_db').slideUp(250);
});
- $('#mysql').click(function() {
- $('#use_other_db').slideDown(250);
- $('#use_oracle_db').slideUp(250);
- });
-
- $('#pgsql').click(function() {
+ $('#mysql,#pgsql,#mssql').click(function() {
$('#use_other_db').slideDown(250);
$('#use_oracle_db').slideUp(250);
});
@@ -38,11 +32,6 @@ $(document).ready(function() {
$('#use_oracle_db').show(250);
});
- $('#mssql').click(function() {
- $('#use_other_db').slideDown(250);
- $('#use_oracle_db').slideUp(250);
- });
-
$('input[checked]').trigger('click');
$('#showAdvanced').click(function() {
@@ -74,9 +63,17 @@ $(document).ready(function() {
form.submit();
return false;
});
-
- if(!dbtypes.sqlite){
- $('#showAdvanced').click();
+
+ // Expand latest db settings if page was reloaded on error
+ var currentDbType = $('input[type="radio"]:checked').val();
+
+ if (currentDbType === undefined){
$('input[type="radio"]').first().click();
}
+
+ if (currentDbType === 'sqlite' || (dbtypes.sqlite && currentDbType === undefined)){
+ $('#datadirContent').hide(250);
+ $('#databaseField').hide(250);
+ }
+
});
diff --git a/core/js/tags.js b/core/js/tags.js
new file mode 100644
index 00000000000..16dd3d4bf97
--- /dev/null
+++ b/core/js/tags.js
@@ -0,0 +1,353 @@
+OC.Tags= {
+ edit:function(type, cb) {
+ if(!type && !this.type) {
+ throw { name: 'MissingParameter', message: t('core', 'The object type is not specified.') };
+ }
+ type = type ? type : this.type;
+ var self = this;
+ $.when(this._getTemplate()).then(function($tmpl) {
+ if(self.$dialog) {
+ self.$dialog.ocdialog('close');
+ }
+ self.$dialog = $tmpl.octemplate({
+ addText: t('core', 'Enter new')
+ });
+ $('body').append(self.$dialog);
+
+ self.$dialog.ready(function() {
+ self.$taglist = self.$dialog.find('.taglist');
+ self.$taginput = self.$dialog.find('.addinput');
+ self.$taglist.on('change', 'input:checkbox', function(event) {
+ self._handleChanges(self.$taglist, self.$taginput);
+ });
+ self.$taginput.on('input', function(event) {
+ self._handleChanges(self.$taglist, self.$taginput);
+ });
+ self.deleteButton = {
+ text: t('core', 'Delete'),
+ click: function() {self._deleteTags(self, type, self._selectedIds())},
+ };
+ self.addButton = {
+ text: t('core', 'Add'),
+ click: function() {self._addTag(self, type, self.$taginput.val())},
+ };
+
+ self._fillTagList(type, self.$taglist);
+ });
+
+ self.$dialog.ocdialog({
+ title: t('core', 'Edit tags'),
+ closeOnEscape: true,
+ width: 250,
+ height: 'auto',
+ modal: true,
+ //buttons: buttonlist,
+ close: function(event, ui) {
+ try {
+ $(this).ocdialog('destroy').remove();
+ } catch(e) {console.warn(e);}
+ self.$dialog = null;
+ }
+ });
+ })
+ .fail(function(status, error) {
+ // If the method is called while navigating away
+ // from the page, it is probably not needed ;)
+ if(status !== 0) {
+ alert(t('core', 'Error loading dialog template: {error}', {error: error}));
+ }
+ });
+ },
+ /**
+ * @param string type
+ * @return jQuery.Promise which resolves with an array of ids
+ */
+ getIdsForTag:function(type, tag) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_ids_for_tag', {type: type});
+ $.getJSON(url, {tag: tag}, function(response) {
+ if(response.status === 'success') {
+ defer.resolve(response.ids);
+ } else {
+ defer.reject(response);
+ }
+ });
+ return defer.promise();
+ },
+ /**
+ * @param string type
+ * @return jQuery.Promise which resolves with an array of ids
+ */
+ getFavorites:function(type) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_favorites', {type: type});
+ $.getJSON(url, function(response) {
+ if(response.status === 'success') {
+ defer.resolve(response.ids);
+ } else {
+ defer.reject(response);
+ }
+ });
+ return defer.promise();
+ },
+ /**
+ * @param string type
+ * @return jQuery.Promise which resolves with an array of id/name objects
+ */
+ getTags:function(type) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_tags', {type: type});
+ $.getJSON(url, function(response) {
+ if(response.status === 'success') {
+ defer.resolve(response.tags);
+ } else {
+ defer.reject(response);
+ }
+ });
+ return defer.promise();
+ },
+ /**
+ * @param int id
+ * @param string type
+ * @return jQuery.Promise
+ */
+ tagAs:function(id, tag, type) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_tag', {type: type, id: id});
+ $.post(url, {tag: tag}, function(response) {
+ if(response.status === 'success') {
+ defer.resolve(response);
+ } else {
+ defer.reject(response);
+ }
+ }).fail(function(jqXHR, textStatus, errorThrown) {
+ defer.reject(jqXHR.status, errorThrown);
+ });
+ return defer.promise();
+ },
+ /**
+ * @param int id
+ * @param string type
+ * @return jQuery.Promise
+ */
+ unTag:function(id, tag, type) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_untag', {type: type, id: id});
+ $.post(url, {tag: tag}, function(response) {
+ if(response.status === 'success') {
+ defer.resolve(response);
+ } else {
+ defer.reject(response);
+ }
+ }).fail(function(jqXHR, textStatus, errorThrown) {
+ defer.reject(jqXHR.status, errorThrown);
+ });
+ return defer.promise();
+ },
+ /**
+ * @param int id
+ * @param string type
+ * @return jQuery.Promise
+ */
+ addToFavorites:function(id, type) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_favorite', {type: type, id: id});
+ $.post(url, function(response) {
+ if(response.status === 'success') {
+ defer.resolve(response);
+ } else {
+ defer.reject(response);
+ }
+ }).fail(function(jqXHR, textStatus, errorThrown) {
+ defer.reject(jqXHR.status, errorThrown);
+ });
+ return defer.promise();
+ },
+ /**
+ * @param int id
+ * @param string type
+ * @return jQuery.Promise
+ */
+ removeFromFavorites:function(id, type) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_unfavorite', {type: type, id: id});
+ $.post(url, function(response) {
+ if(response.status === 'success') {
+ defer.resolve();
+ } else {
+ defer.reject(response);
+ }
+ }).fail(function(jqXHR, textStatus, errorThrown) {
+ defer.reject(jqXHR.status, errorThrown);
+ });
+ return defer.promise();
+ },
+ /**
+ * @param string tag
+ * @param string type
+ * @return jQuery.Promise which resolves with an object with the name and the new id
+ */
+ addTag:function(tag, type) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_add', {type: type});
+ $.post(url,{tag:tag}, function(response) {
+ if(typeof cb == 'function') {
+ cb(response);
+ }
+ if(response.status === 'success') {
+ defer.resolve({id:response.id, name: tag});
+ } else {
+ defer.reject(response);
+ }
+ }).fail(function(jqXHR, textStatus, errorThrown) {
+ defer.reject(jqXHR.status, errorThrown);
+ });
+ return defer.promise();
+ },
+ /**
+ * @param array tags
+ * @param string type
+ * @return jQuery.Promise
+ */
+ deleteTags:function(tags, type) {
+ if(!type && !this.type) {
+ throw new Error('The object type is not specified.');
+ }
+ type = type ? type : this.type;
+ var defer = $.Deferred(),
+ self = this,
+ url = OC.Router.generate('core_tags_delete', {type: type});
+ if(!tags || !tags.length) {
+ throw new Error(t('core', 'No tags selected for deletion.'));
+ }
+ var self = this;
+ $.post(url, {tags:tags}, function(response) {
+ if(response.status === 'success') {
+ defer.resolve(response.tags);
+ } else {
+ defer.reject(response);
+ }
+ }).fail(function(jqXHR, textStatus, errorThrown) {
+ defer.reject(jqXHR.status, errorThrown);
+ });
+ return defer.promise();
+ },
+ _update:function(tags, type) {
+ if(!this.$dialog) {
+ return;
+ }
+ var $taglist = this.$dialog.find('.taglist'),
+ self = this;
+ $taglist.empty();
+ $.each(tags, function(idx, tag) {
+ var $item = self.$listTmpl.octemplate({id: tag.id, name: tag.name});
+ $item.appendTo($taglist);
+ });
+ $(this).trigger('change', {type: type, tags: tags});
+ if(typeof this.changed === 'function') {
+ this.changed(tags);
+ }
+ },
+ _getTemplate: function() {
+ var defer = $.Deferred();
+ if(!this.$template) {
+ var self = this;
+ $.get(OC.filePath('core', 'templates', 'tags.html'), function(tmpl) {
+ self.$template = $(tmpl);
+ self.$listTmpl = self.$template.find('.taglist li:first-child').detach();
+ defer.resolve(self.$template);
+ })
+ .fail(function(jqXHR, textStatus, errorThrown) {
+ defer.reject(jqXHR.status, errorThrown);
+ });
+ } else {
+ defer.resolve(this.$template);
+ }
+ return defer.promise();
+ },
+ _fillTagList: function(type) {
+ var self = this;
+ $.when(this.getTags(type))
+ .then(function(tags) {
+ self._update(tags, type);
+ })
+ .fail(function(response) {
+ console.warn(response);
+ });
+ },
+ _selectedIds: function() {
+ return $.map(this.$taglist.find('input:checked'), function(b) {return $(b).val();});
+ },
+ _handleChanges: function($list, $input) {
+ var ids = this._selectedIds();
+ var buttons = [];
+ if($input.val().length) {
+ buttons.push(this.addButton);
+ }
+ if(ids.length) {
+ buttons.push(this.deleteButton);
+ }
+ this.$dialog.ocdialog('option', 'buttons', buttons);
+ },
+ _deleteTags: function(self, type, ids) {
+ $.when(self.deleteTags(ids, type))
+ .then(function() {
+ self._fillTagList(type);
+ self.$dialog.ocdialog('option', 'buttons', []);
+ })
+ .fail(function(response) {
+ console.warn(response);
+ });
+ },
+ _addTag: function(self, type, tag) {
+ $.when(self.addTag(tag, type))
+ .then(function(tag) {
+ self._fillTagList(type);
+ self.$taginput.val('').trigger('input');
+ })
+ .fail(function(response) {
+ console.warn(response);
+ });
+ }
+}
+
diff --git a/core/l10n/ady.php b/core/l10n/ady.php
new file mode 100644
index 00000000000..ffcdde48d47
--- /dev/null
+++ b/core/l10n/ady.php
@@ -0,0 +1,9 @@
+ array("",""),
+"_%n hour ago_::_%n hours ago_" => array("",""),
+"_%n day ago_::_%n days ago_" => array("",""),
+"_%n month ago_::_%n months ago_" => array("",""),
+"_{count} file conflict_::_{count} file conflicts_" => array("","")
+);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/core/l10n/ar.php b/core/l10n/ar.php
index cb8a506c4a8..212d850e6f5 100644
--- a/core/l10n/ar.php
+++ b/core/l10n/ar.php
@@ -1,14 +1,6 @@
"مجموعة",
-"Category type not provided." => "نوع التصنيف لم يدخل",
-"No category to add?" => "ألا توجد فئة للإضافة؟",
-"This category already exists: %s" => "هذا التصنيف موجود مسبقا : %s",
-"Object type not provided." => "نوع العنصر لم يدخل",
-"%s ID not provided." => "رقم %s لم يدخل",
-"Error adding %s to favorites." => "خطأ في اضافة %s الى المفضلة",
-"No categories selected for deletion." => "لم يتم اختيار فئة للحذف",
-"Error removing %s from favorites." => "خطأ في حذف %s من المفضلة",
"Sunday" => "الاحد",
"Monday" => "الأثنين",
"Tuesday" => "الثلاثاء",
@@ -46,12 +38,9 @@ $TRANSLATIONS = array(
"Ok" => "موافق",
"_{count} file conflict_::_{count} file conflicts_" => array("","","","","",""),
"Cancel" => "الغاء",
-"The object type is not specified." => "نوع العنصر غير محدد.",
-"Error" => "خطأ",
-"The app name is not specified." => "اسم التطبيق غير محدد.",
-"The required file {file} is not installed!" => "الملف المطلوب {file} غير منصّب.",
"Shared" => "مشارك",
"Share" => "شارك",
+"Error" => "خطأ",
"Error while sharing" => "حصل خطأ عند عملية المشاركة",
"Error while unsharing" => "حصل خطأ عند عملية إزالة المشاركة",
"Error while changing permissions" => "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل",
@@ -82,6 +71,9 @@ $TRANSLATIONS = array(
"Sending ..." => "جاري الارسال ...",
"Email sent" => "تم ارسال البريد الالكتروني",
"Warning" => "تحذير",
+"The object type is not specified." => "نوع العنصر غير محدد.",
+"Delete" => "إلغاء",
+"Add" => "اضف",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى ownCloud community.",
"The update was successful. Redirecting you to ownCloud now." => "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud",
"Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}",
@@ -101,8 +93,6 @@ $TRANSLATIONS = array(
"Help" => "المساعدة",
"Access forbidden" => "التوصّل محظور",
"Cloud not found" => "لم يتم إيجاد",
-"Edit categories" => "عدل الفئات",
-"Add" => "اضف",
"Security Warning" => "تحذير أمان",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.",
diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php
index 3b7fd4633af..8c7a644d522 100644
--- a/core/l10n/bg_BG.php
+++ b/core/l10n/bg_BG.php
@@ -1,6 +1,5 @@
"Няма избрани категории за изтриване",
"Sunday" => "Неделя",
"Monday" => "Понеделник",
"Tuesday" => "Вторник",
@@ -36,12 +35,14 @@ $TRANSLATIONS = array(
"Ok" => "Добре",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Отказ",
-"Error" => "Грешка",
"Share" => "Споделяне",
+"Error" => "Грешка",
"Share with" => "Споделено с",
"Password" => "Парола",
"create" => "създаване",
"Warning" => "Внимание",
+"Delete" => "Изтриване",
+"Add" => "Добавяне",
"You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.",
"Username" => "Потребител",
"Request reset" => "Нулиране на заявка",
@@ -55,8 +56,6 @@ $TRANSLATIONS = array(
"Help" => "Помощ",
"Access forbidden" => "Достъпът е забранен",
"Cloud not found" => "облакът не намерен",
-"Edit categories" => "Редактиране на категориите",
-"Add" => "Добавяне",
"Create an admin account" => "Създаване на админ профил",
"Advanced" => "Разширено",
"Data folder" => "Директория за данни",
diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php
index dfcd2f509a6..3e266f11063 100644
--- a/core/l10n/bn_BD.php
+++ b/core/l10n/bn_BD.php
@@ -1,12 +1,5 @@
"ক্যাটেগরির ধরণটি প্রদান করা হয় নি।",
-"No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?",
-"Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।",
-"%s ID not provided." => "%s ID প্রদান করা হয় নি।",
-"Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।",
-"No categories selected for deletion." => "মুছে ফেলার জন্য কনো ক্যাটেগরি নির্বাচন করা হয় নি।",
-"Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।",
"Sunday" => "রবিবার",
"Monday" => "সোমবার",
"Tuesday" => "মঙ্গলবার",
@@ -44,12 +37,9 @@ $TRANSLATIONS = array(
"Ok" => "তথাস্তু",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "বাতির",
-"The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।",
-"Error" => "সমস্যা",
-"The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।",
-"The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !",
"Shared" => "ভাগাভাগিকৃত",
"Share" => "ভাগাভাগি কর",
+"Error" => "সমস্যা",
"Error while sharing" => "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে ",
"Error while unsharing" => "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে",
"Error while changing permissions" => "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে",
@@ -80,6 +70,9 @@ $TRANSLATIONS = array(
"Sending ..." => "পাঠানো হচ্ছে......",
"Email sent" => "ই-মেইল পাঠানো হয়েছে",
"Warning" => "সতর্কবাণী",
+"The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।",
+"Delete" => "মুছে",
+"Add" => "যোগ কর",
"Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}",
"You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।",
"Username" => "ব্যবহারকারী",
@@ -95,8 +88,6 @@ $TRANSLATIONS = array(
"Help" => "সহায়িকা",
"Access forbidden" => "অধিগমনের অনুমতি নেই",
"Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না",
-"Edit categories" => "ক্যাটেগরি সম্পাদনা",
-"Add" => "যোগ কর",
"Security Warning" => "নিরাপত্তাজনিত সতর্কতা",
"Create an admin account" => "প্রশাসক একাউন্ট তৈরী করুন",
"Advanced" => "সুচারু",
diff --git a/core/l10n/ca.php b/core/l10n/ca.php
index d85da45b5d6..cd6bca1bd10 100644
--- a/core/l10n/ca.php
+++ b/core/l10n/ca.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Actualitzant la memòria de cau del fitxers, això pot trigar molt...",
"Updated filecache" => "Actualitzada la memòria de cau dels fitxers",
"... %d%% done ..." => "... %d%% fet ...",
-"Category type not provided." => "No s'ha especificat el tipus de categoria.",
-"No category to add?" => "No voleu afegir cap categoria?",
-"This category already exists: %s" => "Aquesta categoria ja existeix: %s",
-"Object type not provided." => "No s'ha proporcionat el tipus d'objecte.",
-"%s ID not provided." => "No s'ha proporcionat la ID %s.",
-"Error adding %s to favorites." => "Error en afegir %s als preferits.",
-"No categories selected for deletion." => "No hi ha categories per eliminar.",
-"Error removing %s from favorites." => "Error en eliminar %s dels preferits.",
"No image or file provided" => "No s'han proporcionat imatges o fitxers",
"Unknown filetype" => "Tipus de fitxer desconegut",
"Invalid image" => "Imatge no vàlida",
@@ -67,12 +59,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(selecciona-ho tot)",
"({count} selected)" => "({count} seleccionats)",
"Error loading file exists template" => "Error en carregar la plantilla de fitxer existent",
-"The object type is not specified." => "No s'ha especificat el tipus d'objecte.",
-"Error" => "Error",
-"The app name is not specified." => "No s'ha especificat el nom de l'aplicació.",
-"The required file {file} is not installed!" => "El fitxer requerit {file} no està instal·lat!",
"Shared" => "Compartit",
"Share" => "Comparteix",
+"Error" => "Error",
"Error while sharing" => "Error en compartir",
"Error while unsharing" => "Error en deixar de compartir",
"Error while changing permissions" => "Error en canviar els permisos",
@@ -104,6 +93,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Enviant...",
"Email sent" => "El correu electrónic s'ha enviat",
"Warning" => "Avís",
+"The object type is not specified." => "No s'ha especificat el tipus d'objecte.",
+"Delete" => "Esborra",
+"Add" => "Afegeix",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "L'actualització ha estat incorrecte. Comuniqueu aquest error a la comunitat ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "L'actualització ha estat correcte. Ara us redirigim a ownCloud.",
"%s password reset" => "restableix la contrasenya %s",
@@ -126,8 +118,6 @@ $TRANSLATIONS = array(
"Help" => "Ajuda",
"Access forbidden" => "Accés prohibit",
"Cloud not found" => "No s'ha trobat el núvol",
-"Edit categories" => "Edita les categories",
-"Add" => "Afegeix",
"Security Warning" => "Avís de seguretat",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versió de PHP que useu és vulnerable a l'atac per NULL Byte (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Actualitzeu la instal·lació de PHP per usar %s de forma segura.",
diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php
index 4bd8bd07b70..7a34915d6ac 100644
--- a/core/l10n/cs_CZ.php
+++ b/core/l10n/cs_CZ.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Aktualizuji souborovou mezipaměť, toto může trvat opravdu dlouho...",
"Updated filecache" => "Aktualizována souborová mezipaměť",
"... %d%% done ..." => "... %d%% dokončeno ...",
-"Category type not provided." => "Nezadán typ kategorie.",
-"No category to add?" => "Žádná kategorie k přidání?",
-"This category already exists: %s" => "Kategorie již existuje: %s",
-"Object type not provided." => "Nezadán typ objektu.",
-"%s ID not provided." => "Nezadáno ID %s.",
-"Error adding %s to favorites." => "Chyba při přidávání %s k oblíbeným.",
-"No categories selected for deletion." => "Žádné kategorie nebyly vybrány ke smazání.",
-"Error removing %s from favorites." => "Chyba při odebírání %s z oblíbených.",
"No image or file provided" => "Soubor nebo obrázek nebyl zadán",
"Unknown filetype" => "Neznámý typ souboru",
"Invalid image" => "Chybný obrázek",
@@ -63,12 +55,9 @@ $TRANSLATIONS = array(
"Which files do you want to keep?" => "Které soubory chcete ponechat?",
"Cancel" => "Zrušit",
"Continue" => "Pokračovat",
-"The object type is not specified." => "Není určen typ objektu.",
-"Error" => "Chyba",
-"The app name is not specified." => "Není určen název aplikace.",
-"The required file {file} is not installed!" => "Požadovaný soubor {file} není nainstalován!",
"Shared" => "Sdílené",
"Share" => "Sdílet",
+"Error" => "Chyba",
"Error while sharing" => "Chyba při sdílení",
"Error while unsharing" => "Chyba při rušení sdílení",
"Error while changing permissions" => "Chyba při změně oprávnění",
@@ -100,6 +89,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Odesílám ...",
"Email sent" => "E-mail odeslán",
"Warning" => "Varování",
+"The object type is not specified." => "Není určen typ objektu.",
+"Delete" => "Smazat",
+"Add" => "Přidat",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do evidence chyb ownCloud",
"The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.",
"%s password reset" => "reset hesla %s",
@@ -122,8 +114,6 @@ $TRANSLATIONS = array(
"Help" => "Nápověda",
"Access forbidden" => "Přístup zakázán",
"Cloud not found" => "Cloud nebyl nalezen",
-"Edit categories" => "Upravit kategorie",
-"Add" => "Přidat",
"Security Warning" => "Bezpečnostní upozornění",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Aktualizujte prosím vaši instanci PHP pro bezpečné používání %s.",
diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php
index 920fcad3d6b..6781382fa01 100644
--- a/core/l10n/cy_GB.php
+++ b/core/l10n/cy_GB.php
@@ -1,14 +1,6 @@
"grŵp",
-"Category type not provided." => "Math o gategori heb ei ddarparu.",
-"No category to add?" => "Dim categori i'w ychwanegu?",
-"This category already exists: %s" => "Mae'r categori hwn eisoes yn bodoli: %s",
-"Object type not provided." => "Math o wrthrych heb ei ddarparu.",
-"%s ID not provided." => "%s ID heb ei ddarparu.",
-"Error adding %s to favorites." => "Gwall wrth ychwanegu %s at ffefrynnau.",
-"No categories selected for deletion." => "Ni ddewiswyd categorïau i'w dileu.",
-"Error removing %s from favorites." => "Gwall wrth dynnu %s o ffefrynnau.",
"Sunday" => "Sul",
"Monday" => "Llun",
"Tuesday" => "Mawrth",
@@ -46,12 +38,9 @@ $TRANSLATIONS = array(
"Ok" => "Iawn",
"_{count} file conflict_::_{count} file conflicts_" => array("","","",""),
"Cancel" => "Diddymu",
-"The object type is not specified." => "Nid yw'r math o wrthrych wedi cael ei nodi.",
-"Error" => "Gwall",
-"The app name is not specified." => "Nid yw enw'r pecyn wedi cael ei nodi.",
-"The required file {file} is not installed!" => "Nid yw'r ffeil ofynnol {file} wedi ei gosod!",
"Shared" => "Rhannwyd",
"Share" => "Rhannu",
+"Error" => "Gwall",
"Error while sharing" => "Gwall wrth rannu",
"Error while unsharing" => "Gwall wrth ddad-rannu",
"Error while changing permissions" => "Gwall wrth newid caniatâd",
@@ -82,6 +71,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Yn anfon ...",
"Email sent" => "Anfonwyd yr e-bost",
"Warning" => "Rhybudd",
+"The object type is not specified." => "Nid yw'r math o wrthrych wedi cael ei nodi.",
+"Delete" => "Dileu",
+"Add" => "Ychwanegu",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.",
"Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}",
@@ -101,8 +93,6 @@ $TRANSLATIONS = array(
"Help" => "Cymorth",
"Access forbidden" => "Mynediad wedi'i wahardd",
"Cloud not found" => "Methwyd canfod cwmwl",
-"Edit categories" => "Golygu categorïau",
-"Add" => "Ychwanegu",
"Security Warning" => "Rhybudd Diogelwch",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL.",
diff --git a/core/l10n/da.php b/core/l10n/da.php
index b28e8a969b4..93fad7047d6 100644
--- a/core/l10n/da.php
+++ b/core/l10n/da.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Opdatere filcache, dette kan tage rigtigt lang tid...",
"Updated filecache" => "Opdaterede filcache",
"... %d%% done ..." => "... %d%% færdig ...",
-"Category type not provided." => "Kategori typen ikke er fastsat.",
-"No category to add?" => "Ingen kategori at tilføje?",
-"This category already exists: %s" => "Kategorien eksisterer allerede: %s",
-"Object type not provided." => "Object type ikke er fastsat.",
-"%s ID not provided." => "%s ID ikke oplyst.",
-"Error adding %s to favorites." => "Fejl ved tilføjelse af %s til favoritter.",
-"No categories selected for deletion." => "Ingen kategorier valgt",
-"Error removing %s from favorites." => "Fejl ved fjernelse af %s fra favoritter.",
"No image or file provided" => "Ingen fil eller billede givet",
"Unknown filetype" => "Ukendt filtype",
"Invalid image" => "Ugyldigt billede",
@@ -67,12 +59,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(alle valgt)",
"({count} selected)" => "({count} valgt)",
"Error loading file exists template" => "Fejl ved inlæsning af; fil eksistere skabelon",
-"The object type is not specified." => "Objekttypen er ikke angivet.",
-"Error" => "Fejl",
-"The app name is not specified." => "Den app navn er ikke angivet.",
-"The required file {file} is not installed!" => "Den krævede fil {file} er ikke installeret!",
"Shared" => "Delt",
"Share" => "Del",
+"Error" => "Fejl",
"Error while sharing" => "Fejl under deling",
"Error while unsharing" => "Fejl under annullering af deling",
"Error while changing permissions" => "Fejl under justering af rettigheder",
@@ -104,6 +93,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sender ...",
"Email sent" => "E-mail afsendt",
"Warning" => "Advarsel",
+"The object type is not specified." => "Objekttypen er ikke angivet.",
+"Delete" => "Slet",
+"Add" => "Tilføj",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til ownClouds community.",
"The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.",
"%s password reset" => "%s adgangskode nulstillet",
@@ -126,8 +118,6 @@ $TRANSLATIONS = array(
"Help" => "Hjælp",
"Access forbidden" => "Adgang forbudt",
"Cloud not found" => "Sky ikke fundet",
-"Edit categories" => "Rediger kategorier",
-"Add" => "Tilføj",
"Security Warning" => "Sikkerhedsadvarsel",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Opdater venligst din PHP installation for at anvende %s sikkert.",
diff --git a/core/l10n/de.php b/core/l10n/de.php
index 7e292adcf39..f70bfae0f94 100644
--- a/core/l10n/de.php
+++ b/core/l10n/de.php
@@ -9,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...",
"Updated filecache" => "Dateicache aktualisiert",
"... %d%% done ..." => "... %d%% erledigt ...",
-"Category type not provided." => "Kategorie nicht angegeben.",
-"No category to add?" => "Keine Kategorie hinzuzufügen?",
-"This category already exists: %s" => "Die Kategorie '%s' existiert bereits.",
-"Object type not provided." => "Objekttyp nicht angegeben.",
-"%s ID not provided." => "%s ID nicht angegeben.",
-"Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.",
-"No categories selected for deletion." => "Es wurde keine Kategorien zum Löschen ausgewählt.",
-"Error removing %s from favorites." => "Fehler beim Entfernen von %s von den Favoriten.",
"No image or file provided" => "Kein Bild oder Datei zur Verfügung gestellt",
"Unknown filetype" => "Unbekannter Dateityp",
"Invalid image" => "Ungültiges Bild",
@@ -68,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(Alle ausgewählt)",
"({count} selected)" => "({count} ausgewählt)",
"Error loading file exists template" => "Fehler beim Laden der vorhanden Dateivorlage",
-"The object type is not specified." => "Der Objekttyp ist nicht angegeben.",
-"Error" => "Fehler",
-"The app name is not specified." => "Der App-Name ist nicht angegeben.",
-"The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert.",
"Shared" => "Geteilt",
"Share" => "Teilen",
+"Error" => "Fehler",
"Error while sharing" => "Fehler beim Teilen",
"Error while unsharing" => "Fehler beim Aufheben der Freigabe",
"Error while changing permissions" => "Fehler beim Ändern der Rechte",
@@ -106,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sende ...",
"Email sent" => "E-Mail wurde verschickt",
"Warning" => "Warnung",
+"The object type is not specified." => "Der Objekttyp ist nicht angegeben.",
+"Delete" => "Löschen",
+"Add" => "Hinzufügen",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die ownCloud Community.",
"The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Du wirst nun zu ownCloud weitergeleitet.",
"%s password reset" => "%s-Passwort zurücksetzen",
@@ -131,8 +123,6 @@ $TRANSLATIONS = array(
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n",
"The share will expire on %s.\n\n" => "Die Freigabe wird ablaufen am %s.\n\n",
"Cheers!" => "Hallo!",
-"Edit categories" => "Kategorien bearbeiten",
-"Add" => "Hinzufügen",
"Security Warning" => "Sicherheitswarnung",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar",
"Please update your PHP installation to use %s securely." => "Bitte aktualisiere deine PHP-Installation um %s sicher nutzen zu können.",
@@ -157,6 +147,8 @@ $TRANSLATIONS = array(
"Automatic logon rejected!" => "Automatischer Login zurückgewiesen!",
"If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!",
"Please change your password to secure your account again." => "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen.",
+"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!",
+"Please contact your administrator." => "Bitte kontaktiere Deinen Administrator.",
"Lost your password?" => "Passwort vergessen?",
"remember" => "merken",
"Log in" => "Einloggen",
diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php
index 1f79e977cc9..e3e48a718d7 100644
--- a/core/l10n/de_CH.php
+++ b/core/l10n/de_CH.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s teilt »%s« mit Ihnen",
"group" => "Gruppe",
-"Category type not provided." => "Kategorie nicht angegeben.",
-"No category to add?" => "Keine Kategorie hinzuzufügen?",
-"This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s",
-"Object type not provided." => "Objekttyp nicht angegeben.",
-"%s ID not provided." => "%s ID nicht angegeben.",
-"Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.",
-"No categories selected for deletion." => "Es wurden keine Kategorien zum Löschen ausgewählt.",
-"Error removing %s from favorites." => "Fehler beim Entfernen von %s von den Favoriten.",
"Sunday" => "Sonntag",
"Monday" => "Montag",
"Tuesday" => "Dienstag",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "OK",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Abbrechen",
-"The object type is not specified." => "Der Objekttyp ist nicht angegeben.",
-"Error" => "Fehler",
-"The app name is not specified." => "Der App-Name ist nicht angegeben.",
-"The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert!",
"Shared" => "Geteilt",
"Share" => "Teilen",
+"Error" => "Fehler",
"Error while sharing" => "Fehler beim Teilen",
"Error while unsharing" => "Fehler beim Aufheben der Freigabe",
"Error while changing permissions" => "Fehler bei der Änderung der Rechte",
@@ -84,6 +73,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sende ...",
"Email sent" => "Email gesendet",
"Warning" => "Warnung",
+"The object type is not specified." => "Der Objekttyp ist nicht angegeben.",
+"Delete" => "Löschen",
+"Add" => "Hinzufügen",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.",
"The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.",
"%s password reset" => "%s-Passwort zurücksetzen",
@@ -106,8 +98,6 @@ $TRANSLATIONS = array(
"Help" => "Hilfe",
"Access forbidden" => "Zugriff verboten",
"Cloud not found" => "Cloud wurde nicht gefunden",
-"Edit categories" => "Kategorien ändern",
-"Add" => "Hinzufügen",
"Security Warning" => "Sicherheitshinweis",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar",
"Please update your PHP installation to use %s securely." => "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können.",
diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php
index 95519c7d412..f11dbd36462 100644
--- a/core/l10n/de_DE.php
+++ b/core/l10n/de_DE.php
@@ -9,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...",
"Updated filecache" => "Dateicache aktualisiert",
"... %d%% done ..." => "... %d%% erledigt ...",
-"Category type not provided." => "Kategorie nicht angegeben.",
-"No category to add?" => "Keine Kategorie hinzuzufügen?",
-"This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s",
-"Object type not provided." => "Objekttyp nicht angegeben.",
-"%s ID not provided." => "%s ID nicht angegeben.",
-"Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.",
-"No categories selected for deletion." => "Es wurden keine Kategorien zum Löschen ausgewählt.",
-"Error removing %s from favorites." => "Fehler beim Entfernen von %s von den Favoriten.",
"No image or file provided" => "Kein Bild oder Datei zur Verfügung gestellt",
"Unknown filetype" => "Unbekannter Dateityp",
"Invalid image" => "Ungültiges Bild",
@@ -68,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(Alle ausgewählt)",
"({count} selected)" => "({count} ausgewählt)",
"Error loading file exists template" => "Fehler beim Laden der vorhanden Dateivorlage",
-"The object type is not specified." => "Der Objekttyp ist nicht angegeben.",
-"Error" => "Fehler",
-"The app name is not specified." => "Der App-Name ist nicht angegeben.",
-"The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert!",
"Shared" => "Geteilt",
"Share" => "Teilen",
+"Error" => "Fehler",
"Error while sharing" => "Fehler beim Teilen",
"Error while unsharing" => "Fehler beim Aufheben der Freigabe",
"Error while changing permissions" => "Fehler bei der Änderung der Rechte",
@@ -106,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sende ...",
"Email sent" => "Email gesendet",
"Warning" => "Warnung",
+"The object type is not specified." => "Der Objekttyp ist nicht angegeben.",
+"Delete" => "Löschen",
+"Add" => "Hinzufügen",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.",
"The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.",
"%s password reset" => "%s-Passwort zurücksetzen",
@@ -131,8 +123,6 @@ $TRANSLATIONS = array(
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\n",
"The share will expire on %s.\n\n" => "Die Freigabe wird ablaufen am %s.\n\n",
"Cheers!" => "Hallo!",
-"Edit categories" => "Kategorien ändern",
-"Add" => "Hinzufügen",
"Security Warning" => "Sicherheitshinweis",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar",
"Please update your PHP installation to use %s securely." => "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können.",
@@ -157,6 +147,8 @@ $TRANSLATIONS = array(
"Automatic logon rejected!" => "Automatische Anmeldung verweigert!",
"If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!",
"Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.",
+"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!",
+"Please contact your administrator." => "Bitte kontaktieren Sie Ihren Administrator.",
"Lost your password?" => "Passwort vergessen?",
"remember" => "merken",
"Log in" => "Einloggen",
diff --git a/core/l10n/el.php b/core/l10n/el.php
index fd5987d02ae..0348babe56c 100644
--- a/core/l10n/el.php
+++ b/core/l10n/el.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "Ο %s διαμοιράστηκε μαζί σας το »%s«",
"group" => "ομάδα",
-"Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.",
-"No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;",
-"This category already exists: %s" => "Αυτή η κατηγορία υπάρχει ήδη: %s",
-"Object type not provided." => "Δεν δώθηκε τύπος αντικειμένου.",
-"%s ID not provided." => "Δεν δώθηκε η ID για %s.",
-"Error adding %s to favorites." => "Σφάλμα προσθήκης %s στα αγαπημένα.",
-"No categories selected for deletion." => "Δεν επιλέχτηκαν κατηγορίες για διαγραφή.",
-"Error removing %s from favorites." => "Σφάλμα αφαίρεσης %s από τα αγαπημένα.",
"Sunday" => "Κυριακή",
"Monday" => "Δευτέρα",
"Tuesday" => "Τρίτη",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "Οκ",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Άκυρο",
-"The object type is not specified." => "Δεν καθορίστηκε ο τύπος του αντικειμένου.",
-"Error" => "Σφάλμα",
-"The app name is not specified." => "Δεν καθορίστηκε το όνομα της εφαρμογής.",
-"The required file {file} is not installed!" => "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!",
"Shared" => "Κοινόχρηστα",
"Share" => "Διαμοιρασμός",
+"Error" => "Σφάλμα",
"Error while sharing" => "Σφάλμα κατά τον διαμοιρασμό",
"Error while unsharing" => "Σφάλμα κατά το σταμάτημα του διαμοιρασμού",
"Error while changing permissions" => "Σφάλμα κατά την αλλαγή των δικαιωμάτων",
@@ -84,6 +73,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Αποστολή...",
"Email sent" => "Το Email απεστάλη ",
"Warning" => "Προειδοποίηση",
+"The object type is not specified." => "Δεν καθορίστηκε ο τύπος του αντικειμένου.",
+"Delete" => "Διαγραφή",
+"Add" => "Προσθήκη",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην κοινότητα ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.",
"Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}",
@@ -105,8 +97,6 @@ $TRANSLATIONS = array(
"Help" => "Βοήθεια",
"Access forbidden" => "Δεν επιτρέπεται η πρόσβαση",
"Cloud not found" => "Δεν βρέθηκε νέφος",
-"Edit categories" => "Επεξεργασία κατηγοριών",
-"Add" => "Προσθήκη",
"Security Warning" => "Προειδοποίηση Ασφαλείας",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια.",
diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php
index c69cf59f384..389933044e0 100644
--- a/core/l10n/en_GB.php
+++ b/core/l10n/en_GB.php
@@ -1,6 +1,7 @@
"%s shared \"%s\" with you",
+"Couldn't send mail to following users: %s " => "Couldn't send mail to following users: %s ",
"group" => "group",
"Turned on maintenance mode" => "Turned on maintenance mode",
"Turned off maintenance mode" => "Turned off maintenance mode",
@@ -8,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Updating filecache, this may take a really long time...",
"Updated filecache" => "Updated filecache",
"... %d%% done ..." => "... %d%% done ...",
-"Category type not provided." => "Category type not provided.",
-"No category to add?" => "No category to add?",
-"This category already exists: %s" => "This category already exists: %s",
-"Object type not provided." => "Object type not provided.",
-"%s ID not provided." => "%s ID not provided.",
-"Error adding %s to favorites." => "Error adding %s to favourites.",
-"No categories selected for deletion." => "No categories selected for deletion.",
-"Error removing %s from favorites." => "Error removing %s from favourites.",
"No image or file provided" => "No image or file provided",
"Unknown filetype" => "Unknown filetype",
"Invalid image" => "Invalid image",
@@ -67,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(all selected)",
"({count} selected)" => "({count} selected)",
"Error loading file exists template" => "Error loading file exists template",
-"The object type is not specified." => "The object type is not specified.",
-"Error" => "Error",
-"The app name is not specified." => "The app name is not specified.",
-"The required file {file} is not installed!" => "The required file {file} is not installed!",
"Shared" => "Shared",
"Share" => "Share",
+"Error" => "Error",
"Error while sharing" => "Error whilst sharing",
"Error while unsharing" => "Error whilst unsharing",
"Error while changing permissions" => "Error whilst changing permissions",
@@ -92,6 +82,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Resharing is not allowed",
"Shared in {item} with {user}" => "Shared in {item} with {user}",
"Unshare" => "Unshare",
+"notify user by email" => "notify user by email",
"can edit" => "can edit",
"access control" => "access control",
"create" => "create",
@@ -104,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sending ...",
"Email sent" => "Email sent",
"Warning" => "Warning",
+"The object type is not specified." => "The object type is not specified.",
+"Delete" => "Delete",
+"Add" => "Add",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "The update was unsuccessful. Please report this issue to the ownCloud community.",
"The update was successful. Redirecting you to ownCloud now." => "The update was successful. Redirecting you to ownCloud now.",
"%s password reset" => "%s password reset",
@@ -126,8 +120,9 @@ $TRANSLATIONS = array(
"Help" => "Help",
"Access forbidden" => "Access denied",
"Cloud not found" => "Cloud not found",
-"Edit categories" => "Edit categories",
-"Add" => "Add",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n",
+"The share will expire on %s.\n\n" => "The share will expire on %s.\n\n",
+"Cheers!" => "Cheers!",
"Security Warning" => "Security Warning",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Please update your PHP installation to use %s securely.",
@@ -146,15 +141,20 @@ $TRANSLATIONS = array(
"Database tablespace" => "Database tablespace",
"Database host" => "Database host",
"Finish setup" => "Finish setup",
+"Finishing …" => "Finishing …",
"%s is available. Get more information on how to update." => "%s is available. Get more information on how to update.",
"Log out" => "Log out",
"Automatic logon rejected!" => "Automatic logon rejected!",
"If you did not change your password recently, your account may be compromised!" => "If you did not change your password recently, your account may be compromised!",
"Please change your password to secure your account again." => "Please change your password to secure your account again.",
+"Server side authentication failed!" => "Server side authentication failed!",
+"Please contact your administrator." => "Please contact your administrator.",
"Lost your password?" => "Lost your password?",
"remember" => "remember",
"Log in" => "Log in",
"Alternative Logins" => "Alternative Logins",
+"Hey there,
just letting you know that %s shared »%s« with you. View it!
" => "Hey there,
just letting you know that %s shared »%s« with you. View it!
",
+"The share will expire on %s.
" => "The share will expire on %s.
",
"Updating ownCloud to version %s, this may take a while." => "Updating ownCloud to version %s, this may take a while."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/core/l10n/eo.php b/core/l10n/eo.php
index 2b416db4707..24e845622c2 100644
--- a/core/l10n/eo.php
+++ b/core/l10n/eo.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s kunhavigis “%s” kun vi",
"group" => "grupo",
-"Category type not provided." => "Ne proviziĝis tipon de kategorio.",
-"No category to add?" => "Ĉu neniu kategorio estas aldonota?",
-"This category already exists: %s" => "Tiu kategorio jam ekzistas: %s",
-"Object type not provided." => "Ne proviziĝis tipon de objekto.",
-"%s ID not provided." => "Ne proviziĝis ID-on de %s.",
-"Error adding %s to favorites." => "Eraro dum aldono de %s al favoratoj.",
-"No categories selected for deletion." => "Neniu kategorio elektiĝis por forigo.",
-"Error removing %s from favorites." => "Eraro dum forigo de %s el favoratoj.",
"Sunday" => "dimanĉo",
"Monday" => "lundo",
"Tuesday" => "mardo",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "Akcepti",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Nuligi",
-"The object type is not specified." => "Ne indikiĝis tipo de la objekto.",
-"Error" => "Eraro",
-"The app name is not specified." => "Ne indikiĝis nomo de la aplikaĵo.",
-"The required file {file} is not installed!" => "La necesa dosiero {file} ne instaliĝis!",
"Shared" => "Dividita",
"Share" => "Kunhavigi",
+"Error" => "Eraro",
"Error while sharing" => "Eraro dum kunhavigo",
"Error while unsharing" => "Eraro dum malkunhavigo",
"Error while changing permissions" => "Eraro dum ŝanĝo de permesoj",
@@ -83,6 +72,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sendante...",
"Email sent" => "La retpoŝtaĵo sendiĝis",
"Warning" => "Averto",
+"The object type is not specified." => "Ne indikiĝis tipo de la objekto.",
+"Delete" => "Forigi",
+"Add" => "Aldoni",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la ownClouda komunumo.",
"The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.",
"Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}",
@@ -102,8 +94,6 @@ $TRANSLATIONS = array(
"Help" => "Helpo",
"Access forbidden" => "Aliro estas malpermesata",
"Cloud not found" => "La nubo ne estas trovita",
-"Edit categories" => "Redakti kategoriojn",
-"Add" => "Aldoni",
"Security Warning" => "Sekureca averto",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP.",
diff --git a/core/l10n/es.php b/core/l10n/es.php
index 29eea2dbf49..29a947b47e7 100644
--- a/core/l10n/es.php
+++ b/core/l10n/es.php
@@ -1,6 +1,7 @@
"%s ha compatido »%s« contigo",
+"Couldn't send mail to following users: %s " => "No se pudo enviar mensajes a los siguientes usuarios: %s",
"group" => "grupo",
"Turned on maintenance mode" => "Modo mantenimiento activado",
"Turned off maintenance mode" => "Modo mantenimiento desactivado",
@@ -8,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar bastante tiempo...",
"Updated filecache" => "Caché de archivos actualizada",
"... %d%% done ..." => "... %d%% hecho ...",
-"Category type not provided." => "Tipo de categoría no proporcionado.",
-"No category to add?" => "¿Ninguna categoría para añadir?",
-"This category already exists: %s" => "Esta categoría ya existe: %s",
-"Object type not provided." => "Tipo de objeto no proporcionado.",
-"%s ID not provided." => "ID de %s no proporcionado.",
-"Error adding %s to favorites." => "Error añadiendo %s a favoritos.",
-"No categories selected for deletion." => "No hay categorías seleccionadas para borrar.",
-"Error removing %s from favorites." => "Error eliminando %s de los favoritos.",
"No image or file provided" => "No se especificó ningún archivo o imagen",
"Unknown filetype" => "Tipo de archivo desconocido",
"Invalid image" => "Imagen inválida",
@@ -67,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(seleccionados todos)",
"({count} selected)" => "({count} seleccionados)",
"Error loading file exists template" => "Error cargando plantilla de archivo existente",
-"The object type is not specified." => "El tipo de objeto no está especificado.",
-"Error" => "Error",
-"The app name is not specified." => "El nombre de la aplicación no está especificado.",
-"The required file {file} is not installed!" => "¡El fichero {file} es necesario y no está instalado!",
"Shared" => "Compartido",
"Share" => "Compartir",
+"Error" => "Error",
"Error while sharing" => "Error al compartir",
"Error while unsharing" => "Error al dejar de compartir",
"Error while changing permissions" => "Error al cambiar permisos",
@@ -92,6 +82,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "No se permite compartir de nuevo",
"Shared in {item} with {user}" => "Compartido en {item} con {user}",
"Unshare" => "Dejar de compartir",
+"notify user by email" => "notificar al usuario por correo electrónico",
"can edit" => "puede editar",
"access control" => "control de acceso",
"create" => "crear",
@@ -104,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Enviando...",
"Email sent" => "Correo electrónico enviado",
"Warning" => "Precaución",
+"The object type is not specified." => "El tipo de objeto no está especificado.",
+"Delete" => "Eliminar",
+"Add" => "Agregar",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.",
"%s password reset" => "%s restablecer contraseña",
@@ -126,8 +120,9 @@ $TRANSLATIONS = array(
"Help" => "Ayuda",
"Access forbidden" => "Acceso denegado",
"Cloud not found" => "No se encuentra la nube",
-"Edit categories" => "Editar categorías",
-"Add" => "Agregar",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n",
+"The share will expire on %s.\n\n" => "El objeto dejará de ser compartido el %s.\n\n",
+"Cheers!" => "¡Saludos!",
"Security Warning" => "Advertencia de seguridad",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Por favor, actualice su instalación PHP para usar %s con seguridad.",
@@ -146,15 +141,20 @@ $TRANSLATIONS = array(
"Database tablespace" => "Espacio de tablas de la base de datos",
"Database host" => "Host de la base de datos",
"Finish setup" => "Completar la instalación",
+"Finishing …" => "Finalizando...",
"%s is available. Get more information on how to update." => "%s esta disponible. Obtener mas información de como actualizar.",
"Log out" => "Salir",
"Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!",
"If you did not change your password recently, your account may be compromised!" => "Si no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!",
"Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.",
+"Server side authentication failed!" => "La autenticación a fallado en el servidor.",
+"Please contact your administrator." => "Sírvase contactar a su administrador.",
"Lost your password?" => "¿Ha perdido su contraseña?",
"remember" => "recordar",
"Log in" => "Entrar",
"Alternative Logins" => "Inicios de sesión alternativos",
+"Hey there,
just letting you know that %s shared »%s« with you. View it!
" => "Hola:
tan solo queremos informarte que %s compartió «%s» contigo. ¡Míralo acá!
",
+"The share will expire on %s.
" => "El objeto dejará de ser compartido el %s.
",
"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php
index 7d7e29c8ffb..195db409ab9 100644
--- a/core/l10n/es_AR.php
+++ b/core/l10n/es_AR.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar mucho tiempo...",
"Updated filecache" => "Caché de archivos actualizada",
"... %d%% done ..." => "... %d%% hecho ...",
-"Category type not provided." => "Tipo de categoría no provisto. ",
-"No category to add?" => "¿Ninguna categoría para añadir?",
-"This category already exists: %s" => "Esta categoría ya existe: %s",
-"Object type not provided." => "Tipo de objeto no provisto. ",
-"%s ID not provided." => "%s ID no provista. ",
-"Error adding %s to favorites." => "Error al agregar %s a favoritos. ",
-"No categories selected for deletion." => "No se seleccionaron categorías para borrar.",
-"Error removing %s from favorites." => "Error al borrar %s de favoritos. ",
"Sunday" => "Domingo",
"Monday" => "Lunes",
"Tuesday" => "Martes",
@@ -53,12 +45,9 @@ $TRANSLATIONS = array(
"Ok" => "Aceptar",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Cancelar",
-"The object type is not specified." => "El tipo de objeto no está especificado. ",
-"Error" => "Error",
-"The app name is not specified." => "El nombre de la App no está especificado.",
-"The required file {file} is not installed!" => "¡El archivo requerido {file} no está instalado!",
"Shared" => "Compartido",
"Share" => "Compartir",
+"Error" => "Error",
"Error while sharing" => "Error al compartir",
"Error while unsharing" => "Error en al dejar de compartir",
"Error while changing permissions" => "Error al cambiar permisos",
@@ -90,6 +79,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Mandando...",
"Email sent" => "e-mail mandado",
"Warning" => "Atención",
+"The object type is not specified." => "El tipo de objeto no está especificado. ",
+"Delete" => "Borrar",
+"Add" => "Agregar",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.",
"%s password reset" => "%s restablecer contraseña",
@@ -112,8 +104,6 @@ $TRANSLATIONS = array(
"Help" => "Ayuda",
"Access forbidden" => "Acceso prohibido",
"Cloud not found" => "No se encontró ownCloud",
-"Edit categories" => "Editar categorías",
-"Add" => "Agregar",
"Security Warning" => "Advertencia de seguridad",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Por favor, actualizá tu instalación PHP para poder usar %s de manera segura.",
diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php
index 7b26850166d..7bc6d2a7437 100644
--- a/core/l10n/et_EE.php
+++ b/core/l10n/et_EE.php
@@ -9,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Uuendan failipuhvrit, see võib kesta väga kaua...",
"Updated filecache" => "Uuendatud failipuhver",
"... %d%% done ..." => "... %d%% tehtud ...",
-"Category type not provided." => "Kategooria tüüp puudub.",
-"No category to add?" => "Pole kategooriat, mida lisada?",
-"This category already exists: %s" => "See kategooria on juba olemas: %s",
-"Object type not provided." => "Objekti tüüb puudub.",
-"%s ID not provided." => "%s ID puudub.",
-"Error adding %s to favorites." => "Viga %s lisamisel lemmikutesse.",
-"No categories selected for deletion." => "Kustutamiseks pole kategooriat valitud.",
-"Error removing %s from favorites." => "Viga %s eemaldamisel lemmikutest.",
"No image or file provided" => "Ühtegi pilti või faili ei pakutud",
"Unknown filetype" => "Tundmatu failitüüp",
"Invalid image" => "Vigane pilt",
@@ -62,16 +54,15 @@ $TRANSLATIONS = array(
"_{count} file conflict_::_{count} file conflicts_" => array("{count} failikonflikt","{count} failikonflikti"),
"One file conflict" => "Üks failikonflikt",
"Which files do you want to keep?" => "Milliseid faile sa soovid alles hoida?",
+"If you select both versions, the copied file will have a number added to its name." => "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number.",
"Cancel" => "Loobu",
"Continue" => "Jätka",
"(all selected)" => "(kõik valitud)",
"({count} selected)" => "({count} valitud)",
-"The object type is not specified." => "Objekti tüüp pole määratletud.",
-"Error" => "Viga",
-"The app name is not specified." => "Rakenduse nimi ole määratletud.",
-"The required file {file} is not installed!" => "Vajalikku faili {file} pole paigaldatud!",
+"Error loading file exists template" => "Viga faili olemasolu malli laadimisel",
"Shared" => "Jagatud",
"Share" => "Jaga",
+"Error" => "Viga",
"Error while sharing" => "Viga jagamisel",
"Error while unsharing" => "Viga jagamise lõpetamisel",
"Error while changing permissions" => "Viga õiguste muutmisel",
@@ -104,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Saatmine ...",
"Email sent" => "E-kiri on saadetud",
"Warning" => "Hoiatus",
+"The object type is not specified." => "Objekti tüüp pole määratletud.",
+"Delete" => "Kustuta",
+"Add" => "Lisa",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Uuendus ebaõnnestus. Palun teavita probleemidest ownCloud kogukonda.",
"The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.",
"%s password reset" => "%s parooli lähtestus",
@@ -129,8 +123,6 @@ $TRANSLATIONS = array(
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n",
"The share will expire on %s.\n\n" => "Jagamine aegub %s.\n\n",
"Cheers!" => "Terekest!",
-"Edit categories" => "Muuda kategooriaid",
-"Add" => "Lisa",
"Security Warning" => "Turvahoiatus",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sinu PHP versioon on haavatav NULL Baidi (CVE-2006-7243) rünnakuga.",
"Please update your PHP installation to use %s securely." => "Palun uuenda oma paigaldatud PHP-d tagamaks %s turvalisus.",
@@ -155,6 +147,8 @@ $TRANSLATIONS = array(
"Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!",
"If you did not change your password recently, your account may be compromised!" => "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla ohustatud!",
"Please change your password to secure your account again." => "Palun muuda parooli, et oma kasutajakonto uuesti turvata.",
+"Server side authentication failed!" => "Serveripoolne autentimine ebaõnnestus!",
+"Please contact your administrator." => "Palun kontakteeru oma süsteemihalduriga.",
"Lost your password?" => "Kaotasid oma parooli?",
"remember" => "pea meeles",
"Log in" => "Logi sisse",
diff --git a/core/l10n/eu.php b/core/l10n/eu.php
index 2bf1b060790..50e4e12d770 100644
--- a/core/l10n/eu.php
+++ b/core/l10n/eu.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s-ek »%s« zurekin partekatu du",
"group" => "taldea",
-"Category type not provided." => "Kategoria mota ez da zehaztu.",
-"No category to add?" => "Ez dago gehitzeko kategoriarik?",
-"This category already exists: %s" => "Kategoria hau dagoeneko existitzen da: %s",
-"Object type not provided." => "Objetu mota ez da zehaztu.",
-"%s ID not provided." => "%s ID mota ez da zehaztu.",
-"Error adding %s to favorites." => "Errorea gertatu da %s gogokoetara gehitzean.",
-"No categories selected for deletion." => "Ez da ezabatzeko kategoriarik hautatu.",
-"Error removing %s from favorites." => "Errorea gertatu da %s gogokoetatik ezabatzean.",
"Sunday" => "Igandea",
"Monday" => "Astelehena",
"Tuesday" => "Asteartea",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "Ados",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Ezeztatu",
-"The object type is not specified." => "Objetu mota ez dago zehaztuta.",
-"Error" => "Errorea",
-"The app name is not specified." => "App izena ez dago zehaztuta.",
-"The required file {file} is not installed!" => "Beharrezkoa den {file} fitxategia ez dago instalatuta!",
"Shared" => "Elkarbanatuta",
"Share" => "Elkarbanatu",
+"Error" => "Errorea",
"Error while sharing" => "Errore bat egon da elkarbanatzean",
"Error while unsharing" => "Errore bat egon da elkarbanaketa desegitean",
"Error while changing permissions" => "Errore bat egon da baimenak aldatzean",
@@ -84,6 +73,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Bidaltzen ...",
"Email sent" => "Eposta bidalia",
"Warning" => "Abisua",
+"The object type is not specified." => "Objetu mota ez dago zehaztuta.",
+"Delete" => "Ezabatu",
+"Add" => "Gehitu",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat ownCloud komunitatearentzako.",
"The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.",
"%s password reset" => "%s pasahitza berrezarri",
@@ -106,8 +98,6 @@ $TRANSLATIONS = array(
"Help" => "Laguntza",
"Access forbidden" => "Sarrera debekatuta",
"Cloud not found" => "Ez da hodeia aurkitu",
-"Edit categories" => "Editatu kategoriak",
-"Add" => "Gehitu",
"Security Warning" => "Segurtasun abisua",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Zure PHP bertsioa NULL Byte erasoak (CVE-2006-7243) mendera dezake.",
"Please update your PHP installation to use %s securely." => "Mesedez eguneratu zure PHP instalazioa %s seguru erabiltzeko",
diff --git a/core/l10n/fa.php b/core/l10n/fa.php
index e173d628f5f..a9fc022b45a 100644
--- a/core/l10n/fa.php
+++ b/core/l10n/fa.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s به اشتراک گذاشته شده است »%s« توسط شما",
"group" => "گروه",
-"Category type not provided." => "نوع دسته بندی ارائه نشده است.",
-"No category to add?" => "آیا گروه دیگری برای افزودن ندارید",
-"This category already exists: %s" => "این دسته هم اکنون وجود دارد: %s",
-"Object type not provided." => "نوع شی ارائه نشده است.",
-"%s ID not provided." => "شناسه %s ارائه نشده است.",
-"Error adding %s to favorites." => "خطای اضافه کردن %s به علاقه مندی ها.",
-"No categories selected for deletion." => "هیج دسته ای برای پاک شدن انتخاب نشده است",
-"Error removing %s from favorites." => "خطای پاک کردن %s از علاقه مندی ها.",
"Sunday" => "یکشنبه",
"Monday" => "دوشنبه",
"Tuesday" => "سه شنبه",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "قبول",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "منصرف شدن",
-"The object type is not specified." => "نوع شی تعیین نشده است.",
-"Error" => "خطا",
-"The app name is not specified." => "نام برنامه تعیین نشده است.",
-"The required file {file} is not installed!" => "پرونده { پرونده} درخواست شده نصب نشده است !",
"Shared" => "اشتراک گذاشته شده",
"Share" => "اشتراکگذاری",
+"Error" => "خطا",
"Error while sharing" => "خطا درحال به اشتراک گذاشتن",
"Error while unsharing" => "خطا درحال لغو اشتراک",
"Error while changing permissions" => "خطا در حال تغییر مجوز",
@@ -84,6 +73,9 @@ $TRANSLATIONS = array(
"Sending ..." => "درحال ارسال ...",
"Email sent" => "ایمیل ارسال شد",
"Warning" => "اخطار",
+"The object type is not specified." => "نوع شی تعیین نشده است.",
+"Delete" => "حذف",
+"Add" => "افزودن",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "به روز رسانی ناموفق بود. لطفا این خطا را به جامعه ی OwnCloud گزارش نمایید.",
"The update was successful. Redirecting you to ownCloud now." => "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.",
"Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}",
@@ -105,8 +97,6 @@ $TRANSLATIONS = array(
"Help" => "راهنما",
"Access forbidden" => "اجازه دسترسی به مناطق ممنوعه را ندارید",
"Cloud not found" => "پیدا نشد",
-"Edit categories" => "ویرایش گروه",
-"Add" => "افزودن",
"Security Warning" => "اخطار امنیتی",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "نسخه ی PHP شما در برابر حملات NULL Byte آسیب پذیر است.(CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "هیچ مولد تصادفی امن در دسترس نیست، لطفا فرمت PHP OpenSSL را فعال نمایید.",
diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php
index c6c9f09e1dd..fee88e1c78f 100644
--- a/core/l10n/fi_FI.php
+++ b/core/l10n/fi_FI.php
@@ -9,12 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Päivitetään tiedostojen välimuistia, tämä saattaa kestää todella kauan...",
"Updated filecache" => "Tiedostojen välimuisti päivitetty",
"... %d%% done ..." => "... %d%% valmis ...",
-"Category type not provided." => "Luokan tyyppiä ei määritelty.",
-"No category to add?" => "Ei lisättävää luokkaa?",
-"This category already exists: %s" => "Luokka on jo olemassa: %s",
-"Error adding %s to favorites." => "Virhe lisätessä kohdetta %s suosikkeihin.",
-"No categories selected for deletion." => "Luokkia ei valittu poistettavaksi.",
-"Error removing %s from favorites." => "Virhe poistaessa kohdetta %s suosikeista.",
"No image or file provided" => "Kuvaa tai tiedostoa ei määritelty",
"Unknown filetype" => "Tuntematon tiedostotyyppi",
"Invalid image" => "Virhellinen kuva",
@@ -61,11 +55,9 @@ $TRANSLATIONS = array(
"Continue" => "Jatka",
"(all selected)" => "(kaikki valittu)",
"({count} selected)" => "({count} valittu)",
-"Error" => "Virhe",
-"The app name is not specified." => "Sovelluksen nimeä ei ole määritelty.",
-"The required file {file} is not installed!" => "Vaadittua tiedostoa {file} ei ole asennettu!",
"Shared" => "Jaettu",
"Share" => "Jaa",
+"Error" => "Virhe",
"Error while sharing" => "Virhe jaettaessa",
"Error while unsharing" => "Virhe jakoa peruttaessa",
"Error while changing permissions" => "Virhe oikeuksia muuttaessa",
@@ -98,6 +90,8 @@ $TRANSLATIONS = array(
"Sending ..." => "Lähetetään...",
"Email sent" => "Sähköposti lähetetty",
"Warning" => "Varoitus",
+"Delete" => "Poista",
+"Add" => "Lisää",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Päivitys epäonnistui. Ilmoita ongelmasta ownCloud-yhteisölle.",
"The update was successful. Redirecting you to ownCloud now." => "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi.",
"%s password reset" => "%s salasanan nollaus",
@@ -121,8 +115,6 @@ $TRANSLATIONS = array(
"Cloud not found" => "Pilveä ei löydy",
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n",
"The share will expire on %s.\n\n" => "Jakaminen päättyy %s.\n\n",
-"Edit categories" => "Muokkaa luokkia",
-"Add" => "Lisää",
"Security Warning" => "Turvallisuusvaroitus",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Päivitä PHP-asennus varmistaaksesi, että %s on turvallinen käyttää.",
@@ -146,6 +138,8 @@ $TRANSLATIONS = array(
"Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!",
"If you did not change your password recently, your account may be compromised!" => "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu.",
"Please change your password to secure your account again." => "Vaihda salasanasi suojataksesi tilisi uudelleen.",
+"Server side authentication failed!" => "Palvelimen puoleinen tunnistautuminen epäonnistui!",
+"Please contact your administrator." => "Ota yhteys ylläpitäjään.",
"Lost your password?" => "Unohditko salasanasi?",
"remember" => "muista",
"Log in" => "Kirjaudu sisään",
diff --git a/core/l10n/fr.php b/core/l10n/fr.php
index 83460f43343..82b93172a1e 100644
--- a/core/l10n/fr.php
+++ b/core/l10n/fr.php
@@ -1,6 +1,7 @@
"%s partagé »%s« avec vous",
+"Couldn't send mail to following users: %s " => "Impossible d'envoyer un mail aux utilisateurs suivant : %s",
"group" => "groupe",
"Turned on maintenance mode" => "Basculé en mode maintenance",
"Turned off maintenance mode" => "Basculé en mode production (non maintenance)",
@@ -8,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "En cours de mise à jour de cache de fichiers. Cette opération peut être très longue...",
"Updated filecache" => "Cache de fichier mis à jour",
"... %d%% done ..." => "... %d%% effectué ...",
-"Category type not provided." => "Type de catégorie non spécifié.",
-"No category to add?" => "Pas de catégorie à ajouter ?",
-"This category already exists: %s" => "Cette catégorie existe déjà : %s",
-"Object type not provided." => "Type d'objet non spécifié.",
-"%s ID not provided." => "L'identifiant de %s n'est pas spécifié.",
-"Error adding %s to favorites." => "Erreur lors de l'ajout de %s aux favoris.",
-"No categories selected for deletion." => "Pas de catégorie sélectionnée pour la suppression.",
-"Error removing %s from favorites." => "Erreur lors de la suppression de %s des favoris.",
"No image or file provided" => "Aucune image ou fichier fourni",
"Unknown filetype" => "Type de fichier inconnu",
"Invalid image" => "Image invalide",
@@ -67,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(tous sélectionnés)",
"({count} selected)" => "({count} sélectionnés)",
"Error loading file exists template" => "Erreur de chargement du modèle de fichier existant",
-"The object type is not specified." => "Le type d'objet n'est pas spécifié.",
-"Error" => "Erreur",
-"The app name is not specified." => "Le nom de l'application n'est pas spécifié.",
-"The required file {file} is not installed!" => "Le fichier requis {file} n'est pas installé !",
"Shared" => "Partagé",
"Share" => "Partager",
+"Error" => "Erreur",
"Error while sharing" => "Erreur lors de la mise en partage",
"Error while unsharing" => "Erreur lors de l'annulation du partage",
"Error while changing permissions" => "Erreur lors du changement des permissions",
@@ -92,6 +82,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Le repartage n'est pas autorisé",
"Shared in {item} with {user}" => "Partagé dans {item} avec {user}",
"Unshare" => "Ne plus partager",
+"notify user by email" => "Prévenir l'utilisateur par couriel",
"can edit" => "édition autorisée",
"access control" => "contrôle des accès",
"create" => "créer",
@@ -104,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "En cours d'envoi ...",
"Email sent" => "Email envoyé",
"Warning" => "Attention",
+"The object type is not specified." => "Le type d'objet n'est pas spécifié.",
+"Delete" => "Supprimer",
+"Add" => "Ajouter",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "La mise à jour a échoué. Veuillez signaler ce problème à la communauté ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.",
"%s password reset" => "Réinitialisation de votre mot de passe %s",
@@ -126,8 +120,9 @@ $TRANSLATIONS = array(
"Help" => "Aide",
"Access forbidden" => "Accès interdit",
"Cloud not found" => "Introuvable",
-"Edit categories" => "Editer les catégories",
-"Add" => "Ajouter",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Bonjour,\n\nJuste pour vous signaler que %s a partagé %s avec vous.\nConsultez-le : %s\n",
+"The share will expire on %s.\n\n" => "Le partage expire le %s.\n\n",
+"Cheers!" => "Salutations!",
"Security Warning" => "Avertissement de sécurité",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Veuillez mettre à jour votre installation PHP pour utiliser %s de façon sécurisée.",
@@ -146,15 +141,20 @@ $TRANSLATIONS = array(
"Database tablespace" => "Tablespaces de la base de données",
"Database host" => "Serveur de la base de données",
"Finish setup" => "Terminer l'installation",
+"Finishing …" => "En cours de finalisation...",
"%s is available. Get more information on how to update." => "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour.",
"Log out" => "Se déconnecter",
"Automatic logon rejected!" => "Connexion automatique rejetée !",
"If you did not change your password recently, your account may be compromised!" => "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !",
"Please change your password to secure your account again." => "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte.",
+"Server side authentication failed!" => "L'authentification côté serveur a échoué !",
+"Please contact your administrator." => "Veuillez contacter votre administrateur.",
"Lost your password?" => "Mot de passe perdu ?",
"remember" => "se souvenir de moi",
"Log in" => "Connexion",
"Alternative Logins" => "Logins alternatifs",
+"Hey there,
just letting you know that %s shared »%s« with you. View it!
" => "Bonjour,
Juste pour vous informer que %s a partagé »%s« avec vous. Consultez-le !
",
+"The share will expire on %s.
" => "Le partage expirera le %s.
",
"Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps."
);
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";
diff --git a/core/l10n/gl.php b/core/l10n/gl.php
index 3325a894f48..c8dbb9e9c55 100644
--- a/core/l10n/gl.php
+++ b/core/l10n/gl.php
@@ -9,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Actualizando o ficheiro da caché, isto pode levar bastante tempo...",
"Updated filecache" => "Ficheiro da caché actualizado",
"... %d%% done ..." => "... %d%% feito ...",
-"Category type not provided." => "Non se indicou o tipo de categoría",
-"No category to add?" => "Sen categoría que engadir?",
-"This category already exists: %s" => "Esta categoría xa existe: %s",
-"Object type not provided." => "Non se forneceu o tipo de obxecto.",
-"%s ID not provided." => "Non se forneceu o ID %s.",
-"Error adding %s to favorites." => "Produciuse un erro ao engadir %s aos favoritos.",
-"No categories selected for deletion." => "Non se seleccionaron categorías para eliminación.",
-"Error removing %s from favorites." => "Produciuse un erro ao eliminar %s dos favoritos.",
"No image or file provided" => "Non forneceu ningunha imaxe ou ficheiro",
"Unknown filetype" => "Tipo de ficheiro descoñecido",
"Invalid image" => "Imaxe incorrecta",
@@ -68,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(todo o seleccionado)",
"({count} selected)" => "({count} seleccionados)",
"Error loading file exists template" => "Produciuse un erro ao cargar o modelo de ficheiro existente",
-"The object type is not specified." => "Non se especificou o tipo de obxecto.",
-"Error" => "Erro",
-"The app name is not specified." => "Non se especificou o nome do aplicativo.",
-"The required file {file} is not installed!" => "Non está instalado o ficheiro {file} que se precisa",
"Shared" => "Compartir",
"Share" => "Compartir",
+"Error" => "Erro",
"Error while sharing" => "Produciuse un erro ao compartir",
"Error while unsharing" => "Produciuse un erro ao deixar de compartir",
"Error while changing permissions" => "Produciuse un erro ao cambiar os permisos",
@@ -106,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Enviando...",
"Email sent" => "Correo enviado",
"Warning" => "Aviso",
+"The object type is not specified." => "Non se especificou o tipo de obxecto.",
+"Delete" => "Eliminar",
+"Add" => "Engadir",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualización non foi satisfactoria, informe deste problema á comunidade de ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "A actualización realizouse correctamente. Redirixíndoo agora á ownCloud.",
"%s password reset" => "Restabelecer o contrasinal %s",
@@ -131,8 +123,6 @@ $TRANSLATIONS = array(
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n",
"The share will expire on %s.\n\n" => "Esta compartición caduca o %s.\n\n",
"Cheers!" => "Saúdos!",
-"Edit categories" => "Editar as categorías",
-"Add" => "Engadir",
"Security Warning" => "Aviso de seguranza",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A súa versión de PHP é vulnerábel a un ataque de byte nulo (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Actualice a instalación de PHP para empregar %s de xeito seguro.",
@@ -157,6 +147,8 @@ $TRANSLATIONS = array(
"Automatic logon rejected!" => "Rexeitouse a entrada automática",
"If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!",
"Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.",
+"Server side authentication failed!" => "A autenticación fracasou do lado do servidor!",
+"Please contact your administrator." => "Contacte co administrador.",
"Lost your password?" => "Perdeu o contrasinal?",
"remember" => "lembrar",
"Log in" => "Conectar",
diff --git a/core/l10n/he.php b/core/l10n/he.php
index 30ef27664ea..5b81ec547d9 100644
--- a/core/l10n/he.php
+++ b/core/l10n/he.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s שיתף/שיתפה איתך את »%s«",
"group" => "קבוצה",
-"Category type not provided." => "סוג הקטגוריה לא סופק.",
-"No category to add?" => "אין קטגוריה להוספה?",
-"This category already exists: %s" => "הקטגוריה הבאה כבר קיימת: %s",
-"Object type not provided." => "סוג הפריט לא סופק.",
-"%s ID not provided." => "מזהה %s לא סופק.",
-"Error adding %s to favorites." => "אירעה שגיאה בעת הוספת %s למועדפים.",
-"No categories selected for deletion." => "לא נבחרו קטגוריות למחיקה",
-"Error removing %s from favorites." => "שגיאה בהסרת %s מהמועדפים.",
"Sunday" => "יום ראשון",
"Monday" => "יום שני",
"Tuesday" => "יום שלישי",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "בסדר",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "ביטול",
-"The object type is not specified." => "סוג הפריט לא צוין.",
-"Error" => "שגיאה",
-"The app name is not specified." => "שם היישום לא צוין.",
-"The required file {file} is not installed!" => "הקובץ הנדרש {file} אינו מותקן!",
"Shared" => "שותף",
"Share" => "שתף",
+"Error" => "שגיאה",
"Error while sharing" => "שגיאה במהלך השיתוף",
"Error while unsharing" => "שגיאה במהלך ביטול השיתוף",
"Error while changing permissions" => "שגיאה במהלך שינוי ההגדרות",
@@ -83,6 +72,9 @@ $TRANSLATIONS = array(
"Sending ..." => "מתבצעת שליחה ...",
"Email sent" => "הודעת הדוא״ל נשלחה",
"Warning" => "אזהרה",
+"The object type is not specified." => "סוג הפריט לא צוין.",
+"Delete" => "מחיקה",
+"Add" => "הוספה",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "תהליך העדכון לא הושלם בהצלחה. נא דווח את הבעיה בקהילת ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud.",
"Use the following link to reset your password: {link}" => "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}",
@@ -103,8 +95,6 @@ $TRANSLATIONS = array(
"Help" => "עזרה",
"Access forbidden" => "הגישה נחסמה",
"Cloud not found" => "ענן לא נמצא",
-"Edit categories" => "ערוך קטגוריות",
-"Add" => "הוספה",
"Security Warning" => "אזהרת אבטחה",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "גרסת ה־PHP פגיעה בפני התקפת בית NULL/ריק (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "נא לעדכן את התקנת ה-PHP שלך כדי להשתמש ב-%s בצורה מאובטחת.",
diff --git a/core/l10n/hi.php b/core/l10n/hi.php
index ec9381c787d..c8bfaac9267 100644
--- a/core/l10n/hi.php
+++ b/core/l10n/hi.php
@@ -1,8 +1,5 @@
"कैटेगरी प्रकार उपलब्ध नहीं है",
-"This category already exists: %s" => "यह कैटेगरी पहले से ही मौजूद है: %s",
-"Object type not provided." => "ऑब्जेक्ट प्रकार नहीं दिया हुआ",
"Sunday" => "रविवार",
"Monday" => "सोमवार",
"Tuesday" => "मंगलवार",
@@ -28,8 +25,8 @@ $TRANSLATIONS = array(
"_%n day ago_::_%n days ago_" => array("",""),
"_%n month ago_::_%n months ago_" => array("",""),
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
-"Error" => "त्रुटि",
"Share" => "साझा करें",
+"Error" => "त्रुटि",
"Share with" => "के साथ साझा",
"Password" => "पासवर्ड",
"Send" => "भेजें",
@@ -37,6 +34,7 @@ $TRANSLATIONS = array(
"Sending ..." => "भेजा जा रहा है",
"Email sent" => "ईमेल भेज दिया गया है ",
"Warning" => "चेतावनी ",
+"Add" => "डाले",
"Use the following link to reset your password: {link}" => "आगे दिये गये लिंक का उपयोग पासवर्ड बदलने के लिये किजीये: {link}",
"You will receive a link to reset your password via Email." => "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|",
"Username" => "प्रयोक्ता का नाम",
@@ -47,7 +45,6 @@ $TRANSLATIONS = array(
"Apps" => "Apps",
"Help" => "सहयोग",
"Cloud not found" => "क्लौड नहीं मिला ",
-"Add" => "डाले",
"Security Warning" => "सुरक्षा चेतावनी ",
"Create an admin account" => "व्यवस्थापक खाता बनाएँ",
"Advanced" => "उन्नत",
diff --git a/core/l10n/hr.php b/core/l10n/hr.php
index 7fa81db8a21..4278dfa7b05 100644
--- a/core/l10n/hr.php
+++ b/core/l10n/hr.php
@@ -1,7 +1,5 @@
"Nemate kategorija koje možete dodati?",
-"No categories selected for deletion." => "Niti jedna kategorija nije odabrana za brisanje.",
"Sunday" => "nedelja",
"Monday" => "ponedeljak",
"Tuesday" => "utorak",
@@ -39,8 +37,8 @@ $TRANSLATIONS = array(
"Ok" => "U redu",
"_{count} file conflict_::_{count} file conflicts_" => array("","",""),
"Cancel" => "Odustani",
-"Error" => "Greška",
"Share" => "Podijeli",
+"Error" => "Greška",
"Error while sharing" => "Greška prilikom djeljenja",
"Error while unsharing" => "Greška prilikom isključivanja djeljenja",
"Error while changing permissions" => "Greška prilikom promjena prava",
@@ -63,6 +61,8 @@ $TRANSLATIONS = array(
"Password protected" => "Zaštita lozinkom",
"Error unsetting expiration date" => "Greška prilikom brisanja datuma isteka",
"Error setting expiration date" => "Greška prilikom postavljanja datuma isteka",
+"Delete" => "Obriši",
+"Add" => "Dodaj",
"Use the following link to reset your password: {link}" => "Koristite ovaj link da biste poništili lozinku: {link}",
"You will receive a link to reset your password via Email." => "Primit ćete link kako biste poništili zaporku putem e-maila.",
"Username" => "Korisničko ime",
@@ -78,8 +78,6 @@ $TRANSLATIONS = array(
"Help" => "Pomoć",
"Access forbidden" => "Pristup zabranjen",
"Cloud not found" => "Cloud nije pronađen",
-"Edit categories" => "Uredi kategorije",
-"Add" => "Dodaj",
"Create an admin account" => "Stvori administratorski račun",
"Advanced" => "Napredno",
"Data folder" => "Mapa baze podataka",
diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php
index 2cc473a9c01..f2d9d1ba22a 100644
--- a/core/l10n/hu_HU.php
+++ b/core/l10n/hu_HU.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "A filecache frissítése folyamatban, ez a folyamat hosszabb ideig is eltarthat...",
"Updated filecache" => "Filecache frissítve",
"... %d%% done ..." => "... %d%% kész ...",
-"Category type not provided." => "Nincs megadva a kategória típusa.",
-"No category to add?" => "Nincs hozzáadandó kategória?",
-"This category already exists: %s" => "Ez a kategória már létezik: %s",
-"Object type not provided." => "Az objektum típusa nincs megadva.",
-"%s ID not provided." => "%s ID nincs megadva.",
-"Error adding %s to favorites." => "Nem sikerült a kedvencekhez adni ezt: %s",
-"No categories selected for deletion." => "Nincs törlésre jelölt kategória",
-"Error removing %s from favorites." => "Nem sikerült a kedvencekből törölni ezt: %s",
"No image or file provided" => "Nincs kép vagy file megadva",
"Unknown filetype" => "Ismeretlen file tipús",
"Invalid image" => "Hibás kép",
@@ -67,12 +59,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(all selected)",
"({count} selected)" => "({count} kiválasztva)",
"Error loading file exists template" => "Hiba a létező sablon betöltésekor",
-"The object type is not specified." => "Az objektum típusa nincs megadva.",
-"Error" => "Hiba",
-"The app name is not specified." => "Az alkalmazás neve nincs megadva.",
-"The required file {file} is not installed!" => "A szükséges fájl: {file} nincs telepítve!",
"Shared" => "Megosztott",
"Share" => "Megosztás",
+"Error" => "Hiba",
"Error while sharing" => "Nem sikerült létrehozni a megosztást",
"Error while unsharing" => "Nem sikerült visszavonni a megosztást",
"Error while changing permissions" => "Nem sikerült módosítani a jogosultságokat",
@@ -104,6 +93,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Küldés ...",
"Email sent" => "Az emailt elküldtük",
"Warning" => "Figyelmeztetés",
+"The object type is not specified." => "Az objektum típusa nincs megadva.",
+"Delete" => "Törlés",
+"Add" => "Hozzáadás",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az ownCloud közösséget.",
"The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.",
"%s password reset" => "%s jelszó visszaállítás",
@@ -126,8 +118,6 @@ $TRANSLATIONS = array(
"Help" => "Súgó",
"Access forbidden" => "A hozzáférés nem engedélyezett",
"Cloud not found" => "A felhő nem található",
-"Edit categories" => "Kategóriák szerkesztése",
-"Add" => "Hozzáadás",
"Security Warning" => "Biztonsági figyelmeztetés",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Kérjük frissítse a telepített PHP csomagjait, hogy biztonságos legyen az %s szolgáltatása.",
diff --git a/core/l10n/hy.php b/core/l10n/hy.php
index d2b68819c72..29df048fd94 100644
--- a/core/l10n/hy.php
+++ b/core/l10n/hy.php
@@ -23,6 +23,7 @@ $TRANSLATIONS = array(
"_%n hour ago_::_%n hours ago_" => array("",""),
"_%n day ago_::_%n days ago_" => array("",""),
"_%n month ago_::_%n months ago_" => array("",""),
-"_{count} file conflict_::_{count} file conflicts_" => array("","")
+"_{count} file conflict_::_{count} file conflicts_" => array("",""),
+"Delete" => "Ջնջել"
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/core/l10n/ia.php b/core/l10n/ia.php
index 48d2588c002..fce101939e4 100644
--- a/core/l10n/ia.php
+++ b/core/l10n/ia.php
@@ -26,10 +26,12 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("",""),
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Cancellar",
-"Error" => "Error",
"Share" => "Compartir",
+"Error" => "Error",
"Password" => "Contrasigno",
"Send" => "Invia",
+"Delete" => "Deler",
+"Add" => "Adder",
"Username" => "Nomine de usator",
"Request reset" => "Requestar reinitialisation",
"Your password was reset" => "Tu contrasigno esseva reinitialisate",
@@ -43,8 +45,6 @@ $TRANSLATIONS = array(
"Help" => "Adjuta",
"Access forbidden" => "Accesso prohibite",
"Cloud not found" => "Nube non trovate",
-"Edit categories" => "Modificar categorias",
-"Add" => "Adder",
"Create an admin account" => "Crear un conto de administration",
"Advanced" => "Avantiate",
"Data folder" => "Dossier de datos",
diff --git a/core/l10n/id.php b/core/l10n/id.php
index 2b987eecd84..d6ec5f0191d 100644
--- a/core/l10n/id.php
+++ b/core/l10n/id.php
@@ -1,14 +1,6 @@
"grup",
-"Category type not provided." => "Tipe kategori tidak diberikan.",
-"No category to add?" => "Tidak ada kategori yang akan ditambahkan?",
-"This category already exists: %s" => "Kategori ini sudah ada: %s",
-"Object type not provided." => "Tipe objek tidak diberikan.",
-"%s ID not provided." => "ID %s tidak diberikan.",
-"Error adding %s to favorites." => "Galat ketika menambah %s ke favorit",
-"No categories selected for deletion." => "Tidak ada kategori terpilih untuk dihapus.",
-"Error removing %s from favorites." => "Galat ketika menghapus %s dari favorit",
"Sunday" => "Minggu",
"Monday" => "Senin",
"Tuesday" => "Selasa",
@@ -46,12 +38,9 @@ $TRANSLATIONS = array(
"Ok" => "Oke",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "Batal",
-"The object type is not specified." => "Tipe objek tidak ditentukan.",
-"Error" => "Galat",
-"The app name is not specified." => "Nama aplikasi tidak ditentukan.",
-"The required file {file} is not installed!" => "Berkas {file} yang dibutuhkan tidak terpasang!",
"Shared" => "Dibagikan",
"Share" => "Bagikan",
+"Error" => "Galat",
"Error while sharing" => "Galat ketika membagikan",
"Error while unsharing" => "Galat ketika membatalkan pembagian",
"Error while changing permissions" => "Galat ketika mengubah izin",
@@ -82,6 +71,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Mengirim ...",
"Email sent" => "Email terkirim",
"Warning" => "Peringatan",
+"The object type is not specified." => "Tipe objek tidak ditentukan.",
+"Delete" => "Hapus",
+"Add" => "Tambah",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.",
"Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}",
@@ -99,8 +91,6 @@ $TRANSLATIONS = array(
"Help" => "Bantuan",
"Access forbidden" => "Akses ditolak",
"Cloud not found" => "Cloud tidak ditemukan",
-"Edit categories" => "Edit kategori",
-"Add" => "Tambah",
"Security Warning" => "Peringatan Keamanan",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generator acak yang aman tidak tersedia, silakan aktifkan ekstensi OpenSSL pada PHP.",
diff --git a/core/l10n/is.php b/core/l10n/is.php
index f72b7290b8f..0de5568aa1e 100644
--- a/core/l10n/is.php
+++ b/core/l10n/is.php
@@ -1,12 +1,5 @@
"Flokkur ekki gefin",
-"No category to add?" => "Enginn flokkur til að bæta við?",
-"Object type not provided." => "Tegund ekki í boði.",
-"%s ID not provided." => "%s ID ekki í boði.",
-"Error adding %s to favorites." => "Villa við að bæta %s við eftirlæti.",
-"No categories selected for deletion." => "Enginn flokkur valinn til eyðingar.",
-"Error removing %s from favorites." => "Villa við að fjarlægja %s úr eftirlæti.",
"Sunday" => "Sunnudagur",
"Monday" => "Mánudagur",
"Tuesday" => "Þriðjudagur",
@@ -44,12 +37,9 @@ $TRANSLATIONS = array(
"Ok" => "Í lagi",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Hætta við",
-"The object type is not specified." => "Tegund ekki tilgreind",
-"Error" => "Villa",
-"The app name is not specified." => "Nafn forrits ekki tilgreint",
-"The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!",
"Shared" => "Deilt",
"Share" => "Deila",
+"Error" => "Villa",
"Error while sharing" => "Villa við deilingu",
"Error while unsharing" => "Villa við að hætta deilingu",
"Error while changing permissions" => "Villa við að breyta aðgangsheimildum",
@@ -80,6 +70,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sendi ...",
"Email sent" => "Tölvupóstur sendur",
"Warning" => "Aðvörun",
+"The object type is not specified." => "Tegund ekki tilgreind",
+"Delete" => "Eyða",
+"Add" => "Bæta við",
"The update was successful. Redirecting you to ownCloud now." => "Uppfærslan heppnaðist. Beini þér til ownCloud nú.",
"Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}",
"You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.",
@@ -96,8 +89,6 @@ $TRANSLATIONS = array(
"Help" => "Hjálp",
"Access forbidden" => "Aðgangur bannaður",
"Cloud not found" => "Ský finnst ekki",
-"Edit categories" => "Breyta flokkum",
-"Add" => "Bæta við",
"Security Warning" => "Öryggis aðvörun",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Enginn traustur slembitölugjafi í boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Án öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn.",
diff --git a/core/l10n/it.php b/core/l10n/it.php
index 0b2d3768b0c..1cb1a39c743 100644
--- a/core/l10n/it.php
+++ b/core/l10n/it.php
@@ -9,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Aggiornamento della cache dei file in corso, potrebbe richiedere molto tempo...",
"Updated filecache" => "Cache dei file aggiornata",
"... %d%% done ..." => "... %d%% completato ...",
-"Category type not provided." => "Tipo di categoria non fornito.",
-"No category to add?" => "Nessuna categoria da aggiungere?",
-"This category already exists: %s" => "Questa categoria esiste già: %s",
-"Object type not provided." => "Tipo di oggetto non fornito.",
-"%s ID not provided." => "ID %s non fornito.",
-"Error adding %s to favorites." => "Errore durante l'aggiunta di %s ai preferiti.",
-"No categories selected for deletion." => "Nessuna categoria selezionata per l'eliminazione.",
-"Error removing %s from favorites." => "Errore durante la rimozione di %s dai preferiti.",
"No image or file provided" => "Non è stata fornita alcun immagine o file",
"Unknown filetype" => "Tipo di file sconosciuto",
"Invalid image" => "Immagine non valida",
@@ -68,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(tutti i selezionati)",
"({count} selected)" => "({count} selezionati)",
"Error loading file exists template" => "Errore durante il caricamento del modello del file esistente",
-"The object type is not specified." => "Il tipo di oggetto non è specificato.",
-"Error" => "Errore",
-"The app name is not specified." => "Il nome dell'applicazione non è specificato.",
-"The required file {file} is not installed!" => "Il file richiesto {file} non è installato!",
"Shared" => "Condivisi",
"Share" => "Condividi",
+"Error" => "Errore",
"Error while sharing" => "Errore durante la condivisione",
"Error while unsharing" => "Errore durante la rimozione della condivisione",
"Error while changing permissions" => "Errore durante la modifica dei permessi",
@@ -106,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Invio in corso...",
"Email sent" => "Messaggio inviato",
"Warning" => "Avviso",
+"The object type is not specified." => "Il tipo di oggetto non è specificato.",
+"Delete" => "Elimina",
+"Add" => "Aggiungi",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "L'aggiornamento non è riuscito. Segnala il problema alla comunità di ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud.",
"%s password reset" => "Ripristino password di %s",
@@ -131,8 +123,6 @@ $TRANSLATIONS = array(
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n",
"The share will expire on %s.\n\n" => "La condivisione scadrà il %s.\n\n",
"Cheers!" => "Saluti!",
-"Edit categories" => "Modifica categorie",
-"Add" => "Aggiungi",
"Security Warning" => "Avviso di sicurezza",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La tua versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Aggiorna la tua installazione di PHP per utilizzare %s in sicurezza.",
diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php
index bf8313f7176..00587e85301 100644
--- a/core/l10n/ja_JP.php
+++ b/core/l10n/ja_JP.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "ファイルキャッシュを更新しています、しばらく掛かる恐れがあります...",
"Updated filecache" => "ファイルキャッシュ更新完了",
"... %d%% done ..." => "... %d%% 完了 ...",
-"Category type not provided." => "カテゴリタイプは提供されていません。",
-"No category to add?" => "追加するカテゴリはありませんか?",
-"This category already exists: %s" => "このカテゴリはすでに存在します: %s",
-"Object type not provided." => "オブジェクトタイプは提供されていません。",
-"%s ID not provided." => "%s ID は提供されていません。",
-"Error adding %s to favorites." => "お気に入りに %s を追加エラー",
-"No categories selected for deletion." => "削除するカテゴリが選択されていません。",
-"Error removing %s from favorites." => "お気に入りから %s の削除エラー",
"No image or file provided" => "画像もしくはファイルが提供されていません",
"Unknown filetype" => "不明なファイルタイプ",
"Invalid image" => "無効な画像",
@@ -67,12 +59,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(全て選択)",
"({count} selected)" => "({count} 選択)",
"Error loading file exists template" => "既存ファイルのテンプレートの読み込みエラー",
-"The object type is not specified." => "オブジェクタイプが指定されていません。",
-"Error" => "エラー",
-"The app name is not specified." => "アプリ名がしていされていません。",
-"The required file {file} is not installed!" => "必要なファイル {file} がインストールされていません!",
"Shared" => "共有中",
"Share" => "共有",
+"Error" => "エラー",
"Error while sharing" => "共有でエラー発生",
"Error while unsharing" => "共有解除でエラー発生",
"Error while changing permissions" => "権限変更でエラー発生",
@@ -104,6 +93,9 @@ $TRANSLATIONS = array(
"Sending ..." => "送信中...",
"Email sent" => "メールを送信しました",
"Warning" => "警告",
+"The object type is not specified." => "オブジェクタイプが指定されていません。",
+"Delete" => "削除",
+"Add" => "追加",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "更新に成功しました。この問題を ownCloud community にレポートしてください。",
"The update was successful. Redirecting you to ownCloud now." => "更新に成功しました。今すぐownCloudにリダイレクトします。",
"%s password reset" => "%s パスワードリセット",
@@ -126,8 +118,6 @@ $TRANSLATIONS = array(
"Help" => "ヘルプ",
"Access forbidden" => "アクセスが禁止されています",
"Cloud not found" => "見つかりません",
-"Edit categories" => "カテゴリを編集",
-"Add" => "追加",
"Security Warning" => "セキュリティ警告",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。",
"Please update your PHP installation to use %s securely." => "%s を安全に利用する為に インストールされているPHPをアップデートしてください。",
diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php
index a32960e1a23..4e38aeede13 100644
--- a/core/l10n/ka_GE.php
+++ b/core/l10n/ka_GE.php
@@ -1,14 +1,6 @@
"ჯგუფი",
-"Category type not provided." => "კატეგორიის ტიპი არ არის განხილული.",
-"No category to add?" => "არ არის კატეგორია დასამატებლად?",
-"This category already exists: %s" => "კატეგორია უკვე არსებობს: %s",
-"Object type not provided." => "ობიექტის ტიპი არ არის განხილული.",
-"%s ID not provided." => "%s ID არ არის განხილული",
-"Error adding %s to favorites." => "შეცდომა %s–ის ფევორიტებში დამატების დროს.",
-"No categories selected for deletion." => "სარედაქტირებელი კატეგორია არ არის არჩეული ",
-"Error removing %s from favorites." => "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს.",
"Sunday" => "კვირა",
"Monday" => "ორშაბათი",
"Tuesday" => "სამშაბათი",
@@ -46,12 +38,9 @@ $TRANSLATIONS = array(
"Ok" => "დიახ",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "უარყოფა",
-"The object type is not specified." => "ობიექტის ტიპი არ არის მითითებული.",
-"Error" => "შეცდომა",
-"The app name is not specified." => "აპლიკაციის სახელი არ არის მითითებული.",
-"The required file {file} is not installed!" => "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული.",
"Shared" => "გაზიარებული",
"Share" => "გაზიარება",
+"Error" => "შეცდომა",
"Error while sharing" => "შეცდომა გაზიარების დროს",
"Error while unsharing" => "შეცდომა გაზიარების გაუქმების დროს",
"Error while changing permissions" => "შეცდომა დაშვების ცვლილების დროს",
@@ -82,6 +71,9 @@ $TRANSLATIONS = array(
"Sending ..." => "გაგზავნა ....",
"Email sent" => "იმეილი გაიგზავნა",
"Warning" => "გაფრთხილება",
+"The object type is not specified." => "ობიექტის ტიპი არ არის მითითებული.",
+"Delete" => "წაშლა",
+"Add" => "დამატება",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community.",
"The update was successful. Redirecting you to ownCloud now." => "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე.",
"Use the following link to reset your password: {link}" => "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}",
@@ -99,8 +91,6 @@ $TRANSLATIONS = array(
"Help" => "დახმარება",
"Access forbidden" => "წვდომა აკრძალულია",
"Cloud not found" => "ღრუბელი არ არსებობს",
-"Edit categories" => "კატეგორიების რედაქტირება",
-"Add" => "დამატება",
"Security Warning" => "უსაფრთხოების გაფრთხილება",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "შემთხვევითი სიმბოლოების გენერატორი არ არსებობს, გთხოვთ ჩართოთ PHP OpenSSL გაფართოება.",
diff --git a/core/l10n/ko.php b/core/l10n/ko.php
index 92c7b96f01c..9eccf12d089 100644
--- a/core/l10n/ko.php
+++ b/core/l10n/ko.php
@@ -1,14 +1,6 @@
"그룹",
-"Category type not provided." => "분류 형식이 제공되지 않았습니다.",
-"No category to add?" => "추가할 분류가 없습니까?",
-"This category already exists: %s" => "분류가 이미 존재합니다: %s",
-"Object type not provided." => "객체 형식이 제공되지 않았습니다.",
-"%s ID not provided." => "%s ID가 제공되지 않았습니다.",
-"Error adding %s to favorites." => "책갈피에 %s을(를) 추가할 수 없었습니다.",
-"No categories selected for deletion." => "삭제할 분류를 선택하지 않았습니다. ",
-"Error removing %s from favorites." => "책갈피에서 %s을(를) 삭제할 수 없었습니다.",
"Sunday" => "일요일",
"Monday" => "월요일",
"Tuesday" => "화요일",
@@ -46,12 +38,9 @@ $TRANSLATIONS = array(
"Ok" => "승락",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "취소",
-"The object type is not specified." => "객체 유형이 지정되지 않았습니다.",
-"Error" => "오류",
-"The app name is not specified." => "앱 이름이 지정되지 않았습니다.",
-"The required file {file} is not installed!" => "필요한 파일 {file}이(가) 설치되지 않았습니다!",
"Shared" => "공유됨",
"Share" => "공유",
+"Error" => "오류",
"Error while sharing" => "공유하는 중 오류 발생",
"Error while unsharing" => "공유 해제하는 중 오류 발생",
"Error while changing permissions" => "권한 변경하는 중 오류 발생",
@@ -83,6 +72,9 @@ $TRANSLATIONS = array(
"Sending ..." => "전송 중...",
"Email sent" => "이메일 발송됨",
"Warning" => "경고",
+"The object type is not specified." => "객체 유형이 지정되지 않았습니다.",
+"Delete" => "삭제",
+"Add" => "추가",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "업데이트가 실패하였습니다. 이 문제를 ownCloud 커뮤니티에 보고해 주십시오.",
"The update was successful. Redirecting you to ownCloud now." => "업데이트가 성공하였습니다. ownCloud로 돌아갑니다.",
"Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}",
@@ -102,8 +94,6 @@ $TRANSLATIONS = array(
"Help" => "도움말",
"Access forbidden" => "접근 금지됨",
"Cloud not found" => "클라우드를 찾을 수 없습니다",
-"Edit categories" => "분류 수정",
-"Add" => "추가",
"Security Warning" => "보안 경고",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "사용 중인 PHP 버전이 NULL 바이트 공격에 취약합니다 (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "안전한 난수 생성기를 사용할 수 없습니다. PHP의 OpenSSL 확장을 활성화해 주십시오.",
diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php
index e11cf0b5a96..b809c643173 100644
--- a/core/l10n/ku_IQ.php
+++ b/core/l10n/ku_IQ.php
@@ -6,10 +6,11 @@ $TRANSLATIONS = array(
"_%n day ago_::_%n days ago_" => array("",""),
"_%n month ago_::_%n months ago_" => array("",""),
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
-"Error" => "ههڵه",
"Share" => "هاوبەشی کردن",
+"Error" => "ههڵه",
"Password" => "وشەی تێپەربو",
"Warning" => "ئاگاداری",
+"Add" => "زیادکردن",
"Username" => "ناوی بهکارهێنهر",
"New password" => "وشەی نهێنی نوێ",
"Reset password" => "دووباره كردنهوهی وشهی نهێنی",
@@ -18,7 +19,6 @@ $TRANSLATIONS = array(
"Admin" => "بهڕێوهبهری سهرهكی",
"Help" => "یارمەتی",
"Cloud not found" => "هیچ نهدۆزرایهوه",
-"Add" => "زیادکردن",
"Advanced" => "ههڵبژاردنی پیشكهوتوو",
"Data folder" => "زانیاری فۆڵدهر",
"Database user" => "بهكارهێنهری داتابهیس",
diff --git a/core/l10n/lb.php b/core/l10n/lb.php
index 17e4345ad51..faebdda63d3 100644
--- a/core/l10n/lb.php
+++ b/core/l10n/lb.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "Den/D' %s huet »%s« mat dir gedeelt",
"group" => "Grupp",
-"Category type not provided." => "Typ vun der Kategorie net uginn.",
-"No category to add?" => "Keng Kategorie fir bäizesetzen?",
-"This category already exists: %s" => "Dës Kategorie existéiert schon: %s",
-"Object type not provided." => "Typ vum Objet net uginn.",
-"%s ID not provided." => "%s ID net uginn.",
-"Error adding %s to favorites." => "Feeler beim dobäisetze vun %s bei d'Favoritten.",
-"No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.",
-"Error removing %s from favorites." => "Feeler beim läsche vun %s aus de Favoritten.",
"Sunday" => "Sonndeg",
"Monday" => "Méindeg",
"Tuesday" => "Dënschdeg",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "OK",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Ofbriechen",
-"The object type is not specified." => "Den Typ vum Object ass net uginn.",
-"Error" => "Feeler",
-"The app name is not specified." => "Den Numm vun der App ass net uginn.",
-"The required file {file} is not installed!" => "De benéidegte Fichier {file} ass net installéiert!",
"Shared" => "Gedeelt",
"Share" => "Deelen",
+"Error" => "Feeler",
"Error while sharing" => "Feeler beim Deelen",
"Error while unsharing" => "Feeler beim Annuléiere vum Deelen",
"Error while changing permissions" => "Feeler beim Ännere vun de Rechter",
@@ -84,6 +73,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Gëtt geschéckt...",
"Email sent" => "Email geschéckt",
"Warning" => "Warnung",
+"The object type is not specified." => "Den Typ vum Object ass net uginn.",
+"Delete" => "Läschen",
+"Add" => "Dobäisetzen",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derownCloud-Community.",
"The update was successful. Redirecting you to ownCloud now." => "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet.",
"Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}",
@@ -105,8 +97,6 @@ $TRANSLATIONS = array(
"Help" => "Hëllef",
"Access forbidden" => "Zougrëff net erlaabt",
"Cloud not found" => "Cloud net fonnt",
-"Edit categories" => "Kategorien editéieren",
-"Add" => "Dobäisetzen",
"Security Warning" => "Sécherheets-Warnung",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deng PHP-Versioun ass verwonnbar duerch d'NULL-Byte-Attack (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Et ass kee sécheren Zoufallsgenerator verfügbar. Aktivéier w.e.gl d'OpenSSL-Erweiderung vu PHP.",
diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php
index 7d3ce9bec6f..81e3be95e0f 100644
--- a/core/l10n/lt_LT.php
+++ b/core/l10n/lt_LT.php
@@ -9,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Atnaujinama failų talpykla, tai gali užtrukti labai ilgai...",
"Updated filecache" => "Atnaujinta failų talpykla",
"... %d%% done ..." => "... %d%% atlikta ...",
-"Category type not provided." => "Kategorija nenurodyta.",
-"No category to add?" => "Nepridėsite jokios kategorijos?",
-"This category already exists: %s" => "Ši kategorija jau egzistuoja: %s",
-"Object type not provided." => "Objekto tipas nenurodytas.",
-"%s ID not provided." => "%s ID nenurodytas.",
-"Error adding %s to favorites." => "Klaida perkeliant %s į jūsų mėgstamiausius.",
-"No categories selected for deletion." => "Trynimui nepasirinkta jokia kategorija.",
-"Error removing %s from favorites." => "Klaida ištrinant %s iš jūsų mėgstamiausius.",
"No image or file provided" => "Nenurodytas paveikslėlis ar failas",
"Unknown filetype" => "Nežinomas failo tipas",
"Invalid image" => "Netinkamas paveikslėlis",
@@ -68,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(visi pažymėti)",
"({count} selected)" => "({count} pažymėtų)",
"Error loading file exists template" => "Klaida įkeliant esančių failų ruošinį",
-"The object type is not specified." => "Objekto tipas nenurodytas.",
-"Error" => "Klaida",
-"The app name is not specified." => "Nenurodytas programos pavadinimas.",
-"The required file {file} is not installed!" => "Reikalingas {file} failas nėra įrašytas!",
"Shared" => "Dalinamasi",
"Share" => "Dalintis",
+"Error" => "Klaida",
"Error while sharing" => "Klaida, dalijimosi metu",
"Error while unsharing" => "Klaida, kai atšaukiamas dalijimasis",
"Error while changing permissions" => "Klaida, keičiant privilegijas",
@@ -106,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Siunčiama...",
"Email sent" => "Laiškas išsiųstas",
"Warning" => "Įspėjimas",
+"The object type is not specified." => "Objekto tipas nenurodytas.",
+"Delete" => "Ištrinti",
+"Add" => "Pridėti",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the ownCloud bendruomenei.",
"The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.",
"%s password reset" => "%s slaptažodžio atnaujinimas",
@@ -128,10 +120,9 @@ $TRANSLATIONS = array(
"Help" => "Pagalba",
"Access forbidden" => "Priėjimas draudžiamas",
"Cloud not found" => "Negalima rasti",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n",
"The share will expire on %s.\n\n" => "Bendrinimo laikas baigsis %s.\n",
"Cheers!" => "Sveikinimai!",
-"Edit categories" => "Redaguoti kategorijas",
-"Add" => "Pridėti",
"Security Warning" => "Saugumo pranešimas",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jūsų PHP versija yra pažeidžiama prieš NULL Byte ataką (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Prašome atnaujinti savo PHP, kad saugiai naudoti %s.",
@@ -160,6 +151,7 @@ $TRANSLATIONS = array(
"remember" => "prisiminti",
"Log in" => "Prisijungti",
"Alternative Logins" => "Alternatyvūs prisijungimai",
+"Hey there,
just letting you know that %s shared »%s« with you. View it!
" => "Labas,
tik informuojame, kad %s pasidalino su Jumis »%s«. Peržiūrėk!
",
"The share will expire on %s.
" => "Bendrinimo laikas baigsis %s.
",
"Updating ownCloud to version %s, this may take a while." => "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti."
);
diff --git a/core/l10n/lv.php b/core/l10n/lv.php
index 998a03c5dd1..647ad2bca3f 100644
--- a/core/l10n/lv.php
+++ b/core/l10n/lv.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s kopīgots »%s« ar jums",
"group" => "grupa",
-"Category type not provided." => "Kategorijas tips nav norādīts.",
-"No category to add?" => "Nav kategoriju, ko pievienot?",
-"This category already exists: %s" => "Šāda kategorija jau eksistē — %s",
-"Object type not provided." => "Objekta tips nav norādīts.",
-"%s ID not provided." => "%s ID nav norādīts.",
-"Error adding %s to favorites." => "Kļūda, pievienojot %s izlasei.",
-"No categories selected for deletion." => "Neviena kategorija nav izvēlēta dzēšanai.",
-"Error removing %s from favorites." => "Kļūda, izņemot %s no izlases.",
"Sunday" => "Svētdiena",
"Monday" => "Pirmdiena",
"Tuesday" => "Otrdiena",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "Labi",
"_{count} file conflict_::_{count} file conflicts_" => array("","",""),
"Cancel" => "Atcelt",
-"The object type is not specified." => "Nav norādīts objekta tips.",
-"Error" => "Kļūda",
-"The app name is not specified." => "Nav norādīts lietotnes nosaukums.",
-"The required file {file} is not installed!" => "Pieprasītā datne {file} nav instalēta!",
"Shared" => "Kopīgs",
"Share" => "Dalīties",
+"Error" => "Kļūda",
"Error while sharing" => "Kļūda, daloties",
"Error while unsharing" => "Kļūda, beidzot dalīties",
"Error while changing permissions" => "Kļūda, mainot atļaujas",
@@ -84,6 +73,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sūta...",
"Email sent" => "Vēstule nosūtīta",
"Warning" => "Brīdinājums",
+"The object type is not specified." => "Nav norādīts objekta tips.",
+"Delete" => "Dzēst",
+"Add" => "Pievienot",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu ownCloud kopienai.",
"The update was successful. Redirecting you to ownCloud now." => "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud.",
"%s password reset" => "%s paroles maiņa",
@@ -106,8 +98,6 @@ $TRANSLATIONS = array(
"Help" => "Palīdzība",
"Access forbidden" => "Pieeja ir liegta",
"Cloud not found" => "Mākonis netika atrasts",
-"Edit categories" => "Rediģēt kategoriju",
-"Add" => "Pievienot",
"Security Warning" => "Brīdinājums par drošību",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jūsu PHP ir ievainojamība pret NULL Byte uzbrukumiem (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Lūdzu atjauniniet PHP instalāciju lai varētu droši izmantot %s.",
diff --git a/core/l10n/mk.php b/core/l10n/mk.php
index dffd20ab3bb..35815d145b5 100644
--- a/core/l10n/mk.php
+++ b/core/l10n/mk.php
@@ -1,13 +1,9 @@
"група",
-"Category type not provided." => "Не беше доставен тип на категорија.",
-"No category to add?" => "Нема категорија да се додаде?",
-"Object type not provided." => "Не беше доставен тип на објект.",
-"%s ID not provided." => "%s ID не беше доставено.",
-"Error adding %s to favorites." => "Грешка при додавање %s во омилени.",
-"No categories selected for deletion." => "Не е одбрана категорија за бришење.",
-"Error removing %s from favorites." => "Грешка при бришење на %s од омилени.",
+"Updated database" => "Базата е надградена",
+"Updated filecache" => "Кешот е надграден",
+"Invalid image" => "Невалидна фотографија",
"Sunday" => "Недела",
"Monday" => "Понеделник",
"Tuesday" => "Вторник",
@@ -45,11 +41,13 @@ $TRANSLATIONS = array(
"Ok" => "Во ред",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Откажи",
-"The object type is not specified." => "Не е специфициран типот на објект.",
-"Error" => "Грешка",
-"The app name is not specified." => "Името на апликацијата не е специфицирано.",
-"The required file {file} is not installed!" => "Задолжителната датотека {file} не е инсталирана!",
+"Continue" => "Продолжи",
+"(all selected)" => "(сите одбрани)",
+"({count} selected)" => "({count} одбраните)",
+"Error loading file exists template" => "Грешка при вчитување на датотеката, шаблонот постои ",
+"Shared" => "Споделен",
"Share" => "Сподели",
+"Error" => "Грешка",
"Error while sharing" => "Грешка при споделување",
"Error while unsharing" => "Грешка при прекин на споделување",
"Error while changing permissions" => "Грешка при промена на привилегии",
@@ -59,6 +57,7 @@ $TRANSLATIONS = array(
"Share with link" => "Сподели со врска",
"Password protect" => "Заштити со лозинка",
"Password" => "Лозинка",
+"Allow Public Upload" => "Дозволи јавен аплоуд",
"Email link to person" => "Прати врска по е-пошта на личност",
"Send" => "Прати",
"Set expiration date" => "Постави рок на траење",
@@ -68,6 +67,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Повторно споделување не е дозволено",
"Shared in {item} with {user}" => "Споделено во {item} со {user}",
"Unshare" => "Не споделувај",
+"notify user by email" => "извести го корисникот преку електронска пошта",
"can edit" => "може да се измени",
"access control" => "контрола на пристап",
"create" => "креирај",
@@ -80,9 +80,16 @@ $TRANSLATIONS = array(
"Sending ..." => "Праќање...",
"Email sent" => "Е-порака пратена",
"Warning" => "Предупредување",
+"The object type is not specified." => "Не е специфициран типот на објект.",
+"Delete" => "Избриши",
+"Add" => "Додади",
+"The update was unsuccessful. Please report this issue to the ownCloud community." => "Надградбата беше неуспешна. Ве молиме пријавете го овој проблем на ownCloud community.",
+"The update was successful. Redirecting you to ownCloud now." => "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud.",
+"%s password reset" => "%s ресетирање на лозинката",
"Use the following link to reset your password: {link}" => "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}",
"You will receive a link to reset your password via Email." => "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка.",
"Username" => "Корисничко име",
+"Yes, I really want to reset my password now" => "Да, јас сега навистина сакам да ја поништам својата лозинка",
"Request reset" => "Побарајте ресетирање",
"Your password was reset" => "Вашата лозинка беше ресетирана",
"To login page" => "Кон страницата за најава",
@@ -95,11 +102,14 @@ $TRANSLATIONS = array(
"Help" => "Помош",
"Access forbidden" => "Забранет пристап",
"Cloud not found" => "Облакот не е најден",
-"Edit categories" => "Уреди категории",
-"Add" => "Додади",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n",
+"The share will expire on %s.\n\n" => "Споделувањето ќе заврши на %s.\n\n",
+"Cheers!" => "Поздрав!",
"Security Warning" => "Безбедносно предупредување",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не е достапен безбеден генератор на случајни броеви, Ве молам озвоможете го OpenSSL PHP додатокот.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без сигурен генератор на случајни броеви напаѓач може да ги предвиди жетоните за ресетирање на лозинка и да преземе контрола врз Вашата сметка. ",
+"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира.",
"Create an admin account" => "Направете администраторска сметка",
"Advanced" => "Напредно",
"Data folder" => "Фолдер со податоци",
@@ -111,12 +121,16 @@ $TRANSLATIONS = array(
"Database tablespace" => "Табела во базата на податоци",
"Database host" => "Сервер со база",
"Finish setup" => "Заврши го подесувањето",
+"Finishing …" => "Завршувам ...",
"Log out" => "Одјава",
"Automatic logon rejected!" => "Одбиена автоматска најава!",
"If you did not change your password recently, your account may be compromised!" => "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана",
"Please change your password to secure your account again." => "Ве молам сменете ја лозинката да ја обезбедите вашата сметка повторно.",
+"Please contact your administrator." => "Ве молиме контактирајте го вашиот администратор.",
"Lost your password?" => "Ја заборавивте лозинката?",
"remember" => "запамти",
-"Log in" => "Најава"
+"Log in" => "Најава",
+"Alternative Logins" => "Алтернативни најавувања",
+"Updating ownCloud to version %s, this may take a while." => "Надградбата на ownCloud на верзијата %s, може да потрае."
);
$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;";
diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php
index cac2dbff2a2..9d30010e6ce 100644
--- a/core/l10n/ms_MY.php
+++ b/core/l10n/ms_MY.php
@@ -1,7 +1,5 @@
"Tiada kategori untuk di tambah?",
-"No categories selected for deletion." => "Tiada kategori dipilih untuk dibuang.",
"Sunday" => "Ahad",
"Monday" => "Isnin",
"Tuesday" => "Selasa",
@@ -31,10 +29,12 @@ $TRANSLATIONS = array(
"Ok" => "Ok",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "Batal",
-"Error" => "Ralat",
"Share" => "Kongsi",
+"Error" => "Ralat",
"Password" => "Kata laluan",
"Warning" => "Amaran",
+"Delete" => "Padam",
+"Add" => "Tambah",
"Use the following link to reset your password: {link}" => "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}",
"You will receive a link to reset your password via Email." => "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel",
"Username" => "Nama pengguna",
@@ -50,8 +50,6 @@ $TRANSLATIONS = array(
"Help" => "Bantuan",
"Access forbidden" => "Larangan akses",
"Cloud not found" => "Awan tidak dijumpai",
-"Edit categories" => "Ubah kategori",
-"Add" => "Tambah",
"Security Warning" => "Amaran keselamatan",
"Create an admin account" => "buat akaun admin",
"Advanced" => "Maju",
diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php
index 0a07d151185..464e52d6d15 100644
--- a/core/l10n/my_MM.php
+++ b/core/l10n/my_MM.php
@@ -1,7 +1,5 @@
"ထည့်ရန်ခေါင်းစဉ်မရှိဘူးလား",
-"No categories selected for deletion." => "ဖျက်ရန်အတွက်ခေါင်းစဉ်မရွေးထားပါ",
"January" => "ဇန်နဝါရီ",
"February" => "ဖေဖော်ဝါရီ",
"March" => "မတ်",
@@ -40,6 +38,7 @@ $TRANSLATIONS = array(
"delete" => "ဖျက်မည်",
"share" => "ဝေမျှမည်",
"Password protected" => "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်",
+"Add" => "ပေါင်းထည့်",
"You will receive a link to reset your password via Email." => "အီးမေးလ်မှတစ်ဆင့် သင်၏စကားဝှက်ကို ပြန်ဖော်ရန်အတွက် Link တစ်ခုလက်ခံရရှိပါလိမ့်မယ်။",
"Username" => "သုံးစွဲသူအမည်",
"Your password was reset" => "သင်၏စကားဝှက်ကိုပြန်ဖော်ပြီးပါပြီ။",
@@ -50,7 +49,6 @@ $TRANSLATIONS = array(
"Admin" => "အက်ဒမင်",
"Help" => "အကူအညီ",
"Cloud not found" => "မတွေ့ရှိမိပါ",
-"Add" => "ပေါင်းထည့်",
"Security Warning" => "လုံခြုံရေးသတိပေးချက်",
"Create an admin account" => "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်",
"Advanced" => "အဆင့်မြင့်",
diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php
index a252642678a..7240b8f318a 100644
--- a/core/l10n/nb_NO.php
+++ b/core/l10n/nb_NO.php
@@ -2,9 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s delte »%s« med deg",
"group" => "gruppe",
-"No category to add?" => "Ingen kategorier å legge til?",
-"This category already exists: %s" => "Denne kategorien finnes allerede: %s",
-"No categories selected for deletion." => "Ingen kategorier merket for sletting.",
"Sunday" => "Søndag",
"Monday" => "Mandag",
"Tuesday" => "Tirsdag",
@@ -42,9 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "Ok",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Avbryt",
-"Error" => "Feil",
"Shared" => "Delt",
"Share" => "Del",
+"Error" => "Feil",
"Error while sharing" => "Feil under deling",
"Shared with you by {owner}" => "Delt med deg av {owner}",
"Share with" => "Del med",
@@ -68,6 +65,8 @@ $TRANSLATIONS = array(
"Sending ..." => "Sender...",
"Email sent" => "E-post sendt",
"Warning" => "Advarsel",
+"Delete" => "Slett",
+"Add" => "Legg til",
"Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}",
"You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.",
"Username" => "Brukernavn",
@@ -83,8 +82,6 @@ $TRANSLATIONS = array(
"Help" => "Hjelp",
"Access forbidden" => "Tilgang nektet",
"Cloud not found" => "Sky ikke funnet",
-"Edit categories" => "Rediger kategorier",
-"Add" => "Legg til",
"Security Warning" => "Sikkerhetsadvarsel",
"Create an admin account" => "opprett en administrator-konto",
"Advanced" => "Avansert",
diff --git a/core/l10n/nl.php b/core/l10n/nl.php
index fe8ec482e3b..675471f88e0 100644
--- a/core/l10n/nl.php
+++ b/core/l10n/nl.php
@@ -1,6 +1,7 @@
"%s deelde »%s« met jou",
+"Couldn't send mail to following users: %s " => "Kon geen e-mail sturen aan de volgende gebruikers: %s",
"group" => "groep",
"Turned on maintenance mode" => "Onderhoudsmodus ingeschakeld",
"Turned off maintenance mode" => "Onderhoudsmodus uitgeschakeld",
@@ -8,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Bijwerken bestandscache. Dit kan even duren...",
"Updated filecache" => "Bestandscache bijgewerkt",
"... %d%% done ..." => "... %d%% gereed ...",
-"Category type not provided." => "Categorie type niet opgegeven.",
-"No category to add?" => "Geen categorie om toe te voegen?",
-"This category already exists: %s" => "Deze categorie bestaat al: %s",
-"Object type not provided." => "Object type niet opgegeven.",
-"%s ID not provided." => "%s ID niet opgegeven.",
-"Error adding %s to favorites." => "Toevoegen van %s aan favorieten is mislukt.",
-"No categories selected for deletion." => "Geen categorie geselecteerd voor verwijdering.",
-"Error removing %s from favorites." => "Verwijderen %s van favorieten is mislukt.",
"No image or file provided" => "Geen afbeelding of bestand opgegeven",
"Unknown filetype" => "Onbekend bestandsformaat",
"Invalid image" => "Ongeldige afbeelding",
@@ -58,14 +51,18 @@ $TRANSLATIONS = array(
"No" => "Nee",
"Ok" => "Ok",
"Error loading message template: {error}" => "Fout bij laden berichtensjabloon: {error}",
-"_{count} file conflict_::_{count} file conflicts_" => array("",""),
+"_{count} file conflict_::_{count} file conflicts_" => array("{count} bestandsconflict","{count} bestandsconflicten"),
+"One file conflict" => "Een bestandsconflict",
+"Which files do you want to keep?" => "Welke bestanden wilt u bewaren?",
+"If you select both versions, the copied file will have a number added to its name." => "Als u beide versies selecteerde, zal het gekopieerde bestand een nummer aan de naam toegevoegd krijgen.",
"Cancel" => "Annuleer",
-"The object type is not specified." => "Het object type is niet gespecificeerd.",
-"Error" => "Fout",
-"The app name is not specified." => "De app naam is niet gespecificeerd.",
-"The required file {file} is not installed!" => "Het vereiste bestand {file} is niet geïnstalleerd!",
+"Continue" => "Verder",
+"(all selected)" => "(alles geselecteerd)",
+"({count} selected)" => "({count} geselecteerd)",
+"Error loading file exists template" => "Fout bij laden bestand bestaat al sjabloon",
"Shared" => "Gedeeld",
"Share" => "Delen",
+"Error" => "Fout",
"Error while sharing" => "Fout tijdens het delen",
"Error while unsharing" => "Fout tijdens het stoppen met delen",
"Error while changing permissions" => "Fout tijdens het veranderen van permissies",
@@ -85,6 +82,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Verder delen is niet toegestaan",
"Shared in {item} with {user}" => "Gedeeld in {item} met {user}",
"Unshare" => "Stop met delen",
+"notify user by email" => "Gebruiker via e-mail notificeren",
"can edit" => "kan wijzigen",
"access control" => "toegangscontrole",
"create" => "creëer",
@@ -97,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Versturen ...",
"Email sent" => "E-mail verzonden",
"Warning" => "Waarschuwing",
+"The object type is not specified." => "Het object type is niet gespecificeerd.",
+"Delete" => "Verwijder",
+"Add" => "Toevoegen",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "De update is niet geslaagd. Meld dit probleem aan bij de ownCloud community.",
"The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud.",
"%s password reset" => "%s wachtwoord reset",
@@ -119,8 +120,9 @@ $TRANSLATIONS = array(
"Help" => "Help",
"Access forbidden" => "Toegang verboden",
"Cloud not found" => "Cloud niet gevonden",
-"Edit categories" => "Wijzig categorieën",
-"Add" => "Toevoegen",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo daar,\n\neven een berichtje dat %s %s met u deelde.\nBekijk het: %s\n\n",
+"The share will expire on %s.\n\n" => "De Share vervalt op %s.\n\n\n\n",
+"Cheers!" => "Proficiat!",
"Security Warning" => "Beveiligingswaarschuwing",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Werk uw PHP installatie bij om %s veilig te kunnen gebruiken.",
@@ -139,15 +141,20 @@ $TRANSLATIONS = array(
"Database tablespace" => "Database tablespace",
"Database host" => "Databaseserver",
"Finish setup" => "Installatie afronden",
+"Finishing …" => "Afronden ...",
"%s is available. Get more information on how to update." => "%s is beschikbaar. Verkrijg meer informatie over het bijwerken.",
"Log out" => "Afmelden",
"Automatic logon rejected!" => "Automatische aanmelding geweigerd!",
"If you did not change your password recently, your account may be compromised!" => "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overgenomen zijn!",
"Please change your password to secure your account again." => "Wijzig je wachtwoord zodat je account weer beveiligd is.",
+"Server side authentication failed!" => "Authenticatie bij de server mislukte!",
+"Please contact your administrator." => "Neem contact op met uw systeembeheerder.",
"Lost your password?" => "Wachtwoord vergeten?",
"remember" => "onthoud gegevens",
"Log in" => "Meld je aan",
"Alternative Logins" => "Alternatieve inlogs",
+"Hey there,
just letting you know that %s shared »%s« with you. View it!
" => "Hallo daar,
even een berichtje dat %s »%s« met u deelde. Bekijk hier!
",
+"The share will expire on %s.
" => "Het delen stopt op %s.
",
"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren..."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php
index 6dff2e63742..3ac3a6ea690 100644
--- a/core/l10n/nn_NO.php
+++ b/core/l10n/nn_NO.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Oppdaterer mellomlager; dette kan ta ei god stund …",
"Updated filecache" => "Mellomlager oppdatert",
"... %d%% done ..." => "… %d %% ferdig …",
-"Category type not provided." => "Ingen kategoritype.",
-"No category to add?" => "Ingen kategori å leggja til?",
-"This category already exists: %s" => "Denne kategorien finst alt: %s",
-"Object type not provided." => "Ingen objekttype.",
-"%s ID not provided." => "Ingen %s-ID.",
-"Error adding %s to favorites." => "Klarte ikkje leggja til %s i favorittar.",
-"No categories selected for deletion." => "Ingen kategoriar valt for sletting.",
-"Error removing %s from favorites." => "Klarte ikkje fjerna %s frå favorittar.",
"No image or file provided" => "Inga bilete eller fil gitt",
"Unknown filetype" => "Ukjend filtype",
"Invalid image" => "Ugyldig bilete",
@@ -67,12 +59,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(alle valte)",
"({count} selected)" => "({count} valte)",
"Error loading file exists template" => "Klarte ikkje å lasta fil-finst-mal",
-"The object type is not specified." => "Objekttypen er ikkje spesifisert.",
-"Error" => "Feil",
-"The app name is not specified." => "Programnamnet er ikkje spesifisert.",
-"The required file {file} is not installed!" => "Den kravde fila {file} er ikkje installert!",
"Shared" => "Delt",
"Share" => "Del",
+"Error" => "Feil",
"Error while sharing" => "Feil ved deling",
"Error while unsharing" => "Feil ved udeling",
"Error while changing permissions" => "Feil ved endring av tillatingar",
@@ -104,6 +93,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Sender …",
"Email sent" => "E-post sendt",
"Warning" => "Åtvaring",
+"The object type is not specified." => "Objekttypen er ikkje spesifisert.",
+"Delete" => "Slett",
+"Add" => "Legg til",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Oppdateringa feila. Ver venleg og rapporter feilen til ownCloud-fellesskapet.",
"The update was successful. Redirecting you to ownCloud now." => "Oppdateringa er fullført. Sender deg vidare til ownCloud no.",
"%s password reset" => "%s passordnullstilling",
@@ -126,8 +118,6 @@ $TRANSLATIONS = array(
"Help" => "Hjelp",
"Access forbidden" => "Tilgang forbudt",
"Cloud not found" => "Fann ikkje skyen",
-"Edit categories" => "Endra kategoriar",
-"Add" => "Legg til",
"Security Warning" => "Tryggleiksåtvaring",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-utgåva di er sårbar for NULL-byteåtaket (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Ver venleg og oppdater PHP-installasjonen din til å brukar %s trygt.",
diff --git a/core/l10n/oc.php b/core/l10n/oc.php
index fd84d0b2e30..c6472b1c17d 100644
--- a/core/l10n/oc.php
+++ b/core/l10n/oc.php
@@ -1,8 +1,6 @@
"grop",
-"No category to add?" => "Pas de categoria d'ajustar ?",
-"No categories selected for deletion." => "Pas de categorias seleccionadas per escafar.",
"Sunday" => "Dimenge",
"Monday" => "Diluns",
"Tuesday" => "Dimarç",
@@ -40,8 +38,8 @@ $TRANSLATIONS = array(
"Ok" => "D'accòrdi",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Annula",
-"Error" => "Error",
"Share" => "Parteja",
+"Error" => "Error",
"Error while sharing" => "Error al partejar",
"Error while unsharing" => "Error al non partejar",
"Error while changing permissions" => "Error al cambiar permissions",
@@ -64,6 +62,8 @@ $TRANSLATIONS = array(
"Password protected" => "Parat per senhal",
"Error unsetting expiration date" => "Error al metre de la data d'expiracion",
"Error setting expiration date" => "Error setting expiration date",
+"Delete" => "Escafa",
+"Add" => "Ajusta",
"Use the following link to reset your password: {link}" => "Utiliza lo ligam seguent per tornar botar lo senhal : {link}",
"You will receive a link to reset your password via Email." => "Reçaupràs un ligam per tornar botar ton senhal via corrièl.",
"Username" => "Non d'usancièr",
@@ -79,8 +79,6 @@ $TRANSLATIONS = array(
"Help" => "Ajuda",
"Access forbidden" => "Acces enebit",
"Cloud not found" => "Nívol pas trobada",
-"Edit categories" => "Edita categorias",
-"Add" => "Ajusta",
"Security Warning" => "Avertiment de securitat",
"Create an admin account" => "Crea un compte admin",
"Advanced" => "Avançat",
diff --git a/core/l10n/pa.php b/core/l10n/pa.php
index 156c6dbac14..b637c429a6e 100644
--- a/core/l10n/pa.php
+++ b/core/l10n/pa.php
@@ -37,11 +37,12 @@ $TRANSLATIONS = array(
"Ok" => "ਠੀਕ ਹੈ",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "ਰੱਦ ਕਰੋ",
-"Error" => "ਗਲ",
"Share" => "ਸਾਂਝਾ ਕਰੋ",
+"Error" => "ਗਲ",
"Password" => "ਪਾਸਵਰ",
"Send" => "ਭੇਜੋ",
"Warning" => "ਚੇਤਾਵਨੀ",
+"Delete" => "ਹਟਾਓ",
"Username" => "ਯੂਜ਼ਰ-ਨਾਂ",
"Security Warning" => "ਸੁਰੱਖਿਆ ਚੇਤਾਵਨੀ"
);
diff --git a/core/l10n/pl.php b/core/l10n/pl.php
index 5d60f5d3aa7..60476b5aad6 100644
--- a/core/l10n/pl.php
+++ b/core/l10n/pl.php
@@ -8,14 +8,7 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Aktualizowanie filecache, to może potrwać bardzo długo...",
"Updated filecache" => "Zaktualizuj filecache",
"... %d%% done ..." => "... %d%% udane ...",
-"Category type not provided." => "Nie podano typu kategorii.",
-"No category to add?" => "Brak kategorii do dodania?",
-"This category already exists: %s" => "Ta kategoria już istnieje: %s",
-"Object type not provided." => "Nie podano typu obiektu.",
-"%s ID not provided." => "Nie podano ID %s.",
-"Error adding %s to favorites." => "Błąd podczas dodawania %s do ulubionych.",
-"No categories selected for deletion." => "Nie zaznaczono kategorii do usunięcia.",
-"Error removing %s from favorites." => "Błąd podczas usuwania %s z ulubionych.",
+"No image or file provided" => "Brak obrazu lub pliku dostarczonego",
"Unknown filetype" => "Nieznany typ pliku",
"Invalid image" => "Nieprawidłowe zdjęcie",
"Sunday" => "Niedziela",
@@ -59,12 +52,9 @@ $TRANSLATIONS = array(
"Continue" => "Kontynuuj ",
"(all selected)" => "(wszystkie zaznaczone)",
"({count} selected)" => "({count} zaznaczonych)",
-"The object type is not specified." => "Nie określono typu obiektu.",
-"Error" => "Błąd",
-"The app name is not specified." => "Nie określono nazwy aplikacji.",
-"The required file {file} is not installed!" => "Wymagany plik {file} nie jest zainstalowany!",
"Shared" => "Udostępniono",
"Share" => "Udostępnij",
+"Error" => "Błąd",
"Error while sharing" => "Błąd podczas współdzielenia",
"Error while unsharing" => "Błąd podczas zatrzymywania współdzielenia",
"Error while changing permissions" => "Błąd przy zmianie uprawnień",
@@ -84,6 +74,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Współdzielenie nie jest możliwe",
"Shared in {item} with {user}" => "Współdzielone w {item} z {user}",
"Unshare" => "Zatrzymaj współdzielenie",
+"notify user by email" => "powiadom użytkownika przez email",
"can edit" => "może edytować",
"access control" => "kontrola dostępu",
"create" => "utwórz",
@@ -96,6 +87,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Wysyłanie...",
"Email sent" => "E-mail wysłany",
"Warning" => "Ostrzeżenie",
+"The object type is not specified." => "Nie określono typu obiektu.",
+"Delete" => "Usuń",
+"Add" => "Dodaj",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem spoleczności ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.",
"%s password reset" => "%s reset hasła",
@@ -118,8 +112,8 @@ $TRANSLATIONS = array(
"Help" => "Pomoc",
"Access forbidden" => "Dostęp zabroniony",
"Cloud not found" => "Nie odnaleziono chmury",
-"Edit categories" => "Edytuj kategorie",
-"Add" => "Dodaj",
+"The share will expire on %s.\n\n" => "Udostępnienie wygaśnie w dniu %s.\n\n",
+"Cheers!" => "Pozdrawiam!",
"Security Warning" => "Ostrzeżenie o zabezpieczeniach",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Proszę uaktualnij swoją instalacje PHP aby używać %s bezpiecznie.",
@@ -138,15 +132,20 @@ $TRANSLATIONS = array(
"Database tablespace" => "Obszar tabel bazy danych",
"Database host" => "Komputer bazy danych",
"Finish setup" => "Zakończ konfigurowanie",
+"Finishing …" => "Kończę ...",
"%s is available. Get more information on how to update." => "%s jest dostępna. Dowiedz się więcej na temat aktualizacji.",
"Log out" => "Wyloguj",
"Automatic logon rejected!" => "Automatyczne logowanie odrzucone!",
"If you did not change your password recently, your account may be compromised!" => "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożone!",
"Please change your password to secure your account again." => "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto.",
+"Server side authentication failed!" => "Uwierzytelnianie po stronie serwera nie powiodło się!",
+"Please contact your administrator." => "Skontaktuj się z administratorem",
"Lost your password?" => "Nie pamiętasz hasła?",
"remember" => "pamiętaj",
"Log in" => "Zaloguj",
"Alternative Logins" => "Alternatywne loginy",
+"Hey there,
just letting you know that %s shared »%s« with you. View it!
",
"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać."
);
$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";
diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php
index fc43814ae00..d790b86766b 100644
--- a/core/l10n/pt_BR.php
+++ b/core/l10n/pt_BR.php
@@ -9,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Atualizar cahe de arquivos, isto pode levar algum tempo...",
"Updated filecache" => "Atualizar cache de arquivo",
"... %d%% done ..." => "... %d%% concluído ...",
-"Category type not provided." => "Tipo de categoria não fornecido.",
-"No category to add?" => "Nenhuma categoria a adicionar?",
-"This category already exists: %s" => "Esta categoria já existe: %s",
-"Object type not provided." => "tipo de objeto não fornecido.",
-"%s ID not provided." => "%s ID não fornecido(s).",
-"Error adding %s to favorites." => "Erro ao adicionar %s aos favoritos.",
-"No categories selected for deletion." => "Nenhuma categoria selecionada para remoção.",
-"Error removing %s from favorites." => "Erro ao remover %s dos favoritos.",
"No image or file provided" => "Nenhuma imagem ou arquivo fornecido",
"Unknown filetype" => "Tipo de arquivo desconhecido",
"Invalid image" => "Imagem inválida",
@@ -68,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(todos os selecionados)",
"({count} selected)" => "({count} selecionados)",
"Error loading file exists template" => "Erro ao carregar arquivo existe modelo",
-"The object type is not specified." => "O tipo de objeto não foi especificado.",
-"Error" => "Erro",
-"The app name is not specified." => "O nome do app não foi especificado.",
-"The required file {file} is not installed!" => "O arquivo {file} necessário não está instalado!",
"Shared" => "Compartilhados",
"Share" => "Compartilhar",
+"Error" => "Erro",
"Error while sharing" => "Erro ao compartilhar",
"Error while unsharing" => "Erro ao descompartilhar",
"Error while changing permissions" => "Erro ao mudar permissões",
@@ -106,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Enviando ...",
"Email sent" => "E-mail enviado",
"Warning" => "Aviso",
+"The object type is not specified." => "O tipo de objeto não foi especificado.",
+"Delete" => "Eliminar",
+"Add" => "Adicionar",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "A atualização falhou. Por favor, relate este problema para a comunidade ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "A atualização teve êxito. Você será redirecionado ao ownCloud agora.",
"%s password reset" => "%s redefinir senha",
@@ -131,8 +123,6 @@ $TRANSLATIONS = array(
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\nVeja isto: %s\n\n",
"The share will expire on %s.\n\n" => "O compartilhamento irá expirer em %s.\n\n",
"Cheers!" => "Saúde!",
-"Edit categories" => "Editar categorias",
-"Add" => "Adicionar",
"Security Warning" => "Aviso de Segurança",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Por favor, atualize sua instalação PHP para usar %s segurança.",
@@ -157,6 +147,8 @@ $TRANSLATIONS = array(
"Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!",
"If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!",
"Please change your password to secure your account again." => "Por favor troque sua senha para tornar sua conta segura novamente.",
+"Server side authentication failed!" => "Autenticação do servidor falhou!",
+"Please contact your administrator." => "Por favor, contate o administrador.",
"Lost your password?" => "Esqueceu sua senha?",
"remember" => "lembrar",
"Log in" => "Fazer login",
diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php
index fd504421199..c14cb718749 100644
--- a/core/l10n/pt_PT.php
+++ b/core/l10n/pt_PT.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "A actualizar o cache dos ficheiros, poderá demorar algum tempo...",
"Updated filecache" => "Actualizado o cache dos ficheiros",
"... %d%% done ..." => "... %d%% feito ...",
-"Category type not provided." => "Tipo de categoria não fornecido",
-"No category to add?" => "Nenhuma categoria para adicionar?",
-"This category already exists: %s" => "A categoria já existe: %s",
-"Object type not provided." => "Tipo de objecto não fornecido",
-"%s ID not provided." => "ID %s não fornecido",
-"Error adding %s to favorites." => "Erro a adicionar %s aos favoritos",
-"No categories selected for deletion." => "Nenhuma categoria seleccionada para eliminar.",
-"Error removing %s from favorites." => "Erro a remover %s dos favoritos.",
"No image or file provided" => "Não foi selecionado nenhum ficheiro para importar",
"Unknown filetype" => "Ficheiro desconhecido",
"Invalid image" => "Imagem inválida",
@@ -58,12 +50,9 @@ $TRANSLATIONS = array(
"Error loading message template: {error}" => "Erro ao carregar o template: {error}",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Cancelar",
-"The object type is not specified." => "O tipo de objecto não foi especificado",
-"Error" => "Erro",
-"The app name is not specified." => "O nome da aplicação não foi especificado",
-"The required file {file} is not installed!" => "O ficheiro necessário {file} não está instalado!",
"Shared" => "Partilhado",
"Share" => "Partilhar",
+"Error" => "Erro",
"Error while sharing" => "Erro ao partilhar",
"Error while unsharing" => "Erro ao deixar de partilhar",
"Error while changing permissions" => "Erro ao mudar permissões",
@@ -95,6 +84,9 @@ $TRANSLATIONS = array(
"Sending ..." => "A Enviar...",
"Email sent" => "E-mail enviado",
"Warning" => "Aviso",
+"The object type is not specified." => "O tipo de objecto não foi especificado",
+"Delete" => "Eliminar",
+"Add" => "Adicionar",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualização falhou. Por favor reporte este incidente seguindo este link ownCloud community.",
"The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.",
"%s password reset" => "%s reposição da password",
@@ -117,8 +109,6 @@ $TRANSLATIONS = array(
"Help" => "Ajuda",
"Access forbidden" => "Acesso interdito",
"Cloud not found" => "Cloud nao encontrada",
-"Edit categories" => "Editar categorias",
-"Add" => "Adicionar",
"Security Warning" => "Aviso de Segurança",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A sua versão do PHP é vulnerável ao ataque Byte Null (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Por favor atualize a sua versão PHP instalada para usar o %s com segurança.",
diff --git a/core/l10n/ro.php b/core/l10n/ro.php
index 73350011f1e..1224dcfd332 100644
--- a/core/l10n/ro.php
+++ b/core/l10n/ro.php
@@ -3,14 +3,6 @@ $TRANSLATIONS = array(
"%s shared »%s« with you" => "%s Partajat »%s« cu tine de",
"group" => "grup",
"Updated database" => "Bază de date actualizată",
-"Category type not provided." => "Tipul de categorie nu a fost specificat.",
-"No category to add?" => "Nici o categorie de adăugat?",
-"This category already exists: %s" => "Această categorie deja există: %s",
-"Object type not provided." => "Tipul obiectului nu este prevăzut",
-"%s ID not provided." => "ID-ul %s nu a fost introdus",
-"Error adding %s to favorites." => "Eroare la adăugarea %s la favorite.",
-"No categories selected for deletion." => "Nicio categorie selectată pentru ștergere.",
-"Error removing %s from favorites." => "Eroare la ștergerea %s din favorite.",
"Unknown filetype" => "Tip fișier necunoscut",
"Invalid image" => "Imagine invalidă",
"Sunday" => "Duminică",
@@ -54,12 +46,9 @@ $TRANSLATIONS = array(
"If you select both versions, the copied file will have a number added to its name." => "Dacă alegi ambele versiuni, fișierul copiat va avea un număr atașat la denumirea sa.",
"Cancel" => "Anulare",
"Continue" => "Continuă",
-"The object type is not specified." => "Tipul obiectului nu este specificat.",
-"Error" => "Eroare",
-"The app name is not specified." => "Numele aplicației nu este specificat.",
-"The required file {file} is not installed!" => "Fișierul obligatoriu {file} nu este instalat!",
"Shared" => "Partajat",
"Share" => "Partajează",
+"Error" => "Eroare",
"Error while sharing" => "Eroare la partajare",
"Error while unsharing" => "Eroare la anularea partajării",
"Error while changing permissions" => "Eroare la modificarea permisiunilor",
@@ -91,6 +80,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Se expediază...",
"Email sent" => "Mesajul a fost expediat",
"Warning" => "Atenție",
+"The object type is not specified." => "Tipul obiectului nu este specificat.",
+"Delete" => "Șterge",
+"Add" => "Adaugă",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Actualizarea a eșuat! Raportați problema către comunitatea ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "Actualizare reușită. Ești redirecționat către ownCloud.",
"Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}",
@@ -112,8 +104,6 @@ $TRANSLATIONS = array(
"Help" => "Ajutor",
"Access forbidden" => "Acces restricționat",
"Cloud not found" => "Nu s-a găsit",
-"Edit categories" => "Editează categorii",
-"Add" => "Adaugă",
"Security Warning" => "Avertisment de securitate",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versiunea dvs. PHP este vulnerabilă la un atac cu un octet NULL (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Te rog actualizează versiunea PHP pentru a utiliza %s în mod securizat.",
diff --git a/core/l10n/ru.php b/core/l10n/ru.php
index 5cfd013850e..25ba4f680bc 100644
--- a/core/l10n/ru.php
+++ b/core/l10n/ru.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Обновление файлового кэша, это может занять некоторое время...",
"Updated filecache" => "Обновлен файловый кэш",
"... %d%% done ..." => "... %d%% завершено ...",
-"Category type not provided." => "Тип категории не предоставлен",
-"No category to add?" => "Нет категорий для добавления?",
-"This category already exists: %s" => "Эта категория уже существует: %s",
-"Object type not provided." => "Тип объекта не предоставлен",
-"%s ID not provided." => "ID %s не предоставлен",
-"Error adding %s to favorites." => "Ошибка добавления %s в избранное",
-"No categories selected for deletion." => "Нет категорий для удаления.",
-"Error removing %s from favorites." => "Ошибка удаления %s из избранного",
"No image or file provided" => "Не указано изображение или файл",
"Unknown filetype" => "Неизвестный тип файла",
"Invalid image" => "Изображение повреждено",
@@ -67,12 +59,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(выбраны все)",
"({count} selected)" => "({count} выбрано)",
"Error loading file exists template" => "Ошибка при загрузке шаблона существующего файла",
-"The object type is not specified." => "Тип объекта не указан",
-"Error" => "Ошибка",
-"The app name is not specified." => "Имя приложения не указано",
-"The required file {file} is not installed!" => "Необходимый файл {file} не установлен!",
"Shared" => "Общие",
"Share" => "Открыть доступ",
+"Error" => "Ошибка",
"Error while sharing" => "Ошибка при открытии доступа",
"Error while unsharing" => "Ошибка при закрытии доступа",
"Error while changing permissions" => "Ошибка при смене разрешений",
@@ -104,6 +93,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Отправляется ...",
"Email sent" => "Письмо отправлено",
"Warning" => "Предупреждение",
+"The object type is not specified." => "Тип объекта не указан",
+"Delete" => "Удалить",
+"Add" => "Добавить",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество.",
"The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...",
"%s password reset" => "%s сброс пароля",
@@ -126,8 +118,6 @@ $TRANSLATIONS = array(
"Help" => "Помощь",
"Access forbidden" => "Доступ запрещён",
"Cloud not found" => "Облако не найдено",
-"Edit categories" => "Редактировать категрии",
-"Add" => "Добавить",
"Security Warning" => "Предупреждение безопасности",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s.",
diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php
index 065604425bd..ecff3705287 100644
--- a/core/l10n/si_LK.php
+++ b/core/l10n/si_LK.php
@@ -1,7 +1,6 @@
"කණ්ඩායම",
-"No categories selected for deletion." => "මකා දැමීම සඳහා ප්රවර්ගයන් තෝරා නොමැත.",
"Sunday" => "ඉරිදා",
"Monday" => "සඳුදා",
"Tuesday" => "අඟහරුවාදා",
@@ -39,8 +38,8 @@ $TRANSLATIONS = array(
"Ok" => "හරි",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "එපා",
-"Error" => "දෝෂයක්",
"Share" => "බෙදා හදා ගන්න",
+"Error" => "දෝෂයක්",
"Share with" => "බෙදාගන්න",
"Share with link" => "යොමුවක් මඟින් බෙදාගන්න",
"Password protect" => "මුර පදයකින් ආරක්ශාකරන්න",
@@ -59,6 +58,8 @@ $TRANSLATIONS = array(
"Error unsetting expiration date" => "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්",
"Error setting expiration date" => "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්",
"Warning" => "අවවාදය",
+"Delete" => "මකා දමන්න",
+"Add" => "එකතු කරන්න",
"You will receive a link to reset your password via Email." => "ඔබගේ මුරපදය ප්රත්යාරම්භ කිරීම සඳහා යොමුව විද්යුත් තැපෑලෙන් ලැබෙනු ඇත",
"Username" => "පරිශීලක නම",
"Your password was reset" => "ඔබේ මුරපදය ප්රත්යාරම්භ කරන ලදී",
@@ -72,8 +73,6 @@ $TRANSLATIONS = array(
"Help" => "උදව්",
"Access forbidden" => "ඇතුල් වීම තහනම්",
"Cloud not found" => "සොයා ගත නොහැක",
-"Edit categories" => "ප්රභේදයන් සංස්කරණය",
-"Add" => "එකතු කරන්න",
"Security Warning" => "ආරක්ෂක නිවේදනයක්",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ආරක්ෂිත අහඹු සංඛ්යා උත්පාදකයක් නොමැති නම් ඔබගේ ගිණුමට පහරදෙන අයකුට එහි මුරපද යළි පිහිටුවීමට අවශ්ය ටෝකන පහසුවෙන් සොයාගෙන ඔබගේ ගිණුම පැහැරගත හැක.",
"Advanced" => "දියුණු/උසස්",
diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php
index b4bcaac8ae0..db29395a7f6 100644
--- a/core/l10n/sk_SK.php
+++ b/core/l10n/sk_SK.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Aktualizácia \"filecache\", toto môže trvať dlhšie...",
"Updated filecache" => "\"Filecache\" aktualizovaná",
"... %d%% done ..." => "... %d%% dokončených ...",
-"Category type not provided." => "Neposkytnutý typ kategórie.",
-"No category to add?" => "Žiadna kategória pre pridanie?",
-"This category already exists: %s" => "Kategória: %s už existuje.",
-"Object type not provided." => "Neposkytnutý typ objektu.",
-"%s ID not provided." => "%s ID neposkytnuté.",
-"Error adding %s to favorites." => "Chyba pri pridávaní %s do obľúbených položiek.",
-"No categories selected for deletion." => "Neboli vybrané žiadne kategórie pre odstránenie.",
-"Error removing %s from favorites." => "Chyba pri odstraňovaní %s z obľúbených položiek.",
"Sunday" => "Nedeľa",
"Monday" => "Pondelok",
"Tuesday" => "Utorok",
@@ -53,12 +45,9 @@ $TRANSLATIONS = array(
"Ok" => "Ok",
"_{count} file conflict_::_{count} file conflicts_" => array("","",""),
"Cancel" => "Zrušiť",
-"The object type is not specified." => "Nešpecifikovaný typ objektu.",
-"Error" => "Chyba",
-"The app name is not specified." => "Nešpecifikované meno aplikácie.",
-"The required file {file} is not installed!" => "Požadovaný súbor {file} nie je nainštalovaný!",
"Shared" => "Zdieľané",
"Share" => "Zdieľať",
+"Error" => "Chyba",
"Error while sharing" => "Chyba počas zdieľania",
"Error while unsharing" => "Chyba počas ukončenia zdieľania",
"Error while changing permissions" => "Chyba počas zmeny oprávnení",
@@ -90,6 +79,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Odosielam ...",
"Email sent" => "Email odoslaný",
"Warning" => "Varovanie",
+"The object type is not specified." => "Nešpecifikovaný typ objektu.",
+"Delete" => "Zmazať",
+"Add" => "Pridať",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizácia nebola úspešná. Problém nahláste na ownCloud community.",
"The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.",
"%s password reset" => "reset hesla %s",
@@ -112,8 +104,6 @@ $TRANSLATIONS = array(
"Help" => "Pomoc",
"Access forbidden" => "Prístup odmietnutý",
"Cloud not found" => "Nenájdené",
-"Edit categories" => "Upraviť kategórie",
-"Add" => "Pridať",
"Security Warning" => "Bezpečnostné varovanie",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Aktualizujte prosím vašu inštanciu PHP pre bezpečné používanie %s.",
diff --git a/core/l10n/sl.php b/core/l10n/sl.php
index e858284de53..46c7b7b2452 100644
--- a/core/l10n/sl.php
+++ b/core/l10n/sl.php
@@ -2,14 +2,6 @@
$TRANSLATIONS = array(
"%s shared »%s« with you" => "%s je delil »%s« z vami",
"group" => "skupina",
-"Category type not provided." => "Vrsta kategorije ni podana.",
-"No category to add?" => "Ali ni kategorije za dodajanje?",
-"This category already exists: %s" => "Kategorija že obstaja: %s",
-"Object type not provided." => "Vrsta predmeta ni podana.",
-"%s ID not provided." => "ID %s ni podan.",
-"Error adding %s to favorites." => "Napaka dodajanja %s med priljubljene predmete.",
-"No categories selected for deletion." => "Za izbris ni izbrana nobena kategorija.",
-"Error removing %s from favorites." => "Napaka odstranjevanja %s iz priljubljenih predmetov.",
"Sunday" => "nedelja",
"Monday" => "ponedeljek",
"Tuesday" => "torek",
@@ -47,12 +39,9 @@ $TRANSLATIONS = array(
"Ok" => "V redu",
"_{count} file conflict_::_{count} file conflicts_" => array("","","",""),
"Cancel" => "Prekliči",
-"The object type is not specified." => "Vrsta predmeta ni podana.",
-"Error" => "Napaka",
-"The app name is not specified." => "Ime programa ni podano.",
-"The required file {file} is not installed!" => "Zahtevana datoteka {file} ni nameščena!",
"Shared" => "V souporabi",
"Share" => "Souporaba",
+"Error" => "Napaka",
"Error while sharing" => "Napaka med souporabo",
"Error while unsharing" => "Napaka med odstranjevanjem souporabe",
"Error while changing permissions" => "Napaka med spreminjanjem dovoljenj",
@@ -84,6 +73,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Pošiljanje ...",
"Email sent" => "Elektronska pošta je poslana",
"Warning" => "Opozorilo",
+"The object type is not specified." => "Vrsta predmeta ni podana.",
+"Delete" => "Izbriši",
+"Add" => "Dodaj",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.",
"Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}",
@@ -105,8 +97,6 @@ $TRANSLATIONS = array(
"Help" => "Pomoč",
"Access forbidden" => "Dostop je prepovedan",
"Cloud not found" => "Oblaka ni mogoče najti",
-"Edit categories" => "Uredi kategorije",
-"Add" => "Dodaj",
"Security Warning" => "Varnostno opozorilo",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Za varno uporabo storitve %s posodobite PHP",
diff --git a/core/l10n/sq.php b/core/l10n/sq.php
index 2d9649a6483..c0bfee52412 100644
--- a/core/l10n/sq.php
+++ b/core/l10n/sq.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Po azhurnoj memorjen e skedarëve, mund të zgjasi pak...",
"Updated filecache" => "Memorja e skedarëve u azhornua",
"... %d%% done ..." => "... %d%% u krye ...",
-"Category type not provided." => "Mungon tipi i kategorisë.",
-"No category to add?" => "Asnjë kategori për të shtuar?",
-"This category already exists: %s" => "Kjo kategori tashmë ekziston: %s",
-"Object type not provided." => "Mungon tipi i objektit.",
-"%s ID not provided." => "Mungon ID-ja e %s.",
-"Error adding %s to favorites." => "Veprim i gabuar gjatë shtimit të %s tek të parapëlqyerat.",
-"No categories selected for deletion." => "Nuk selektuar për tu eliminuar asnjë kategori.",
-"Error removing %s from favorites." => "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat.",
"Sunday" => "E djelë",
"Monday" => "E hënë",
"Tuesday" => "E martë",
@@ -53,12 +45,9 @@ $TRANSLATIONS = array(
"Ok" => "Në rregull",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "Anulo",
-"The object type is not specified." => "Nuk është specifikuar tipi i objektit.",
-"Error" => "Veprim i gabuar",
-"The app name is not specified." => "Nuk është specifikuar emri i app-it.",
-"The required file {file} is not installed!" => "Skedari i nevojshëm {file} nuk është i instaluar!",
"Shared" => "Ndarë",
"Share" => "Nda",
+"Error" => "Veprim i gabuar",
"Error while sharing" => "Veprim i gabuar gjatë ndarjes",
"Error while unsharing" => "Veprim i gabuar gjatë heqjes së ndarjes",
"Error while changing permissions" => "Veprim i gabuar gjatë ndryshimit të lejeve",
@@ -89,6 +78,9 @@ $TRANSLATIONS = array(
"Error setting expiration date" => "Veprim i gabuar gjatë caktimit të datës së përfundimit",
"Sending ..." => "Duke dërguar...",
"Email sent" => "Email-i u dërgua",
+"The object type is not specified." => "Nuk është specifikuar tipi i objektit.",
+"Delete" => "Elimino",
+"Add" => "Shto",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem komunitetin ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i.",
"%s password reset" => "Kodi i %s -it u rivendos",
@@ -111,8 +103,6 @@ $TRANSLATIONS = array(
"Help" => "Ndihmë",
"Access forbidden" => "Ndalohet hyrja",
"Cloud not found" => "Cloud-i nuk u gjet",
-"Edit categories" => "Ndrysho kategoritë",
-"Add" => "Shto",
"Security Warning" => "Paralajmërim sigurie",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versioni juaj i PHP-së është i cënueshëm nga sulmi NULL Byte (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Ju lutem azhurnoni instalimin tuaj të PHP-së që të përdorni %s -in në mënyrë të sigurt.",
diff --git a/core/l10n/sr.php b/core/l10n/sr.php
index 666223c6cba..4b1d41f289a 100644
--- a/core/l10n/sr.php
+++ b/core/l10n/sr.php
@@ -1,13 +1,6 @@
"група",
-"Category type not provided." => "Врста категорије није унет.",
-"No category to add?" => "Додати још неку категорију?",
-"Object type not provided." => "Врста објекта није унета.",
-"%s ID not provided." => "%s ИД нису унети.",
-"Error adding %s to favorites." => "Грешка приликом додавања %s у омиљене.",
-"No categories selected for deletion." => "Ни једна категорија није означена за брисање.",
-"Error removing %s from favorites." => "Грешка приликом уклањања %s из омиљених",
"Sunday" => "Недеља",
"Monday" => "Понедељак",
"Tuesday" => "Уторак",
@@ -45,11 +38,8 @@ $TRANSLATIONS = array(
"Ok" => "У реду",
"_{count} file conflict_::_{count} file conflicts_" => array("","",""),
"Cancel" => "Откажи",
-"The object type is not specified." => "Врста објекта није подешена.",
-"Error" => "Грешка",
-"The app name is not specified." => "Име програма није унето.",
-"The required file {file} is not installed!" => "Потребна датотека {file} није инсталирана.",
"Share" => "Дели",
+"Error" => "Грешка",
"Error while sharing" => "Грешка у дељењу",
"Error while unsharing" => "Грешка код искључења дељења",
"Error while changing permissions" => "Грешка код промене дозвола",
@@ -79,6 +69,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Шаљем...",
"Email sent" => "Порука је послата",
"Warning" => "Упозорење",
+"The object type is not specified." => "Врста објекта није подешена.",
+"Delete" => "Обриши",
+"Add" => "Додај",
"Use the following link to reset your password: {link}" => "Овом везом ресетујте своју лозинку: {link}",
"You will receive a link to reset your password via Email." => "Добићете везу за ресетовање лозинке путем е-поште.",
"Username" => "Корисничко име",
@@ -94,8 +87,6 @@ $TRANSLATIONS = array(
"Help" => "Помоћ",
"Access forbidden" => "Забрањен приступ",
"Cloud not found" => "Облак није нађен",
-"Edit categories" => "Измени категорије",
-"Add" => "Додај",
"Security Warning" => "Сигурносно упозорење",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Поуздан генератор случајних бројева није доступан, предлажемо да укључите PHP проширење OpenSSL.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без поузданог генератора случајнох бројева нападач лако може предвидети лозинку за поништавање кључа шифровања и отети вам налог.",
diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php
index 8c0d28ef1c0..04a4b758bb1 100644
--- a/core/l10n/sr@latin.php
+++ b/core/l10n/sr@latin.php
@@ -1,13 +1,5 @@
"Tip kategorije nije zadan.",
-"No category to add?" => "Bez dodavanja kategorije?",
-"This category already exists: %s" => "Kategorija već postoji: %s",
-"Object type not provided." => "Tip objekta nije zadan.",
-"%s ID not provided." => "%s ID nije zadan.",
-"Error adding %s to favorites." => "Greška u dodavanju %s u omiljeno.",
-"No categories selected for deletion." => "Kategorije za brisanje nisu izabrane.",
-"Error removing %s from favorites." => "Greška u uklanjanju %s iz omiljeno.",
"Sunday" => "Nedelja",
"Monday" => "Ponedeljak",
"Tuesday" => "Utorak",
@@ -45,12 +37,9 @@ $TRANSLATIONS = array(
"Ok" => "Ok",
"_{count} file conflict_::_{count} file conflicts_" => array("","",""),
"Cancel" => "Otkaži",
-"The object type is not specified." => "Tip objekta nije zadan.",
-"Error" => "Greška",
-"The app name is not specified." => "Ime aplikacije nije precizirano.",
-"The required file {file} is not installed!" => "Potreban fajl {file} nije instaliran!",
"Shared" => "Deljeno",
"Share" => "Podeli",
+"Error" => "Greška",
"Error while sharing" => "Greška pri deljenju",
"Error while unsharing" => "Greška u uklanjanju deljenja",
"Error while changing permissions" => "Greška u promeni dozvola",
@@ -80,6 +69,9 @@ $TRANSLATIONS = array(
"Error setting expiration date" => "Greška u postavljanju datuma isteka",
"Sending ..." => "Slanje...",
"Email sent" => "Email poslat",
+"The object type is not specified." => "Tip objekta nije zadan.",
+"Delete" => "Obriši",
+"Add" => "Dodaj",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Ažuriranje nije uspelo. Molimo obavestite ownCloud zajednicu.",
"The update was successful. Redirecting you to ownCloud now." => "Ažuriranje je uspelo. Prosleđivanje na ownCloud.",
"Use the following link to reset your password: {link}" => "Koristite sledeći link za reset lozinke: {link}",
@@ -97,8 +89,6 @@ $TRANSLATIONS = array(
"Help" => "Pomoć",
"Access forbidden" => "Pristup zabranjen",
"Cloud not found" => "Oblak nije nađen",
-"Edit categories" => "Izmena kategorija",
-"Add" => "Dodaj",
"Security Warning" => "Bezbednosno upozorenje",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Vaša PHP verzija je ranjiva na ",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nije dostupan generator slučajnog broja, molimo omogućite PHP OpenSSL ekstenziju.",
diff --git a/core/l10n/sv.php b/core/l10n/sv.php
index 29936537418..239b9495ef3 100644
--- a/core/l10n/sv.php
+++ b/core/l10n/sv.php
@@ -1,6 +1,7 @@
"%s delade »%s« med dig",
+"Couldn't send mail to following users: %s " => "Gick inte att skicka e-post till följande användare: %s",
"group" => "Grupp",
"Turned on maintenance mode" => "Aktiverade underhållsläge",
"Turned off maintenance mode" => "Deaktiverade underhållsläge",
@@ -8,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Uppdaterar filcache, det kan ta lång tid...",
"Updated filecache" => "Uppdaterade filcache",
"... %d%% done ..." => "... %d%% klart ...",
-"Category type not provided." => "Kategorityp inte angiven.",
-"No category to add?" => "Ingen kategori att lägga till?",
-"This category already exists: %s" => "Denna kategori finns redan: %s",
-"Object type not provided." => "Objekttyp inte angiven.",
-"%s ID not provided." => "%s ID inte angiven.",
-"Error adding %s to favorites." => "Fel vid tillägg av %s till favoriter.",
-"No categories selected for deletion." => "Inga kategorier valda för radering.",
-"Error removing %s from favorites." => "Fel vid borttagning av %s från favoriter.",
"No image or file provided" => "Ingen bild eller fil har tillhandahållits",
"Unknown filetype" => "Okänd filtyp",
"Invalid image" => "Ogiltig bild",
@@ -67,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(Alla valda)",
"({count} selected)" => "({count} valda)",
"Error loading file exists template" => "Fel uppstod filmall existerar",
-"The object type is not specified." => "Objekttypen är inte specificerad.",
-"Error" => "Fel",
-"The app name is not specified." => " Namnet på appen är inte specificerad.",
-"The required file {file} is not installed!" => "Den nödvändiga filen {file} är inte installerad!",
"Shared" => "Delad",
"Share" => "Dela",
+"Error" => "Fel",
"Error while sharing" => "Fel vid delning",
"Error while unsharing" => "Fel när delning skulle avslutas",
"Error while changing permissions" => "Fel vid ändring av rättigheter",
@@ -92,6 +82,7 @@ $TRANSLATIONS = array(
"Resharing is not allowed" => "Dela vidare är inte tillåtet",
"Shared in {item} with {user}" => "Delad i {item} med {user}",
"Unshare" => "Sluta dela",
+"notify user by email" => "notifiera användare via e-post",
"can edit" => "kan redigera",
"access control" => "åtkomstkontroll",
"create" => "skapa",
@@ -104,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Skickar ...",
"Email sent" => "E-post skickat",
"Warning" => "Varning",
+"The object type is not specified." => "Objekttypen är inte specificerad.",
+"Delete" => "Radera",
+"Add" => "Lägg till",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Uppdateringen misslyckades. Rapportera detta problem till ownCloud Community.",
"The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.",
"%s password reset" => "%s återställ lösenord",
@@ -126,8 +120,9 @@ $TRANSLATIONS = array(
"Help" => "Hjälp",
"Access forbidden" => "Åtkomst förbjuden",
"Cloud not found" => "Hittade inget moln",
-"Edit categories" => "Editera kategorier",
-"Add" => "Lägg till",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n",
+"The share will expire on %s.\n\n" => "Utdelningen kommer att upphöra %s.⏎\n⏎\n",
+"Cheers!" => "Vi höres!",
"Security Warning" => "Säkerhetsvarning",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Var god uppdatera din PHP-installation för att använda %s säkert.",
@@ -146,15 +141,20 @@ $TRANSLATIONS = array(
"Database tablespace" => "Databas tabellutrymme",
"Database host" => "Databasserver",
"Finish setup" => "Avsluta installation",
+"Finishing …" => "Avslutar ...",
"%s is available. Get more information on how to update." => "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera.",
"Log out" => "Logga ut",
"Automatic logon rejected!" => "Automatisk inloggning inte tillåten!",
"If you did not change your password recently, your account may be compromised!" => "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara manipulerat!",
"Please change your password to secure your account again." => "Ändra genast lösenord för att säkra ditt konto.",
+"Server side authentication failed!" => "Servern misslyckades med autentisering!",
+"Please contact your administrator." => "Kontakta din administratör.",
"Lost your password?" => "Glömt ditt lösenord?",
"remember" => "kom ihåg",
"Log in" => "Logga in",
"Alternative Logins" => "Alternativa inloggningar",
+"Hey there,
just letting you know that %s shared »%s« with you. View it!
" => "Hej där,
ville bara informera dig om att %s delade »%s« med dig. Titta på den!
",
+"The share will expire on %s.
" => "Utdelningen kommer att upphöra %s.
",
"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund."
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php
index 1756d22c788..7dba820066d 100644
--- a/core/l10n/ta_LK.php
+++ b/core/l10n/ta_LK.php
@@ -1,13 +1,6 @@
"குழு",
-"Category type not provided." => "பிரிவு வகைகள் வழங்கப்படவில்லை",
-"No category to add?" => "சேர்ப்பதற்கான வகைகள் இல்லையா?",
-"Object type not provided." => "பொருள் வகை வழங்கப்படவில்லை",
-"%s ID not provided." => "%s ID வழங்கப்படவில்லை",
-"Error adding %s to favorites." => "விருப்பங்களுக்கு %s ஐ சேர்ப்பதில் வழு",
-"No categories selected for deletion." => "நீக்குவதற்கு எந்தப் பிரிவும் தெரிவுசெய்யப்படவில்லை.",
-"Error removing %s from favorites." => "விருப்பத்திலிருந்து %s ஐ அகற்றுவதில் வழு.உஇஇ",
"Sunday" => "ஞாயிற்றுக்கிழமை",
"Monday" => "திங்கட்கிழமை",
"Tuesday" => "செவ்வாய்க்கிழமை",
@@ -45,11 +38,8 @@ $TRANSLATIONS = array(
"Ok" => "சரி",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "இரத்து செய்க",
-"The object type is not specified." => "பொருள் வகை குறிப்பிடப்படவில்லை.",
-"Error" => "வழு",
-"The app name is not specified." => "செயலி பெயர் குறிப்பிடப்படவில்லை.",
-"The required file {file} is not installed!" => "தேவைப்பட்ட கோப்பு {கோப்பு} நிறுவப்படவில்லை!",
"Share" => "பகிர்வு",
+"Error" => "வழு",
"Error while sharing" => "பகிரும் போதான வழு",
"Error while unsharing" => "பகிராமல் உள்ளப்போதான வழு",
"Error while changing permissions" => "அனுமதிகள் மாறும்போதான வழு",
@@ -76,6 +66,9 @@ $TRANSLATIONS = array(
"Error unsetting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு",
"Error setting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு",
"Warning" => "எச்சரிக்கை",
+"The object type is not specified." => "பொருள் வகை குறிப்பிடப்படவில்லை.",
+"Delete" => "நீக்குக",
+"Add" => "சேர்க்க",
"Use the following link to reset your password: {link}" => "உங்கள் கடவுச்சொல்லை மீளமைக்க பின்வரும் இணைப்பை பயன்படுத்தவும் : {இணைப்பு}",
"You will receive a link to reset your password via Email." => "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். ",
"Username" => "பயனாளர் பெயர்",
@@ -91,8 +84,6 @@ $TRANSLATIONS = array(
"Help" => "உதவி",
"Access forbidden" => "அணுக தடை",
"Cloud not found" => "Cloud காணப்படவில்லை",
-"Edit categories" => "வகைகளை தொகுக்க",
-"Add" => "சேர்க்க",
"Security Warning" => "பாதுகாப்பு எச்சரிக்கை",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "குறிப்பிட்ட எண்ணிக்கை பாதுகாப்பான புறப்பாக்கி / உண்டாக்கிகள் இல்லை, தயவுசெய்து PHP OpenSSL நீட்சியை இயலுமைப்படுத்துக. ",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "பாதுகாப்பான சீரற்ற எண்ணிக்கையான புறப்பாக்கி இல்லையெனின், தாக்குனரால் கடவுச்சொல் மீளமைப்பு அடையாளவில்லைகள் முன்மொழியப்பட்டு உங்களுடைய கணக்கை கைப்பற்றலாம்.",
diff --git a/core/l10n/te.php b/core/l10n/te.php
index d54eeabb692..0754429351c 100644
--- a/core/l10n/te.php
+++ b/core/l10n/te.php
@@ -1,6 +1,5 @@
"ఈ వర్గం ఇప్పటికే ఉంది: %s",
"Sunday" => "ఆదివారం",
"Monday" => "సోమవారం",
"Tuesday" => "మంగళవారం",
@@ -42,11 +41,12 @@ $TRANSLATIONS = array(
"Send" => "పంపించు",
"Expiration date" => "కాలం చెల్లు తేదీ",
"delete" => "తొలగించు",
+"Delete" => "తొలగించు",
+"Add" => "చేర్చు",
"Username" => "వాడుకరి పేరు",
"New password" => "కొత్త సంకేతపదం",
"Users" => "వాడుకరులు",
"Help" => "సహాయం",
-"Add" => "చేర్చు",
"Log out" => "నిష్క్రమించు",
"Lost your password?" => "మీ సంకేతపదం పోయిందా?"
);
diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php
index c6c0e94a32e..8deb3ef20df 100644
--- a/core/l10n/th_TH.php
+++ b/core/l10n/th_TH.php
@@ -1,13 +1,6 @@
"กลุ่มผู้ใช้งาน",
-"Category type not provided." => "ยังไม่ได้ระบุชนิดของหมวดหมู่",
-"No category to add?" => "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?",
-"Object type not provided." => "ชนิดของวัตถุยังไม่ได้ถูกระบุ",
-"%s ID not provided." => "ยังไม่ได้ระบุรหัส %s",
-"Error adding %s to favorites." => "เกิดข้อผิดพลาดในการเพิ่ม %s เข้าไปยังรายการโปรด",
-"No categories selected for deletion." => "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ",
-"Error removing %s from favorites." => "เกิดข้อผิดพลาดในการลบ %s ออกจากรายการโปรด",
"Sunday" => "วันอาทิตย์",
"Monday" => "วันจันทร์",
"Tuesday" => "วันอังคาร",
@@ -45,12 +38,9 @@ $TRANSLATIONS = array(
"Ok" => "ตกลง",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "ยกเลิก",
-"The object type is not specified." => "ชนิดของวัตถุยังไม่ได้รับการระบุ",
-"Error" => "ข้อผิดพลาด",
-"The app name is not specified." => "ชื่อของแอปยังไม่ได้รับการระบุชื่อ",
-"The required file {file} is not installed!" => "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง",
"Shared" => "แชร์แล้ว",
"Share" => "แชร์",
+"Error" => "ข้อผิดพลาด",
"Error while sharing" => "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล",
"Error while unsharing" => "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล",
"Error while changing permissions" => "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน",
@@ -81,6 +71,9 @@ $TRANSLATIONS = array(
"Sending ..." => "กำลังส่ง...",
"Email sent" => "ส่งอีเมล์แล้ว",
"Warning" => "คำเตือน",
+"The object type is not specified." => "ชนิดของวัตถุยังไม่ได้รับการระบุ",
+"Delete" => "ลบ",
+"Add" => "เพิ่ม",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "การอัพเดทไม่เป็นผลสำเร็จ กรุณาแจ้งปัญหาที่เกิดขึ้นไปยัง คอมมูนิตี้ผู้ใช้งาน ownCloud",
"The update was successful. Redirecting you to ownCloud now." => "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้",
"Use the following link to reset your password: {link}" => "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}",
@@ -98,8 +91,6 @@ $TRANSLATIONS = array(
"Help" => "ช่วยเหลือ",
"Access forbidden" => "การเข้าถึงถูกหวงห้าม",
"Cloud not found" => "ไม่พบ Cloud",
-"Edit categories" => "แก้ไขหมวดหมู่",
-"Add" => "เพิ่ม",
"Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "ยังไม่มีตัวสร้างหมายเลขแบบสุ่มให้ใช้งาน, กรุณาเปิดใช้งานส่วนเสริม PHP OpenSSL",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "หากปราศจากตัวสร้างหมายเลขแบบสุ่มที่ช่วยป้องกันความปลอดภัย ผู้บุกรุกอาจสามารถที่จะคาดคะเนรหัสยืนยันการเข้าถึงเพื่อรีเซ็ตรหัสผ่าน และเอาบัญชีของคุณไปเป็นของตนเองได้",
diff --git a/core/l10n/tr.php b/core/l10n/tr.php
index 57603895c94..c6787cc4fd6 100644
--- a/core/l10n/tr.php
+++ b/core/l10n/tr.php
@@ -8,14 +8,8 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "Dosya önbelleği güncelleniyor. Bu, gerçekten uzun sürebilir.",
"Updated filecache" => "Dosya önbelleği güncellendi",
"... %d%% done ..." => "%%%d tamamlandı ...",
-"Category type not provided." => "Kategori türü girilmedi.",
-"No category to add?" => "Eklenecek kategori yok?",
-"This category already exists: %s" => "Bu kategori zaten mevcut: %s",
-"Object type not provided." => "Nesne türü desteklenmemektedir.",
-"%s ID not provided." => "%s ID belirtilmedi.",
-"Error adding %s to favorites." => "%s favorilere eklenirken hata oluştu",
-"No categories selected for deletion." => "Silmek için bir kategori seçilmedi",
-"Error removing %s from favorites." => "%s favorilere çıkarılırken hata oluştu",
+"Unknown filetype" => "Bilinmeyen dosya türü",
+"Invalid image" => "Geçersiz resim",
"Sunday" => "Pazar",
"Monday" => "Pazartesi",
"Tuesday" => "Salı",
@@ -53,12 +47,9 @@ $TRANSLATIONS = array(
"Ok" => "Tamam",
"_{count} file conflict_::_{count} file conflicts_" => array("",""),
"Cancel" => "İptal",
-"The object type is not specified." => "Nesne türü belirtilmemiş.",
-"Error" => "Hata",
-"The app name is not specified." => "uygulama adı belirtilmedi.",
-"The required file {file} is not installed!" => "İhtiyaç duyulan {file} dosyası kurulu değil.",
"Shared" => "Paylaşılan",
"Share" => "Paylaş",
+"Error" => "Hata",
"Error while sharing" => "Paylaşım sırasında hata ",
"Error while unsharing" => "Paylaşım iptal ediliyorken hata",
"Error while changing permissions" => "İzinleri değiştirirken hata oluştu",
@@ -90,6 +81,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Gönderiliyor...",
"Email sent" => "Eposta gönderildi",
"Warning" => "Uyarı",
+"The object type is not specified." => "Nesne türü belirtilmemiş.",
+"Delete" => "Sil",
+"Add" => "Ekle",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin ownCloud community.",
"The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.",
"%s password reset" => "%s parola sıfırlama",
@@ -112,8 +106,6 @@ $TRANSLATIONS = array(
"Help" => "Yardım",
"Access forbidden" => "Erişim yasaklı",
"Cloud not found" => "Bulut bulunamadı",
-"Edit categories" => "Kategorileri düzenle",
-"Add" => "Ekle",
"Security Warning" => "Güvenlik Uyarisi",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "%s güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin.",
diff --git a/core/l10n/ug.php b/core/l10n/ug.php
index 621c45d4d0a..3d9d39c854f 100644
--- a/core/l10n/ug.php
+++ b/core/l10n/ug.php
@@ -32,8 +32,8 @@ $TRANSLATIONS = array(
"Ok" => "جەزملە",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "ۋاز كەچ",
-"Error" => "خاتالىق",
"Share" => "ھەمبەھىر",
+"Error" => "خاتالىق",
"Share with" => "ھەمبەھىر",
"Password" => "ئىم",
"Send" => "يوللا",
@@ -41,14 +41,14 @@ $TRANSLATIONS = array(
"delete" => "ئۆچۈر",
"share" => "ھەمبەھىر",
"Warning" => "ئاگاھلاندۇرۇش",
+"Delete" => "ئۆچۈر",
+"Add" => "قوش",
"Username" => "ئىشلەتكۈچى ئاتى",
"New password" => "يېڭى ئىم",
"Personal" => "شەخسىي",
"Users" => "ئىشلەتكۈچىلەر",
"Apps" => "ئەپلەر",
"Help" => "ياردەم",
-"Edit categories" => "تۈر تەھرىر",
-"Add" => "قوش",
"Security Warning" => "بىخەتەرلىك ئاگاھلاندۇرۇش",
"Advanced" => "ئالىي",
"Finish setup" => "تەڭشەك تامام",
diff --git a/core/l10n/uk.php b/core/l10n/uk.php
index 6bd6901815d..64e79abcdd0 100644
--- a/core/l10n/uk.php
+++ b/core/l10n/uk.php
@@ -1,14 +1,6 @@
"група",
-"Category type not provided." => "Не вказано тип категорії.",
-"No category to add?" => "Відсутні категорії для додавання?",
-"This category already exists: %s" => "Ця категорія вже існує: %s",
-"Object type not provided." => "Не вказано тип об'єкту.",
-"%s ID not provided." => "%s ID не вказано.",
-"Error adding %s to favorites." => "Помилка при додаванні %s до обраного.",
-"No categories selected for deletion." => "Жодної категорії не обрано для видалення.",
-"Error removing %s from favorites." => "Помилка при видалені %s із обраного.",
"Sunday" => "Неділя",
"Monday" => "Понеділок",
"Tuesday" => "Вівторок",
@@ -46,12 +38,9 @@ $TRANSLATIONS = array(
"Ok" => "Ok",
"_{count} file conflict_::_{count} file conflicts_" => array("","",""),
"Cancel" => "Відмінити",
-"The object type is not specified." => "Не визначено тип об'єкту.",
-"Error" => "Помилка",
-"The app name is not specified." => "Не визначено ім'я програми.",
-"The required file {file} is not installed!" => "Необхідний файл {file} не встановлено!",
"Shared" => "Опубліковано",
"Share" => "Поділитися",
+"Error" => "Помилка",
"Error while sharing" => "Помилка під час публікації",
"Error while unsharing" => "Помилка під час відміни публікації",
"Error while changing permissions" => "Помилка при зміні повноважень",
@@ -82,6 +71,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Надсилання...",
"Email sent" => "Ел. пошта надіслана",
"Warning" => "Попередження",
+"The object type is not specified." => "Не визначено тип об'єкту.",
+"Delete" => "Видалити",
+"Add" => "Додати",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в спільноті ownCloud.",
"The update was successful. Redirecting you to ownCloud now." => "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud.",
"Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}",
@@ -99,8 +91,6 @@ $TRANSLATIONS = array(
"Help" => "Допомога",
"Access forbidden" => "Доступ заборонено",
"Cloud not found" => "Cloud не знайдено",
-"Edit categories" => "Редагувати категорії",
-"Add" => "Додати",
"Security Warning" => "Попередження про небезпеку",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не доступний безпечний генератор випадкових чисел, будь ласка, активуйте PHP OpenSSL додаток.",
diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php
index fc736779122..9d40392c085 100644
--- a/core/l10n/ur_PK.php
+++ b/core/l10n/ur_PK.php
@@ -1,7 +1,5 @@
"شامل کرنے کے لیے کوئی زمرہ نہیں؟",
-"No categories selected for deletion." => "ختم کرنے کے لیے کسی زمرہ جات کا انتخاب نہیں کیا گیا۔",
"January" => "جنوری",
"February" => "فرورئ",
"March" => "مارچ",
@@ -45,6 +43,7 @@ $TRANSLATIONS = array(
"delete" => "ختم کریں",
"share" => "شئیر کریں",
"Password protected" => "پاسورڈ سے محفوظ کیا گیا ہے",
+"Add" => "شامل کریں",
"Use the following link to reset your password: {link}" => "اپنا پاسورڈ ری سیٹ کرنے کے لیے اس لنک پر کلک کریں۔ {link}",
"You will receive a link to reset your password via Email." => "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے",
"Username" => "یوزر نیم",
@@ -60,8 +59,6 @@ $TRANSLATIONS = array(
"Help" => "مدد",
"Access forbidden" => "پہنچ کی اجازت نہیں",
"Cloud not found" => "نہیں مل سکا",
-"Edit categories" => "زمرہ جات کی تدوین کریں",
-"Add" => "شامل کریں",
"Create an admin account" => "ایک ایڈمن اکاؤنٹ بنائیں",
"Advanced" => "ایڈوانسڈ",
"Data folder" => "ڈیٹا فولڈر",
diff --git a/core/l10n/vi.php b/core/l10n/vi.php
index 2e3d9569357..9d335e4427a 100644
--- a/core/l10n/vi.php
+++ b/core/l10n/vi.php
@@ -1,14 +1,6 @@
"nhóm",
-"Category type not provided." => "Kiểu hạng mục không được cung cấp.",
-"No category to add?" => "Không có danh mục được thêm?",
-"This category already exists: %s" => "Danh mục này đã tồn tại: %s",
-"Object type not provided." => "Loại đối tượng không được cung cấp.",
-"%s ID not provided." => "%s ID không được cung cấp.",
-"Error adding %s to favorites." => "Lỗi thêm %s vào mục yêu thích.",
-"No categories selected for deletion." => "Bạn chưa chọn mục để xóa",
-"Error removing %s from favorites." => "Lỗi xóa %s từ mục yêu thích.",
"Sunday" => "Chủ nhật",
"Monday" => "Thứ 2",
"Tuesday" => "Thứ 3",
@@ -46,12 +38,9 @@ $TRANSLATIONS = array(
"Ok" => "Đồng ý",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "Hủy",
-"The object type is not specified." => "Loại đối tượng không được chỉ định.",
-"Error" => "Lỗi",
-"The app name is not specified." => "Tên ứng dụng không được chỉ định.",
-"The required file {file} is not installed!" => "Tập tin cần thiết {file} không được cài đặt!",
"Shared" => "Được chia sẻ",
"Share" => "Chia sẻ",
+"Error" => "Lỗi",
"Error while sharing" => "Lỗi trong quá trình chia sẻ",
"Error while unsharing" => "Lỗi trong quá trình gỡ chia sẻ",
"Error while changing permissions" => "Lỗi trong quá trình phân quyền",
@@ -82,6 +71,9 @@ $TRANSLATIONS = array(
"Sending ..." => "Đang gởi ...",
"Email sent" => "Email đã được gửi",
"Warning" => "Cảnh báo",
+"The object type is not specified." => "Loại đối tượng không được chỉ định.",
+"Delete" => "Xóa",
+"Add" => "Thêm",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "Cập nhật không thành công . Vui lòng thông báo đến Cộng đồng ownCloud .",
"The update was successful. Redirecting you to ownCloud now." => "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud.",
"Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}",
@@ -101,8 +93,6 @@ $TRANSLATIONS = array(
"Help" => "Giúp đỡ",
"Access forbidden" => "Truy cập bị cấm",
"Cloud not found" => "Không tìm thấy Clound",
-"Edit categories" => "Sửa chuyên mục",
-"Add" => "Thêm",
"Security Warning" => "Cảnh bảo bảo mật",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Phiên bản PHP của bạn có lỗ hổng NULL Byte attack (CVE-2006-7243)",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Không an toàn ! chức năng random number generator đã có sẵn ,vui lòng bật PHP OpenSSL extension.",
diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php
index 6a5dcb50a95..727daccad05 100644
--- a/core/l10n/zh_CN.php
+++ b/core/l10n/zh_CN.php
@@ -8,14 +8,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "正在更新文件缓存,这可能需要较长时间...",
"Updated filecache" => "文件缓存已更新",
"... %d%% done ..." => "...已完成 %d%% ...",
-"Category type not provided." => "未提供分类类型。",
-"No category to add?" => "没有可添加分类?",
-"This category already exists: %s" => "此分类已存在:%s",
-"Object type not provided." => "未提供对象类型。",
-"%s ID not provided." => "%s ID未提供。",
-"Error adding %s to favorites." => "向收藏夹中新增%s时出错。",
-"No categories selected for deletion." => "没有选择要删除的类别",
-"Error removing %s from favorites." => "从收藏夹中移除%s时出错。",
"Sunday" => "星期日",
"Monday" => "星期一",
"Tuesday" => "星期二",
@@ -53,12 +45,9 @@ $TRANSLATIONS = array(
"Ok" => "好",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "取消",
-"The object type is not specified." => "未指定对象类型。",
-"Error" => "错误",
-"The app name is not specified." => "未指定应用名称。",
-"The required file {file} is not installed!" => "所需文件{file}未安装!",
"Shared" => "已共享",
"Share" => "分享",
+"Error" => "错误",
"Error while sharing" => "共享时出错",
"Error while unsharing" => "取消共享时出错",
"Error while changing permissions" => "修改权限时出错",
@@ -90,6 +79,9 @@ $TRANSLATIONS = array(
"Sending ..." => "正在发送...",
"Email sent" => "邮件已发送",
"Warning" => "警告",
+"The object type is not specified." => "未指定对象类型。",
+"Delete" => "删除",
+"Add" => "增加",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "更新不成功。请汇报将此问题汇报给 ownCloud 社区。",
"The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。",
"%s password reset" => "重置 %s 的密码",
@@ -112,8 +104,6 @@ $TRANSLATIONS = array(
"Help" => "帮助",
"Access forbidden" => "访问禁止",
"Cloud not found" => "未找到云",
-"Edit categories" => "编辑分类",
-"Add" => "增加",
"Security Warning" => "安全警告",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "为保证安全使用 %s 请更新您的PHP。",
diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php
index f6c4003af61..50caa86a2f2 100644
--- a/core/l10n/zh_HK.php
+++ b/core/l10n/zh_HK.php
@@ -33,9 +33,9 @@ $TRANSLATIONS = array(
"Ok" => "OK",
"_{count} file conflict_::_{count} file conflicts_" => array(""),
"Cancel" => "取消",
-"Error" => "錯誤",
"Shared" => "已分享",
"Share" => "分享",
+"Error" => "錯誤",
"Error while sharing" => "分享時發生錯誤",
"Error while unsharing" => "取消分享時發生錯誤",
"Error while changing permissions" => "更改權限時發生錯誤",
@@ -58,6 +58,8 @@ $TRANSLATIONS = array(
"Password protected" => "密碼保護",
"Sending ..." => "傳送中",
"Email sent" => "郵件已傳",
+"Delete" => "刪除",
+"Add" => "加入",
"The update was successful. Redirecting you to ownCloud now." => "更新成功, 正",
"Use the following link to reset your password: {link}" => "請用以下連結重設你的密碼: {link}",
"You will receive a link to reset your password via Email." => "你將收到一封電郵",
@@ -73,7 +75,6 @@ $TRANSLATIONS = array(
"Admin" => "管理",
"Help" => "幫助",
"Cloud not found" => "未找到Cloud",
-"Add" => "加入",
"Create an admin account" => "建立管理員帳戶",
"Advanced" => "進階",
"Configure the database" => "設定資料庫",
diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php
index 1483329bbfd..0cb4967b2b5 100644
--- a/core/l10n/zh_TW.php
+++ b/core/l10n/zh_TW.php
@@ -9,14 +9,6 @@ $TRANSLATIONS = array(
"Updating filecache, this may take really long..." => "更新檔案快取,這可能要很久…",
"Updated filecache" => "已更新檔案快取",
"... %d%% done ..." => "已完成 %d%%",
-"Category type not provided." => "未提供分類類型。",
-"No category to add?" => "沒有可增加的分類?",
-"This category already exists: %s" => "分類已經存在:%s",
-"Object type not provided." => "未指定物件類型",
-"%s ID not provided." => "未提供 %s ID 。",
-"Error adding %s to favorites." => "加入 %s 到最愛時發生錯誤。",
-"No categories selected for deletion." => "沒有選擇要刪除的分類。",
-"Error removing %s from favorites." => "從最愛移除 %s 時發生錯誤。",
"No image or file provided" => "未提供圖片或檔案",
"Unknown filetype" => "未知的檔案類型",
"Invalid image" => "無效的圖片",
@@ -68,12 +60,9 @@ $TRANSLATIONS = array(
"(all selected)" => "(已全選)",
"({count} selected)" => "(已選 {count} 項)",
"Error loading file exists template" => "載入檔案存在樣板出錯",
-"The object type is not specified." => "未指定物件類型。",
-"Error" => "錯誤",
-"The app name is not specified." => "沒有指定 app 名稱。",
-"The required file {file} is not installed!" => "沒有安裝所需的檔案 {file} !",
"Shared" => "已分享",
"Share" => "分享",
+"Error" => "錯誤",
"Error while sharing" => "分享時發生錯誤",
"Error while unsharing" => "取消分享時發生錯誤",
"Error while changing permissions" => "修改權限時發生錯誤",
@@ -106,6 +95,9 @@ $TRANSLATIONS = array(
"Sending ..." => "正在傳送…",
"Email sent" => "Email 已寄出",
"Warning" => "警告",
+"The object type is not specified." => "未指定物件類型。",
+"Delete" => "刪除",
+"Add" => "增加",
"The update was unsuccessful. Please report this issue to the ownCloud community." => "升級失敗,請將此問題回報 ownCloud 社群。",
"The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。",
"%s password reset" => "%s 密碼重設",
@@ -131,8 +123,6 @@ $TRANSLATIONS = array(
"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n",
"The share will expire on %s.\n\n" => "分享將於 %s 過期\n",
"Cheers!" => "太棒了!",
-"Edit categories" => "編輯分類",
-"Add" => "增加",
"Security Warning" => "安全性警告",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "請更新 PHP 以安全地使用 %s。",
diff --git a/core/routes.php b/core/routes.php
index 57e25c0f1f7..5009243d59f 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -23,19 +23,43 @@ $this->create('core_ajax_share', '/core/ajax/share.php')
// Translations
$this->create('core_ajax_translations', '/core/ajax/translations.php')
->actionInclude('core/ajax/translations.php');
-// VCategories
-$this->create('core_ajax_vcategories_add', '/core/ajax/vcategories/add.php')
- ->actionInclude('core/ajax/vcategories/add.php');
-$this->create('core_ajax_vcategories_delete', '/core/ajax/vcategories/delete.php')
- ->actionInclude('core/ajax/vcategories/delete.php');
-$this->create('core_ajax_vcategories_addtofavorites', '/core/ajax/vcategories/addToFavorites.php')
- ->actionInclude('core/ajax/vcategories/addToFavorites.php');
-$this->create('core_ajax_vcategories_removefromfavorites', '/core/ajax/vcategories/removeFromFavorites.php')
- ->actionInclude('core/ajax/vcategories/removeFromFavorites.php');
-$this->create('core_ajax_vcategories_favorites', '/core/ajax/vcategories/favorites.php')
- ->actionInclude('core/ajax/vcategories/favorites.php');
-$this->create('core_ajax_vcategories_edit', '/core/ajax/vcategories/edit.php')
- ->actionInclude('core/ajax/vcategories/edit.php');
+// Tags
+$this->create('core_tags_tags', '/tags/{type}')
+ ->get()
+ ->action('OC\Core\Tags\Controller', 'getTags')
+ ->requirements(array('type'));
+$this->create('core_tags_favorites', '/tags/{type}/favorites')
+ ->get()
+ ->action('OC\Core\Tags\Controller', 'getFavorites')
+ ->requirements(array('type'));
+$this->create('core_tags_ids_for_tag', '/tags/{type}/ids')
+ ->get()
+ ->action('OC\Core\Tags\Controller', 'getIdsForTag')
+ ->requirements(array('type'));
+$this->create('core_tags_favorite', '/tags/{type}/favorite/{id}/')
+ ->post()
+ ->action('OC\Core\Tags\Controller', 'favorite')
+ ->requirements(array('type', 'id'));
+$this->create('core_tags_unfavorite', '/tags/{type}/unfavorite/{id}/')
+ ->post()
+ ->action('OC\Core\Tags\Controller', 'unFavorite')
+ ->requirements(array('type', 'id'));
+$this->create('core_tags_tag', '/tags/{type}/tag/{id}/')
+ ->post()
+ ->action('OC\Core\Tags\Controller', 'tagAs')
+ ->requirements(array('type', 'id'));
+$this->create('core_tags_untag', '/tags/{type}/untag/{id}/')
+ ->post()
+ ->action('OC\Core\Tags\Controller', 'unTag')
+ ->requirements(array('type', 'id'));
+$this->create('core_tags_add', '/tags/{type}/add')
+ ->post()
+ ->action('OC\Core\Tags\Controller', 'addTag')
+ ->requirements(array('type'));
+$this->create('core_tags_delete', '/tags/{type}/delete')
+ ->post()
+ ->action('OC\Core\Tags\Controller', 'deleteTags')
+ ->requirements(array('type'));
// oC JS config
$this->create('js_config', '/core/js/config.js')
->actionInclude('core/js/config.php');
diff --git a/core/tags/controller.php b/core/tags/controller.php
new file mode 100644
index 00000000000..c790d43345d
--- /dev/null
+++ b/core/tags/controller.php
@@ -0,0 +1,114 @@
+getTagManager()->load($type);
+ return $tagger;
+ } catch(\Exception $e) {
+ \OCP\Util::writeLog('core', __METHOD__ . ' Exception: ' . $e->getMessage(), \OCP\Util::ERROR);
+ $l = new \OC_L10n('core');
+ \OC_JSON::error(array('message'=> $l->t('Error loading tags')));
+ exit;
+ }
+ }
+
+ public static function getTags($args) {
+ $tagger = self::getTagger($args['type']);
+ \OC_JSON::success(array('tags'=> $tagger->getTags()));
+ }
+
+ public static function getFavorites($args) {
+ $tagger = self::getTagger($args['type']);
+ \OC_JSON::success(array('ids'=> $tagger->getFavorites()));
+ }
+
+ public static function getIdsForTag($args) {
+ $tagger = self::getTagger($args['type']);
+ \OC_JSON::success(array('ids'=> $tagger->getIdsForTag($_GET['tag'])));
+ }
+
+ public static function addTag($args) {
+ $tagger = self::getTagger($args['type']);
+
+ $id = $tagger->add(strip_tags($_POST['tag']));
+ if($id === false) {
+ $l = new \OC_L10n('core');
+ \OC_JSON::error(array('message'=> $l->t('Tag already exists')));
+ } else {
+ \OC_JSON::success(array('id'=> $id));
+ }
+ }
+
+ public static function deleteTags($args) {
+ $tags = $_POST['tags'];
+ if(!is_array($tags)) {
+ $tags = array($tags);
+ }
+
+ $tagger = self::getTagger($args['type']);
+
+ if(!$tagger->delete($tags)) {
+ $l = new \OC_L10n('core');
+ \OC_JSON::error(array('message'=> $l->t('Error deleting tag(s)')));
+ } else {
+ \OC_JSON::success();
+ }
+ }
+
+ public static function tagAs($args) {
+ $tagger = self::getTagger($args['type']);
+
+ if(!$tagger->tagAs($args['id'], $_POST['tag'])) {
+ $l = new \OC_L10n('core');
+ \OC_JSON::error(array('message'=> $l->t('Error tagging')));
+ } else {
+ \OC_JSON::success();
+ }
+ }
+
+ public static function unTag($args) {
+ $tagger = self::getTagger($args['type']);
+
+ if(!$tagger->unTag($args['id'], $_POST['tag'])) {
+ $l = new \OC_L10n('core');
+ \OC_JSON::error(array('message'=> $l->t('Error untagging')));
+ } else {
+ \OC_JSON::success();
+ }
+ }
+
+ public static function favorite($args) {
+ $tagger = self::getTagger($args['type']);
+
+ if(!$tagger->addToFavorites($args['id'])) {
+ $l = new \OC_L10n('core');
+ \OC_JSON::error(array('message'=> $l->t('Error favoriting')));
+ } else {
+ \OC_JSON::success();
+ }
+ }
+
+ public static function unFavorite($args) {
+ $tagger = self::getTagger($args['type']);
+
+ if(!$tagger->removeFromFavorites($args['id'])) {
+ $l = new \OC_L10n('core');
+ \OC_JSON::error(array('message'=> $l->t('Error unfavoriting')));
+ } else {
+ \OC_JSON::success();
+ }
+ }
+
+}
diff --git a/core/templates/edit_categories_dialog.php b/core/templates/edit_categories_dialog.php
deleted file mode 100644
index ea155bdf0ba..00000000000
--- a/core/templates/edit_categories_dialog.php
+++ /dev/null
@@ -1,19 +0,0 @@
-
-