mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge branch 'master' into setup
Conflicts: lib/util.php
This commit is contained in:
commit
a3705ce188
142 changed files with 735 additions and 664 deletions
|
|
@ -34,6 +34,7 @@ if($doBreadcrumb) {
|
|||
$files = array();
|
||||
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir ) as $i ) {
|
||||
$i["date"] = OCP\Util::formatDate($i["mtime"] );
|
||||
$i['icon'] = \OCA\files\lib\Helper::determineIcon($i);
|
||||
$files[] = $i;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -11,22 +11,56 @@ OCP\JSON::checkLoggedIn();
|
|||
|
||||
// Load the files
|
||||
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
|
||||
$mimetype = isset($_GET['mimetype']) ? $_GET['mimetype'] : '';
|
||||
$mimetypes = isset($_GET['mimetypes']) ? json_decode($_GET['mimetypes'], true) : '';
|
||||
|
||||
// Clean up duplicates from array and deal with non-array requests
|
||||
if (is_array($mimetypes)) {
|
||||
$mimetypes = array_unique($mimetypes);
|
||||
} elseif (is_null($mimetypes)) {
|
||||
$mimetypes = array($_GET['mimetypes']);
|
||||
}
|
||||
|
||||
// make filelist
|
||||
$files = array();
|
||||
// If a type other than directory is requested first load them.
|
||||
if($mimetype && strpos($mimetype, 'httpd/unix-directory') === false) {
|
||||
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir, 'httpd/unix-directory' ) as $i ) {
|
||||
$i["date"] = OCP\Util::formatDate($i["mtime"] );
|
||||
$i['mimetype_icon'] = $i['type'] == 'dir' ? \mimetype_icon('dir'): \mimetype_icon($i['mimetype']);
|
||||
$files[] = $i;
|
||||
if($mimetypes && !in_array('httpd/unix-directory', $mimetypes)) {
|
||||
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir, 'httpd/unix-directory' ) as $file ) {
|
||||
$file["date"] = OCP\Util::formatDate($file["mtime"]);
|
||||
$file['mimetype_icon'] = \mimetype_icon('dir');
|
||||
$files[] = $file;
|
||||
}
|
||||
}
|
||||
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir, $mimetype ) as $i ) {
|
||||
$i["date"] = OCP\Util::formatDate($i["mtime"] );
|
||||
$i['mimetype_icon'] = $i['type'] == 'dir' ? \mimetype_icon('dir'): \mimetype_icon($i['mimetype']);
|
||||
$files[] = $i;
|
||||
|
||||
if (is_array($mimetypes) && count($mimetypes)) {
|
||||
foreach ($mimetypes as $mimetype) {
|
||||
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir, $mimetype ) as $file ) {
|
||||
$file["date"] = OCP\Util::formatDate($file["mtime"]);
|
||||
if ($file['type'] === "dir") {
|
||||
$file['mimetype_icon'] = \mimetype_icon('dir');
|
||||
} else {
|
||||
$file['mimetype_icon'] = \mimetype_icon($file['mimetype']);
|
||||
}
|
||||
$files[] = $file;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
foreach( \OC\Files\Filesystem::getDirectoryContent( $dir ) as $file ) {
|
||||
$file["date"] = OCP\Util::formatDate($file["mtime"]);
|
||||
if ($file['type'] === "dir") {
|
||||
$file['mimetype_icon'] = \mimetype_icon('dir');
|
||||
} else {
|
||||
$file['mimetype_icon'] = \mimetype_icon($file['mimetype']);
|
||||
}
|
||||
$files[] = $file;
|
||||
}
|
||||
}
|
||||
|
||||
OCP\JSON::success(array('data' => $files));
|
||||
// Sort by name
|
||||
usort($files, function ($a, $b) {
|
||||
if ($a['name'] === $b['name']) {
|
||||
return 0;
|
||||
}
|
||||
return ($a['name'] < $b['name']) ? -1 : 1;
|
||||
});
|
||||
|
||||
OC_JSON::success(array('data' => $files));
|
||||
|
|
|
|||
|
|
@ -75,6 +75,7 @@ foreach ($content as $i) {
|
|||
}
|
||||
$i['directory'] = $dir;
|
||||
$i['isPreviewAvailable'] = \OCP\Preview::isMimeSupported($i['mimetype']);
|
||||
$i['icon'] = \OCA\files\lib\Helper::determineIcon($i);
|
||||
$files[] = $i;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -344,6 +344,9 @@ $(document).ready(function() {
|
|||
}
|
||||
var li=form.parent();
|
||||
form.remove();
|
||||
/* workaround for IE 9&10 click event trap, 2 lines: */
|
||||
$('input').first().focus();
|
||||
$('#content').focus();
|
||||
li.append('<p>'+li.data('text')+'</p>');
|
||||
$('#new>a').click();
|
||||
});
|
||||
|
|
|
|||
|
|
@ -33,9 +33,10 @@ $TRANSLATIONS = array(
|
|||
"cancel" => "cancelar",
|
||||
"replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}",
|
||||
"undo" => "deshacer",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
"_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"),
|
||||
"_%n file_::_%n files_" => array("%n archivo","%n archivos"),
|
||||
"{dirs} and {files}" => "{carpetas} y {archivos}",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"),
|
||||
"files uploading" => "Subiendo archivos",
|
||||
"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.",
|
||||
"File name cannot be empty." => "El nombre del archivo no puede quedar vacío.",
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
$TRANSLATIONS = array(
|
||||
"URL cannot be empty." => "ناونیشانی بهستهر نابێت بهتاڵ بێت.",
|
||||
"Error" => "ههڵه",
|
||||
"Share" => "هاوبەشی کردن",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ $TRANSLATIONS = array(
|
|||
"cancel" => "cancelar",
|
||||
"replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ",
|
||||
"undo" => "desfazer",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_%n folder_::_%n folders_" => array("%n pasta","%n pastas"),
|
||||
"_%n file_::_%n files_" => array("%n arquivo","%n arquivos"),
|
||||
"{dirs} and {files}" => "{dirs} e {files}",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Enviando %n arquivo","Enviando %n arquivos"),
|
||||
"files uploading" => "enviando arquivos",
|
||||
"'.' is an invalid file name." => "'.' é um nome de arquivo inválido.",
|
||||
"File name cannot be empty." => "O nome do arquivo não pode estar vazio.",
|
||||
|
|
|
|||
|
|
@ -6,27 +6,27 @@ $TRANSLATIONS = array(
|
|||
"Invalid Token" => "Jeton Invalid",
|
||||
"No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută",
|
||||
"There is no error, the file uploaded with success" => "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste marimea maxima permisa in php.ini: ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML",
|
||||
"The uploaded file was only partially uploaded" => "Fișierul a fost încărcat doar parțial",
|
||||
"No file was uploaded" => "Nu a fost încărcat nici un fișier",
|
||||
"Missing a temporary folder" => "Lipsește un director temporar",
|
||||
"Failed to write to disk" => "Eroare la scriere pe disc",
|
||||
"Missing a temporary folder" => "Lipsește un dosar temporar",
|
||||
"Failed to write to disk" => "Eroare la scrierea discului",
|
||||
"Not enough storage available" => "Nu este suficient spațiu disponibil",
|
||||
"Upload failed" => "Încărcarea a eșuat",
|
||||
"Invalid directory." => "Director invalid.",
|
||||
"Invalid directory." => "registru invalid.",
|
||||
"Files" => "Fișiere",
|
||||
"Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.",
|
||||
"Unable to upload your file as it is a directory or has 0 bytes" => "lista nu se poate incarca poate fi un fisier sau are 0 bytes",
|
||||
"Not enough space available" => "Nu este suficient spațiu disponibil",
|
||||
"Upload cancelled." => "Încărcare anulată.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.",
|
||||
"URL cannot be empty." => "Adresa URL nu poate fi goală.",
|
||||
"URL cannot be empty." => "Adresa URL nu poate fi golita",
|
||||
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nume de dosar invalid. Utilizarea 'Shared' e rezervată de ownCloud",
|
||||
"Error" => "Eroare",
|
||||
"Share" => "Partajează",
|
||||
"Share" => "a imparti",
|
||||
"Delete permanently" => "Stergere permanenta",
|
||||
"Rename" => "Redenumire",
|
||||
"Pending" => "În așteptare",
|
||||
"Pending" => "in timpul",
|
||||
"{new_name} already exists" => "{new_name} deja exista",
|
||||
"replace" => "înlocuire",
|
||||
"suggest name" => "sugerează nume",
|
||||
|
|
@ -39,10 +39,11 @@ $TRANSLATIONS = array(
|
|||
"files uploading" => "fișiere se încarcă",
|
||||
"'.' is an invalid file name." => "'.' este un nume invalid de fișier.",
|
||||
"File name cannot be empty." => "Numele fișierului nu poate rămâne gol.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" => "Spatiul de stocare este plin, nu mai puteti incarca s-au sincroniza alte fisiere.",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" => "Spatiul de stocare este aproape plin ({usedSpacePercent}%)",
|
||||
"Your download is being prepared. This might take some time if the files are big." => "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă fișierele sunt mari.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalide, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" => "Spatiul de stocare este plin, fisierele nu mai pot fi actualizate sau sincronizate",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" => "Spatiul de stocare este aproape plin {spatiu folosit}%",
|
||||
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele",
|
||||
"Your download is being prepared. This might take some time if the files are big." => "in curs de descarcare. Aceasta poate să dureze ceva timp dacă fișierele sunt mari.",
|
||||
"Name" => "Nume",
|
||||
"Size" => "Dimensiune",
|
||||
"Modified" => "Modificat",
|
||||
|
|
@ -51,25 +52,25 @@ $TRANSLATIONS = array(
|
|||
"File handling" => "Manipulare fișiere",
|
||||
"Maximum upload size" => "Dimensiune maximă admisă la încărcare",
|
||||
"max. possible: " => "max. posibil:",
|
||||
"Needed for multi-file and folder downloads." => "Necesar pentru descărcarea mai multor fișiere și a dosarelor",
|
||||
"Enable ZIP-download" => "Activează descărcare fișiere compresate",
|
||||
"Needed for multi-file and folder downloads." => "necesar la descarcarea mai multor liste si fisiere",
|
||||
"Enable ZIP-download" => "permite descarcarea codurilor ZIP",
|
||||
"0 is unlimited" => "0 e nelimitat",
|
||||
"Maximum input size for ZIP files" => "Dimensiunea maximă de intrare pentru fișiere compresate",
|
||||
"Save" => "Salvează",
|
||||
"New" => "Nou",
|
||||
"Text file" => "Fișier text",
|
||||
"Text file" => "lista",
|
||||
"Folder" => "Dosar",
|
||||
"From link" => "de la adresa",
|
||||
"Deleted files" => "Sterge fisierele",
|
||||
"Cancel upload" => "Anulează încărcarea",
|
||||
"You don’t have write permissions here." => "Nu ai permisiunea de a sterge fisiere aici.",
|
||||
"You don’t have write permissions here." => "Nu ai permisiunea de a scrie aici.",
|
||||
"Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!",
|
||||
"Download" => "Descarcă",
|
||||
"Unshare" => "Anulare partajare",
|
||||
"Unshare" => "Anulare",
|
||||
"Delete" => "Șterge",
|
||||
"Upload too large" => "Fișierul încărcat este prea mare",
|
||||
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.",
|
||||
"Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteptă.",
|
||||
"Files are being scanned, please wait." => "Fișierele sunt scanate, asteptati va rog",
|
||||
"Current scanning" => "În curs de scanare",
|
||||
"Upgrading filesystem cache..." => "Modernizare fisiere de sistem cache.."
|
||||
);
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
$TRANSLATIONS = array(
|
||||
"Could not move %s - File with this name already exists" => "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër",
|
||||
"Could not move %s" => "%s nuk u spostua",
|
||||
"Unable to set upload directory." => "Nuk është i mundur caktimi i dosjes së ngarkimit.",
|
||||
"Invalid Token" => "Përmbajtje e pavlefshme",
|
||||
"No file was uploaded. Unknown error" => "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur",
|
||||
"There is no error, the file uploaded with success" => "Nuk pati veprime të gabuara, skedari u ngarkua me sukses",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:",
|
||||
|
|
@ -11,6 +13,7 @@ $TRANSLATIONS = array(
|
|||
"Missing a temporary folder" => "Një dosje e përkohshme nuk u gjet",
|
||||
"Failed to write to disk" => "Ruajtja në disk dështoi",
|
||||
"Not enough storage available" => "Nuk ka mbetur hapësirë memorizimi e mjaftueshme",
|
||||
"Upload failed" => "Ngarkimi dështoi",
|
||||
"Invalid directory." => "Dosje e pavlefshme.",
|
||||
"Files" => "Skedarët",
|
||||
"Unable to upload your file as it is a directory or has 0 bytes" => "Nuk është i mundur ngarkimi i skedarit tuaj sepse është dosje ose ka dimension 0 byte",
|
||||
|
|
@ -18,6 +21,7 @@ $TRANSLATIONS = array(
|
|||
"Upload cancelled." => "Ngarkimi u anulua.",
|
||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet.",
|
||||
"URL cannot be empty." => "URL-i nuk mund të jetë bosh.",
|
||||
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i",
|
||||
"Error" => "Veprim i gabuar",
|
||||
"Share" => "Nda",
|
||||
"Delete permanently" => "Elimino përfundimisht",
|
||||
|
|
@ -29,19 +33,22 @@ $TRANSLATIONS = array(
|
|||
"cancel" => "anulo",
|
||||
"replaced {new_name} with {old_name}" => "U zëvëndësua {new_name} me {old_name}",
|
||||
"undo" => "anulo",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("",""),
|
||||
"_%n folder_::_%n folders_" => array("%n dosje","%n dosje"),
|
||||
"_%n file_::_%n files_" => array("%n skedar","%n skedarë"),
|
||||
"{dirs} and {files}" => "{dirs} dhe {files}",
|
||||
"_Uploading %n file_::_Uploading %n files_" => array("Po ngarkoj %n skedar","Po ngarkoj %n skedarë"),
|
||||
"files uploading" => "po ngarkoj skedarët",
|
||||
"'.' is an invalid file name." => "'.' është emër i pavlefshëm.",
|
||||
"File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.",
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Emër i pavlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen.",
|
||||
"Your storage is full, files can not be updated or synced anymore!" => "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sinkronizoni më skedarët.",
|
||||
"Your storage is almost full ({usedSpacePercent}%)" => "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)",
|
||||
"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj.",
|
||||
"Your download is being prepared. This might take some time if the files are big." => "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj.",
|
||||
"Name" => "Emri",
|
||||
"Size" => "Dimensioni",
|
||||
"Modified" => "Modifikuar",
|
||||
"%s could not be renamed" => "Nuk është i mundur riemërtimi i %s",
|
||||
"Upload" => "Ngarko",
|
||||
"File handling" => "Trajtimi i skedarit",
|
||||
"Maximum upload size" => "Dimensioni maksimal i ngarkimit",
|
||||
|
|
|
|||
|
|
@ -17,4 +17,33 @@ class Helper
|
|||
'maxHumanFilesize' => $maxHumanFilesize,
|
||||
'usedSpacePercent' => (int)$storageInfo['relative']);
|
||||
}
|
||||
|
||||
public static function determineIcon($file) {
|
||||
if($file['type'] === 'dir') {
|
||||
$dir = $file['directory'];
|
||||
$absPath = \OC\Files\Filesystem::getView()->getAbsolutePath($dir.'/'.$file['name']);
|
||||
$mount = \OC\Files\Filesystem::getMountManager()->find($absPath);
|
||||
if (!is_null($mount)) {
|
||||
$sid = $mount->getStorageId();
|
||||
if (!is_null($sid)) {
|
||||
$sid = explode(':', $sid);
|
||||
if ($sid[0] === 'shared') {
|
||||
return \OC_Helper::mimetypeIcon('dir-shared');
|
||||
}
|
||||
if ($sid[0] !== 'local') {
|
||||
return \OC_Helper::mimetypeIcon('dir-external');
|
||||
}
|
||||
}
|
||||
}
|
||||
return \OC_Helper::mimetypeIcon('dir');
|
||||
}
|
||||
|
||||
if($file['isPreviewAvailable']) {
|
||||
$relativePath = substr($file['path'], 6);
|
||||
return \OC_Helper::previewIcon($relativePath);
|
||||
}
|
||||
return \OC_Helper::mimetypeIcon($file['mimetype']);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
<input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>">
|
||||
<?php foreach($_['files'] as $file):
|
||||
//strlen('files/') => 6
|
||||
$relativePath = substr($file['path'], 6);
|
||||
// the bigger the file, the darker the shade of grey; megabytes*2
|
||||
$simple_size_color = intval(160-$file['size']/(1024*1024)*2);
|
||||
if($simple_size_color<0) $simple_size_color = 0;
|
||||
|
|
@ -22,26 +20,7 @@
|
|||
<?php else: ?>
|
||||
<td class="filename svg"
|
||||
<?php endif; ?>
|
||||
<?php if($file['type'] == 'dir'): ?>
|
||||
style="background-image:url(<?php print_unescaped(OCP\mimetype_icon('dir')); ?>)"
|
||||
<?php else: ?>
|
||||
<?php if($_['isPublic']): ?>
|
||||
<?php
|
||||
$relativePath = substr($relativePath, strlen($_['sharingroot']));
|
||||
?>
|
||||
<?php if($file['isPreviewAvailable']): ?>
|
||||
style="background-image:url(<?php print_unescaped(OCP\publicPreview_icon($relativePath, $_['sharingtoken'])); ?>)"
|
||||
<?php else: ?>
|
||||
style="background-image:url(<?php print_unescaped(OCP\mimetype_icon($file['mimetype'])); ?>)"
|
||||
<?php endif; ?>
|
||||
<?php else: ?>
|
||||
<?php if($file['isPreviewAvailable']): ?>
|
||||
style="background-image:url(<?php print_unescaped(OCP\preview_icon($relativePath)); ?>)"
|
||||
<?php else: ?>
|
||||
style="background-image:url(<?php print_unescaped(OCP\mimetype_icon($file['mimetype'])); ?>)"
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
style="background-image:url(<?php print_unescaped($file['icon']); ?>)"
|
||||
>
|
||||
<?php if(!isset($_['readonly']) || !$_['readonly']): ?>
|
||||
<input id="select-<?php p($file['fileid']); ?>" type="checkbox" />
|
||||
|
|
|
|||
|
|
@ -1,11 +1,21 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"Recovery key successfully enabled" => "Palautusavain kytketty päälle onnistuneesti",
|
||||
"Password successfully changed." => "Salasana vaihdettiin onnistuneesti.",
|
||||
"Could not change the password. Maybe the old password was not correct." => "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.",
|
||||
"Following users are not set up for encryption:" => "Seuraavat käyttäjät eivät ole määrittäneet salausta:",
|
||||
"Saving..." => "Tallennetaan...",
|
||||
"personal settings" => "henkilökohtaiset asetukset",
|
||||
"Encryption" => "Salaus",
|
||||
"Recovery key password" => "Palautusavaimen salasana",
|
||||
"Enabled" => "Käytössä",
|
||||
"Disabled" => "Ei käytössä",
|
||||
"Change Password" => "Vaihda salasana"
|
||||
"Change recovery key password:" => "Vaihda palautusavaimen salasana:",
|
||||
"Old Recovery key password" => "Vanha palautusavaimen salasana",
|
||||
"New Recovery key password" => "Uusi palautusavaimen salasana",
|
||||
"Change Password" => "Vaihda salasana",
|
||||
"Old log-in password" => "Vanha kirjautumis-salasana",
|
||||
"Current log-in password" => "Nykyinen kirjautumis-salasana",
|
||||
"Enable password recovery:" => "Ota salasanan palautus käyttöön:"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
<?php
|
||||
require_once("autoload.inc.php");
|
||||
require_once("ProdsConfig.inc.php");
|
||||
?>
|
||||
|
|
@ -15,5 +15,3 @@ if (file_exists(__DIR__ . "/prods.ini")) {
|
|||
else {
|
||||
$GLOBALS['PRODS_CONFIG'] = array();
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -279,5 +279,3 @@ abstract class ProdsPath
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -103,5 +103,3 @@ class ProdsQuery
|
|||
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -58,5 +58,3 @@ class ProdsRule
|
|||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -432,5 +432,3 @@ stream_wrapper_register('rods', 'ProdsStreamer')
|
|||
or die ('Failed to register protocol:rods');
|
||||
stream_wrapper_register('rods+ticket', 'ProdsStreamer')
|
||||
or die ('Failed to register protocol:rods');
|
||||
?>
|
||||
|
||||
|
|
|
|||
|
|
@ -199,5 +199,3 @@ class RODSAccount
|
|||
return $dir->toURI();
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1611,5 +1611,3 @@ class RODSConn
|
|||
return $results;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -77,5 +77,3 @@ class RODSConnManager
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -180,5 +180,3 @@ class RODSException extends Exception
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -110,5 +110,3 @@ class RODSGenQueConds
|
|||
return $this->cond;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -95,5 +95,3 @@ class RODSGenQueResults
|
|||
return $this->numrow;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -156,5 +156,3 @@ class RODSGenQueSelFlds
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -46,5 +46,3 @@ class RODSKeyValPair
|
|||
return $new_keyval;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -181,5 +181,3 @@ class RODSMessage
|
|||
return $rods_msg->pack();
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -17,4 +17,3 @@ define ("RSYNC_OPR", 14);
|
|||
define ("PHYMV_OPR", 15);
|
||||
define ("PHYMV_SRC", 16);
|
||||
define ("PHYMV_DEST", 17);
|
||||
?>
|
||||
|
|
@ -214,4 +214,3 @@ $GLOBALS['PRODS_API_NUMS_REV'] = array(
|
|||
'1100' => 'SSL_START_AN',
|
||||
'1101' => 'SSL_END_AN',
|
||||
);
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -4,5 +4,3 @@
|
|||
// are doing!
|
||||
define ("ORDER_BY", 0x400);
|
||||
define ("ORDER_BY_DESC", 0x800);
|
||||
|
||||
?>
|
||||
|
|
@ -584,4 +584,3 @@ $GLOBALS['PRODS_ERR_CODES_REV'] = array(
|
|||
'-993000' => 'PAM_AUTH_PASSWORD_FAILED',
|
||||
'-994000' => 'PAM_AUTH_PASSWORD_INVALID_TTL',
|
||||
);
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -222,4 +222,3 @@ $GLOBALS['PRODS_GENQUE_KEYWD_REV'] = array(
|
|||
"lastExeTime" => 'RULE_LAST_EXE_TIME_KW',
|
||||
"exeStatus" => 'RULE_EXE_STATUS_KW',
|
||||
);
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -232,4 +232,3 @@ $GLOBALS['PRODS_GENQUE_NUMS_REV'] = array(
|
|||
'1105' => 'COL_TOKEN_VALUE3',
|
||||
'1106' => 'COL_TOKEN_COMMENT',
|
||||
);
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -246,5 +246,3 @@ class RODSPacket
|
|||
}
|
||||
*/
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -10,5 +10,3 @@ class RP_BinBytesBuf extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -15,5 +15,3 @@ class RP_CollInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -13,5 +13,3 @@ class RP_CollOprStat extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -15,5 +15,3 @@ class RP_DataObjCopyInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -18,5 +18,3 @@ class RP_DataObjInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -52,5 +52,3 @@ class RP_ExecCmdOut extends RODSPacket
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -18,5 +18,3 @@ class RP_ExecMyRuleInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -21,5 +21,3 @@ class RP_GenQueryInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -18,5 +18,3 @@ class RP_GenQueryOut extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -23,5 +23,3 @@ class RP_InxIvalPair extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -40,5 +40,3 @@ class RP_InxValPair extends RODSPacket
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -43,5 +43,3 @@ class RP_KeyValPair extends RODSPacket
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -13,5 +13,3 @@ class RP_MiscSvrInfo extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -14,5 +14,3 @@ class RP_ModAVUMetadataInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -41,5 +41,3 @@ class RP_MsParam extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -17,5 +17,3 @@ class RP_MsParamArray extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -12,6 +12,3 @@ class RP_MsgHeader extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
|
|
@ -11,5 +11,3 @@ class RP_RHostAddr extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -16,5 +16,3 @@ class RP_RodsObjStat extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -10,5 +10,3 @@ class RP_STR extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -11,5 +11,3 @@ class RP_SqlResult extends RODSPacket
|
|||
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -14,5 +14,3 @@ class RP_StartupPack extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -12,5 +12,3 @@ class RP_TransStat extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -12,5 +12,3 @@ class RP_Version extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -10,5 +10,3 @@ class RP_authRequestOut extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -10,5 +10,3 @@ class RP_authResponseInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -12,5 +12,3 @@ class RP_dataObjCloseInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -12,5 +12,3 @@ class RP_dataObjReadInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -12,5 +12,3 @@ class RP_dataObjWriteInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -12,5 +12,3 @@ class RP_fileLseekInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -11,5 +11,3 @@ class RP_fileLseekOut extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -10,5 +10,3 @@ class RP_getTempPasswordOut extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -10,4 +10,3 @@ class RP_pamAuthRequestInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -10,4 +10,3 @@ class RP_pamAuthRequestOut extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -10,4 +10,3 @@ class RP_sslEndInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -10,4 +10,3 @@ class RP_sslStartInp extends RODSPacket
|
|||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -66,5 +66,3 @@ $outputstr = $outputstr . ");\n";
|
|||
|
||||
$outputstr = $outputstr . "?>\n";
|
||||
file_put_contents($prods_api_num_file, $outputstr);
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -71,5 +71,3 @@ $outputstr = $outputstr . ");\n";
|
|||
|
||||
$outputstr = $outputstr . "?>\n";
|
||||
file_put_contents($prods_error_table_file, $outputstr);
|
||||
|
||||
?>
|
||||
|
|
@ -69,5 +69,3 @@ $outputstr = $outputstr . ");\n";
|
|||
|
||||
$outputstr = $outputstr . "?>\n";
|
||||
file_put_contents($prods_genque_keywd_file, $outputstr);
|
||||
|
||||
?>
|
||||
|
|
@ -59,5 +59,3 @@ $outputstr = $outputstr . ");\n";
|
|||
|
||||
$outputstr = $outputstr . "?>\n";
|
||||
file_put_contents($prods_genque_num_file, $outputstr);
|
||||
|
||||
?>
|
||||
|
|
@ -27,12 +27,12 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{
|
|||
private $auth_mode;
|
||||
|
||||
public function __construct($params) {
|
||||
if (isset($params['host']) && isset($params['user']) && isset($params['password'])) {
|
||||
if (isset($params['host'])) {
|
||||
$this->host = $params['host'];
|
||||
$this->port = $params['port'];
|
||||
$this->user = $params['user'];
|
||||
$this->password = $params['password'];
|
||||
$this->use_logon_credentials = $params['use_logon_credentials'];
|
||||
$this->port = isset($params['port']) ? $params['port'] : 1247;
|
||||
$this->user = isset($params['user']) ? $params['user'] : '';
|
||||
$this->password = isset($params['password']) ? $params['password'] : '';
|
||||
$this->use_logon_credentials = ($params['use_logon_credentials'] === 'true');
|
||||
$this->zone = $params['zone'];
|
||||
$this->auth_mode = isset($params['auth_mode']) ? $params['auth_mode'] : '';
|
||||
|
||||
|
|
@ -42,10 +42,11 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{
|
|||
}
|
||||
|
||||
// take user and password from the session
|
||||
if ($this->use_logon_credentials && isset($_SESSION['irods-credentials']) )
|
||||
if ($this->use_logon_credentials && \OC::$session->exists('irods-credentials'))
|
||||
{
|
||||
$this->user = $_SESSION['irods-credentials']['uid'];
|
||||
$this->password = $_SESSION['irods-credentials']['password'];
|
||||
$params = \OC::$session->get('irods-credentials');
|
||||
$this->user = $params['uid'];
|
||||
$this->password = $params['password'];
|
||||
}
|
||||
|
||||
//create the root folder if necessary
|
||||
|
|
@ -59,7 +60,7 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{
|
|||
}
|
||||
|
||||
public static function login( $params ) {
|
||||
$_SESSION['irods-credentials'] = $params;
|
||||
\OC::$session->set('irods-credentials', $params);
|
||||
}
|
||||
|
||||
public function getId(){
|
||||
|
|
|
|||
|
|
@ -3,6 +3,12 @@ $TRANSLATIONS = array(
|
|||
"The password is wrong. Try again." => "La contraseña no es correcta. Probá de nuevo.",
|
||||
"Password" => "Contraseña",
|
||||
"Submit" => "Enviar",
|
||||
"Sorry, this link doesn’t seem to work anymore." => "Perdón, este enlace parece no funcionar más.",
|
||||
"Reasons might be:" => "Las causas podrían ser:",
|
||||
"the item was removed" => "el elemento fue borrado",
|
||||
"the link expired" => "el enlace expiró",
|
||||
"sharing is disabled" => "compartir está desactivado",
|
||||
"For more info, please ask the person who sent this link." => "Para mayor información, contactá a la persona que te mandó el enlace.",
|
||||
"%s shared the folder %s with you" => "%s compartió la carpeta %s con vos",
|
||||
"%s shared the file %s with you" => "%s compartió el archivo %s con vos",
|
||||
"Download" => "Descargar",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,14 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"The password is wrong. Try again." => "Passordet er gale. Prøv igjen.",
|
||||
"Password" => "Passord",
|
||||
"Submit" => "Send",
|
||||
"Sorry, this link doesn’t seem to work anymore." => "Orsak, denne lenkja fungerer visst ikkje lenger.",
|
||||
"Reasons might be:" => "Moglege grunnar:",
|
||||
"the item was removed" => "fila/mappa er fjerna",
|
||||
"the link expired" => "lenkja har gått ut på dato",
|
||||
"sharing is disabled" => "deling er slått av",
|
||||
"For more info, please ask the person who sent this link." => "Spør den som sende deg lenkje om du vil ha meir informasjon.",
|
||||
"%s shared the folder %s with you" => "%s delte mappa %s med deg",
|
||||
"%s shared the file %s with you" => "%s delte fila %s med deg",
|
||||
"Download" => "Last ned",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,14 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"The password is wrong. Try again." => "Kodi është i gabuar. Provojeni përsëri.",
|
||||
"Password" => "Kodi",
|
||||
"Submit" => "Parashtro",
|
||||
"Sorry, this link doesn’t seem to work anymore." => "Ju kërkojmë ndjesë, kjo lidhje duket sikur nuk punon më.",
|
||||
"Reasons might be:" => "Arsyet mund të jenë:",
|
||||
"the item was removed" => "elementi është eliminuar",
|
||||
"the link expired" => "lidhja ka skaduar",
|
||||
"sharing is disabled" => "ndarja është çaktivizuar",
|
||||
"For more info, please ask the person who sent this link." => "Për më shumë informacione, ju lutem pyesni personin që iu dërgoi këtë lidhje.",
|
||||
"%s shared the folder %s with you" => "%s ndau me ju dosjen %s",
|
||||
"%s shared the file %s with you" => "%s ndau me ju skedarin %s",
|
||||
"Download" => "Shkarko",
|
||||
|
|
|
|||
|
|
@ -19,6 +19,20 @@ function fileCmp($a, $b) {
|
|||
}
|
||||
}
|
||||
|
||||
function determineIcon($file, $sharingRoot, $sharingToken) {
|
||||
// for folders we simply reuse the files logic
|
||||
if($file['type'] == 'dir') {
|
||||
return \OCA\files\lib\Helper::determineIcon($file);
|
||||
}
|
||||
|
||||
$relativePath = substr($file['path'], 6);
|
||||
$relativePath = substr($relativePath, strlen($sharingRoot));
|
||||
if($file['isPreviewAvailable']) {
|
||||
return OCP\publicPreview_icon($relativePath, $sharingToken);
|
||||
}
|
||||
return OCP\mimetype_icon($file['mimetype']);
|
||||
}
|
||||
|
||||
if (isset($_GET['t'])) {
|
||||
$token = $_GET['t'];
|
||||
$linkItem = OCP\Share::getShareByToken($token);
|
||||
|
|
@ -176,6 +190,7 @@ if (isset($path)) {
|
|||
}
|
||||
$i['directory'] = $getPath;
|
||||
$i['permissions'] = OCP\PERMISSION_READ;
|
||||
$i['icon'] = determineIcon($i, $basePath, $token);
|
||||
$files[] = $i;
|
||||
}
|
||||
usort($files, "fileCmp");
|
||||
|
|
|
|||
|
|
@ -65,6 +65,7 @@ foreach ($result as $r) {
|
|||
}
|
||||
$i['permissions'] = OCP\PERMISSION_READ;
|
||||
$i['isPreviewAvailable'] = \OCP\Preview::isMimeSupported($r['mime']);
|
||||
$i['icon'] = \OCA\files\lib\Helper::determineIcon($i);
|
||||
$files[] = $i;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8,8 +8,9 @@ $TRANSLATIONS = array(
|
|||
"Delete permanently" => "Borrar de manera permanente",
|
||||
"Name" => "Nombre",
|
||||
"Deleted" => "Borrado",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_%n folder_::_%n folders_" => array("%n directorio","%n directorios"),
|
||||
"_%n file_::_%n files_" => array("%n archivo","%n archivos"),
|
||||
"restored" => "recuperado",
|
||||
"Nothing in here. Your trash bin is empty!" => "No hay nada acá. ¡La papelera está vacía!",
|
||||
"Restore" => "Recuperar",
|
||||
"Delete" => "Borrar",
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ $TRANSLATIONS = array(
|
|||
"Delete permanently" => "Excluir permanentemente",
|
||||
"Name" => "Nome",
|
||||
"Deleted" => "Excluído",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_%n folder_::_%n folders_" => array("","%n pastas"),
|
||||
"_%n file_::_%n files_" => array("%n arquivo","%n arquivos"),
|
||||
"restored" => "restaurado",
|
||||
"Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!",
|
||||
"Restore" => "Restaurar",
|
||||
|
|
|
|||
|
|
@ -8,8 +8,9 @@ $TRANSLATIONS = array(
|
|||
"Delete permanently" => "Elimino përfundimisht",
|
||||
"Name" => "Emri",
|
||||
"Deleted" => "Eliminuar",
|
||||
"_%n folder_::_%n folders_" => array("",""),
|
||||
"_%n file_::_%n files_" => array("",""),
|
||||
"_%n folder_::_%n folders_" => array("%n dosje","%n dosje"),
|
||||
"_%n file_::_%n files_" => array("%n skedar","%n skedarë"),
|
||||
"restored" => "rivendosur",
|
||||
"Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!",
|
||||
"Restore" => "Rivendos",
|
||||
"Delete" => "Elimino",
|
||||
|
|
|
|||
|
|
@ -2,6 +2,9 @@
|
|||
$TRANSLATIONS = array(
|
||||
"Could not revert: %s" => "Klarte ikkje å tilbakestilla: %s",
|
||||
"Versions" => "Utgåver",
|
||||
"Failed to revert {file} to revision {timestamp}." => "Klarte ikkje å tilbakestilla {file} til utgåva {timestamp}.",
|
||||
"More versions..." => "Fleire utgåver …",
|
||||
"No other versions available" => "Ingen andre utgåver tilgjengeleg",
|
||||
"Restore" => "Gjenopprett"
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ $TRANSLATIONS = array(
|
|||
"Connection test failed" => "Falló es test de conexión",
|
||||
"Do you really want to delete the current Server Configuration?" => "¿Realmente desea borrar la configuración actual del servidor?",
|
||||
"Confirm Deletion" => "Confirmar borrado",
|
||||
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "<b>Advertencia:</b> Las apps user_ldap y user_webdavauth son incompatibles. Puede ser que experimentes comportamientos inesperados. Pedile al administrador que desactive uno de ellos.",
|
||||
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Atención:</b> El módulo PHP LDAP no está instalado, este elemento no va a funcionar. Por favor, pedile al administrador que lo instale.",
|
||||
"Server configuration" => "Configuración del Servidor",
|
||||
"Add Server Configuration" => "Añadir Configuración del Servidor",
|
||||
|
|
@ -29,8 +30,11 @@ $TRANSLATIONS = array(
|
|||
"Password" => "Contraseña",
|
||||
"For anonymous access, leave DN and Password empty." => "Para acceso anónimo, dejá DN y contraseña vacíos.",
|
||||
"User Login Filter" => "Filtro de inicio de sesión de usuario",
|
||||
"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Define el filtro a aplicar cuando se intenta ingresar. %%uid remplaza el nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"",
|
||||
"User List Filter" => "Lista de filtros de usuario",
|
||||
"Defines the filter to apply, when retrieving users (no placeholders). Example: \"objectClass=person\"" => "Define el filtro a aplicar al obtener usuarios (sin comodines). Por ejemplo: \"objectClass=person\"",
|
||||
"Group Filter" => "Filtro de grupo",
|
||||
"Defines the filter to apply, when retrieving groups (no placeholders). Example: \"objectClass=posixGroup\"" => "Define el filtro a aplicar al obtener grupos (sin comodines). Por ejemplo: \"objectClass=posixGroup\"",
|
||||
"Connection Settings" => "Configuración de Conección",
|
||||
"Configuration Active" => "Configuración activa",
|
||||
"When unchecked, this configuration will be skipped." => "Si no está seleccionada, esta configuración será omitida.",
|
||||
|
|
@ -39,19 +43,23 @@ $TRANSLATIONS = array(
|
|||
"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Dar un servidor de copia de seguridad opcional. Debe ser una réplica del servidor principal LDAP/AD.",
|
||||
"Backup (Replica) Port" => "Puerto para copia de seguridad (réplica)",
|
||||
"Disable Main Server" => "Deshabilitar el Servidor Principal",
|
||||
"Only connect to the replica server." => "Conectarse únicamente al servidor de réplica.",
|
||||
"Use TLS" => "Usar TLS",
|
||||
"Do not use it additionally for LDAPS connections, it will fail." => "No usar adicionalmente para conexiones LDAPS, las mismas fallarán",
|
||||
"Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayúsculas/minúsculas (Windows)",
|
||||
"Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.",
|
||||
"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No es recomendado, ¡Usalo solamente para pruebas! Si la conexión únicamente funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor %s.",
|
||||
"Cache Time-To-Live" => "Tiempo de vida del caché",
|
||||
"in seconds. A change empties the cache." => "en segundos. Cambiarlo vacía la cache.",
|
||||
"Directory Settings" => "Configuración de Directorio",
|
||||
"User Display Name Field" => "Campo de nombre de usuario a mostrar",
|
||||
"The LDAP attribute to use to generate the user's display name." => "El atributo LDAP a usar para generar el nombre de usuario mostrado.",
|
||||
"Base User Tree" => "Árbol base de usuario",
|
||||
"One User Base DN per line" => "Una DN base de usuario por línea",
|
||||
"User Search Attributes" => "Atributos de la búsqueda de usuario",
|
||||
"Optional; one attribute per line" => "Opcional; un atributo por linea",
|
||||
"Group Display Name Field" => "Campo de nombre de grupo a mostrar",
|
||||
"The LDAP attribute to use to generate the groups's display name." => "El atributo LDAP a usar para generar el nombre de grupo mostrado.",
|
||||
"Base Group Tree" => "Árbol base de grupo",
|
||||
"One Group Base DN per line" => "Una DN base de grupo por línea",
|
||||
"Group Search Attributes" => "Atributos de búsqueda de grupo",
|
||||
|
|
@ -64,6 +72,7 @@ $TRANSLATIONS = array(
|
|||
"User Home Folder Naming Rule" => "Regla de nombre de los directorios de usuario",
|
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD.",
|
||||
"Internal Username" => "Nombre interno de usuario",
|
||||
"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." => "Por defecto, el nombre de usuario interno es creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y no es necesaria una conversión de caracteres. El nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso colisiones, se agregará o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para el directorio personal del usuario en ownCloud. También es parte de las URLs remotas, por ejemplo, para los servicios *DAV. Con esta opción, se puede cambiar el comportamiento por defecto. Para conseguir un comportamiento similar a versiones anteriores a ownCloud 5, ingresá el atributo del nombre mostrado en el campo siguiente. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto en los nuevos usuarios LDAP mapeados (agregados).",
|
||||
"Internal Username Attribute:" => "Atributo Nombre Interno de usuario:",
|
||||
"Override UUID detection" => "Sobrescribir la detección UUID",
|
||||
"UUID Attribute:" => "Atributo UUID:",
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
$TRANSLATIONS = array(
|
||||
"Deletion failed" => "Feil ved sletting",
|
||||
"Error" => "Feil",
|
||||
"Host" => "Tenar",
|
||||
"Password" => "Passord",
|
||||
"Help" => "Hjelp"
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"WebDAV Authentication" => "WebDAV-autentisering"
|
||||
"WebDAV Authentication" => "WebDAV-autentisering",
|
||||
"Address: " => "Adresse:",
|
||||
"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Innloggingsinformasjon blir sendt til denne nettadressa. Dette programtillegget kontrollerer svaret og tolkar HTTP-statuskodane 401 og 403 som ugyldige, og alle andre svar som gyldige."
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
|
|
|
|||
|
|
@ -39,7 +39,8 @@
|
|||
return;
|
||||
}
|
||||
// Escape
|
||||
if(event.keyCode === 27 && self.options.closeOnEscape) {
|
||||
if(event.keyCode === 27 && event.type === 'keydown' && self.options.closeOnEscape) {
|
||||
event.stopImmediatePropagation();
|
||||
self.close();
|
||||
return false;
|
||||
}
|
||||
|
|
@ -83,20 +84,21 @@
|
|||
var self = this;
|
||||
switch(key) {
|
||||
case 'title':
|
||||
var $title = $('<h3 class="oc-dialog-title">' + this.options.title
|
||||
+ '</h3>'); //<hr class="oc-dialog-separator" />');
|
||||
if(this.$title) {
|
||||
this.$title.replaceWith($title);
|
||||
this.$title.text(value);
|
||||
} else {
|
||||
var $title = $('<h3 class="oc-dialog-title">'
|
||||
+ value
|
||||
+ '</h3>');
|
||||
this.$title = $title.prependTo(this.$dialog);
|
||||
}
|
||||
this._setSizes();
|
||||
break;
|
||||
case 'buttons':
|
||||
var $buttonrow = $('<div class="oc-dialog-buttonrow" />');
|
||||
if(this.$buttonrow) {
|
||||
this.$buttonrow.replaceWith($buttonrow);
|
||||
this.$buttonrow.empty();
|
||||
} else {
|
||||
var $buttonrow = $('<div class="oc-dialog-buttonrow" />');
|
||||
this.$buttonrow = $buttonrow.appendTo(this.$dialog);
|
||||
}
|
||||
$.each(value, function(idx, val) {
|
||||
|
|
@ -124,6 +126,8 @@
|
|||
$closeButton.on('click', function() {
|
||||
self.close();
|
||||
});
|
||||
} else {
|
||||
this.$dialog.find('.oc-dialog-close').remove();
|
||||
}
|
||||
break;
|
||||
case 'width':
|
||||
|
|
|
|||
|
|
@ -244,9 +244,16 @@ var OCdialogs = {
|
|||
return defer.promise();
|
||||
},
|
||||
_getFileList: function(dir, mimeType) {
|
||||
if (typeof(mimeType) === "string") {
|
||||
mimeType = [mimeType];
|
||||
}
|
||||
|
||||
return $.getJSON(
|
||||
OC.filePath('files', 'ajax', 'rawlist.php'),
|
||||
{dir: dir, mimetype: mimeType}
|
||||
{
|
||||
dir: dir,
|
||||
mimetypes: JSON.stringify(mimeType)
|
||||
}
|
||||
);
|
||||
},
|
||||
_determineValue: function(element) {
|
||||
|
|
|
|||
|
|
@ -2,6 +2,12 @@
|
|||
$TRANSLATIONS = array(
|
||||
"%s shared »%s« with you" => "%s compartió \"%s\" con vos",
|
||||
"group" => "grupo",
|
||||
"Turned on maintenance mode" => "Modo de mantenimiento activado",
|
||||
"Turned off maintenance mode" => "Modo de mantenimiento desactivado",
|
||||
"Updated database" => "Base de datos actualizada",
|
||||
"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",
|
||||
|
|
@ -31,13 +37,13 @@ $TRANSLATIONS = array(
|
|||
"December" => "diciembre",
|
||||
"Settings" => "Configuración",
|
||||
"seconds ago" => "segundos atrás",
|
||||
"_%n minute ago_::_%n minutes ago_" => array("",""),
|
||||
"_%n hour ago_::_%n hours ago_" => array("",""),
|
||||
"_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"),
|
||||
"_%n hour ago_::_%n hours ago_" => array("Hace %n hora","Hace %n horas"),
|
||||
"today" => "hoy",
|
||||
"yesterday" => "ayer",
|
||||
"_%n day ago_::_%n days ago_" => array("",""),
|
||||
"_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"),
|
||||
"last month" => "el mes pasado",
|
||||
"_%n month ago_::_%n months ago_" => array("",""),
|
||||
"_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"),
|
||||
"months ago" => "meses atrás",
|
||||
"last year" => "el año pasado",
|
||||
"years ago" => "años atrás",
|
||||
|
|
@ -84,6 +90,7 @@ $TRANSLATIONS = array(
|
|||
"Email sent" => "e-mail mandado",
|
||||
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud</a>.",
|
||||
"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",
|
||||
"Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}",
|
||||
"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña fue enviada a tu e-mail. <br> Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado. <br> Si no está ahí, preguntale a tu administrador.",
|
||||
"Request failed!<br>Did you make sure your email/username was right?" => "¡Error en el pedido! <br> ¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?",
|
||||
|
|
@ -108,9 +115,11 @@ $TRANSLATIONS = array(
|
|||
"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.",
|
||||
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor, habilitá la extensión OpenSSL de PHP.",
|
||||
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir las pruebas de reinicio de tu contraseña y tomar control de tu cuenta.",
|
||||
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando.",
|
||||
"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "Para información sobre cómo configurar apropiadamente tu servidor, por favor mirá la <a href=\"%s\" target=\"_blank\">documentación</a>.",
|
||||
"Create an <strong>admin account</strong>" => "Crear una <strong>cuenta de administrador</strong>",
|
||||
"Advanced" => "Avanzado",
|
||||
"Data folder" => "Directorio de almacenamiento",
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ $TRANSLATIONS = array(
|
|||
"_%n day ago_::_%n days ago_" => array("",""),
|
||||
"_%n month ago_::_%n months ago_" => array("",""),
|
||||
"Error" => "ههڵه",
|
||||
"Share" => "هاوبەشی کردن",
|
||||
"Password" => "وشەی تێپەربو",
|
||||
"Username" => "ناوی بهکارهێنهر",
|
||||
"New password" => "وشەی نهێنی نوێ",
|
||||
|
|
|
|||
|
|
@ -2,6 +2,12 @@
|
|||
$TRANSLATIONS = array(
|
||||
"%s shared »%s« with you" => "%s compartilhou »%s« com você",
|
||||
"group" => "grupo",
|
||||
"Turned on maintenance mode" => "Ativar modo de manutenção",
|
||||
"Turned off maintenance mode" => "Desligar o modo de manutenção",
|
||||
"Updated database" => "Atualizar o banco de dados",
|
||||
"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",
|
||||
|
|
@ -31,13 +37,13 @@ $TRANSLATIONS = array(
|
|||
"December" => "dezembro",
|
||||
"Settings" => "Ajustes",
|
||||
"seconds ago" => "segundos atrás",
|
||||
"_%n minute ago_::_%n minutes ago_" => array("",""),
|
||||
"_%n hour ago_::_%n hours ago_" => array("",""),
|
||||
"_%n minute ago_::_%n minutes ago_" => array(" ha %n minuto","ha %n minutos"),
|
||||
"_%n hour ago_::_%n hours ago_" => array("ha %n hora","ha %n horas"),
|
||||
"today" => "hoje",
|
||||
"yesterday" => "ontem",
|
||||
"_%n day ago_::_%n days ago_" => array("",""),
|
||||
"_%n day ago_::_%n days ago_" => array("ha %n dia","ha %n dias"),
|
||||
"last month" => "último mês",
|
||||
"_%n month ago_::_%n months ago_" => array("",""),
|
||||
"_%n month ago_::_%n months ago_" => array("ha %n mês","ha %n meses"),
|
||||
"months ago" => "meses atrás",
|
||||
"last year" => "último ano",
|
||||
"years ago" => "anos atrás",
|
||||
|
|
|
|||
|
|
@ -2,6 +2,10 @@
|
|||
$TRANSLATIONS = array(
|
||||
"%s shared »%s« with you" => "%s partilhado »%s« contigo",
|
||||
"group" => "grupo",
|
||||
"Turned on maintenance mode" => "Activado o modo de manutenção",
|
||||
"Turned off maintenance mode" => "Desactivado o modo de manutenção",
|
||||
"Updated database" => "Base de dados actualizada",
|
||||
"... %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",
|
||||
|
|
@ -31,13 +35,13 @@ $TRANSLATIONS = array(
|
|||
"December" => "Dezembro",
|
||||
"Settings" => "Configurações",
|
||||
"seconds ago" => "Minutos atrás",
|
||||
"_%n minute ago_::_%n minutes ago_" => array("",""),
|
||||
"_%n hour ago_::_%n hours ago_" => array("",""),
|
||||
"_%n minute ago_::_%n minutes ago_" => array("%n minuto atrás","%n minutos atrás"),
|
||||
"_%n hour ago_::_%n hours ago_" => array("%n hora atrás","%n horas atrás"),
|
||||
"today" => "hoje",
|
||||
"yesterday" => "ontem",
|
||||
"_%n day ago_::_%n days ago_" => array("",""),
|
||||
"_%n day ago_::_%n days ago_" => array("%n dia atrás","%n dias atrás"),
|
||||
"last month" => "ultímo mês",
|
||||
"_%n month ago_::_%n months ago_" => array("",""),
|
||||
"_%n month ago_::_%n months ago_" => array("%n mês atrás","%n meses atrás"),
|
||||
"months ago" => "meses atrás",
|
||||
"last year" => "ano passado",
|
||||
"years ago" => "anos atrás",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
<?php
|
||||
$TRANSLATIONS = array(
|
||||
"%s shared »%s« with you" => "%s ndau »%s« me ju",
|
||||
"group" => "grupi",
|
||||
"Turned on maintenance mode" => "Mënyra e mirëmbajtjes u aktivizua",
|
||||
"Turned off maintenance mode" => "Mënyra e mirëmbajtjes u çaktivizua",
|
||||
"Updated database" => "Database-i u azhurnua",
|
||||
"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",
|
||||
|
|
@ -29,13 +37,13 @@ $TRANSLATIONS = array(
|
|||
"December" => "Dhjetor",
|
||||
"Settings" => "Parametra",
|
||||
"seconds ago" => "sekonda më parë",
|
||||
"_%n minute ago_::_%n minutes ago_" => array("",""),
|
||||
"_%n hour ago_::_%n hours ago_" => array("",""),
|
||||
"_%n minute ago_::_%n minutes ago_" => array("%n minut më parë","%n minuta më parë"),
|
||||
"_%n hour ago_::_%n hours ago_" => array("%n orë më parë","%n orë më parë"),
|
||||
"today" => "sot",
|
||||
"yesterday" => "dje",
|
||||
"_%n day ago_::_%n days ago_" => array("",""),
|
||||
"_%n day ago_::_%n days ago_" => array("%n ditë më parë","%n ditë më parë"),
|
||||
"last month" => "muajin e shkuar",
|
||||
"_%n month ago_::_%n months ago_" => array("",""),
|
||||
"_%n month ago_::_%n months ago_" => array("%n muaj më parë","%n muaj më parë"),
|
||||
"months ago" => "muaj më parë",
|
||||
"last year" => "vitin e shkuar",
|
||||
"years ago" => "vite më parë",
|
||||
|
|
@ -82,11 +90,13 @@ $TRANSLATIONS = array(
|
|||
"Email sent" => "Email-i u dërgua",
|
||||
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitetin ownCloud</a>.",
|
||||
"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",
|
||||
"Use the following link to reset your password: {link}" => "Përdorni lidhjen në vijim për të rivendosur kodin: {link}",
|
||||
"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Lidhja për rivendosjen e kodit tuaj u dërgua tek email-i juaj.<br>Nëqoftëse nuk e merrni brenda një kohe të arsyeshme, kontrolloni dosjet e postës së padëshirueshme (spam).<br>Nëqoftëse nuk është as aty, pyesni administratorin tuaj lokal.",
|
||||
"Request failed!<br>Did you make sure your email/username was right?" => "Kërkesa dështoi!<br>A u siguruat që email-i/përdoruesi juaj ishte i saktë?",
|
||||
"You will receive a link to reset your password via Email." => "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin.",
|
||||
"Username" => "Përdoruesi",
|
||||
"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Skedarët tuaj janë të kodifikuar. Nëqoftëse nuk keni aktivizuar çelësin e restaurimit, të dhënat tuaja nuk do të jenë të arritshme pasi të keni rivendosur kodin. Nëqoftëse nuk jeni i sigurt, ju lutemi kontaktoni administratorin tuaj para se të vazhdoni. Jeni i sigurt që dëshironi të vazhdoni?",
|
||||
"Yes, I really want to reset my password now" => "Po, dua ta rivendos kodin tani",
|
||||
"Request reset" => "Bëj kërkesë për rivendosjen",
|
||||
"Your password was reset" => "Kodi yt u rivendos",
|
||||
|
|
@ -105,9 +115,11 @@ $TRANSLATIONS = array(
|
|||
"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.",
|
||||
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nuk disponohet asnjë krijues numrash të rastësishëm, ju lutem aktivizoni shtesën PHP OpenSSL.",
|
||||
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Pa një krijues numrash të rastësishëm të sigurt një person i huaj mund të jetë në gjendje të parashikojë kodin dhe të marri llogarinë tuaj.",
|
||||
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dosja dhe skedarët e të dhënave tuaja mbase janë të arritshme nga interneti sepse skedari .htaccess nuk po punon.",
|
||||
"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni <a href=\"%s\" target=\"_blank\">dokumentacionin</a>.",
|
||||
"Create an <strong>admin account</strong>" => "Krijo një <strong>llogari administruesi</strong>",
|
||||
"Advanced" => "Të përparuara",
|
||||
"Data folder" => "Emri i dosjes",
|
||||
|
|
@ -119,6 +131,7 @@ $TRANSLATIONS = array(
|
|||
"Database tablespace" => "Tablespace-i i database-it",
|
||||
"Database host" => "Pozicioni (host) i database-it",
|
||||
"Finish setup" => "Mbaro setup-in",
|
||||
"%s is available. Get more information on how to update." => "%s është i disponueshëm. Merrni më shumë informacione mbi azhurnimin.",
|
||||
"Log out" => "Dalje",
|
||||
"Automatic logon rejected!" => "Hyrja automatike u refuzua!",
|
||||
"If you did not change your password recently, your account may be compromised!" => "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të jetë komprometuar.",
|
||||
|
|
@ -127,6 +140,7 @@ $TRANSLATIONS = array(
|
|||
"remember" => "kujto",
|
||||
"Log in" => "Hyrje",
|
||||
"Alternative Logins" => "Hyrje alternative",
|
||||
"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Tungjatjeta,<br><br>duam t'ju njoftojmë që %s ka ndarë »%s« me ju.<br><a href=\"%s\">Shikojeni!</a><br><br>Përshëndetje!",
|
||||
"Updating ownCloud to version %s, this may take a while." => "Po azhurnoj ownCloud-in me versionin %s. Mund të zgjasi pak."
|
||||
);
|
||||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-09-07 04:40-0400\n"
|
||||
"PO-Revision-Date: 2013-09-05 11:50+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-09-11 06:48-0400\n"
|
||||
"PO-Revision-Date: 2013-09-11 10:30+0000\n"
|
||||
"Last-Translator: cjtess <claudio.tessone@gmail.com>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -29,28 +29,28 @@ msgstr "grupo"
|
|||
|
||||
#: ajax/update.php:11
|
||||
msgid "Turned on maintenance mode"
|
||||
msgstr ""
|
||||
msgstr "Modo de mantenimiento activado"
|
||||
|
||||
#: ajax/update.php:14
|
||||
msgid "Turned off maintenance mode"
|
||||
msgstr ""
|
||||
msgstr "Modo de mantenimiento desactivado"
|
||||
|
||||
#: ajax/update.php:17
|
||||
msgid "Updated database"
|
||||
msgstr ""
|
||||
msgstr "Base de datos actualizada"
|
||||
|
||||
#: ajax/update.php:20
|
||||
msgid "Updating filecache, this may take really long..."
|
||||
msgstr ""
|
||||
msgstr "Actualizando caché de archivos, esto puede tardar mucho tiempo..."
|
||||
|
||||
#: ajax/update.php:23
|
||||
msgid "Updated filecache"
|
||||
msgstr ""
|
||||
msgstr "Caché de archivos actualizada"
|
||||
|
||||
#: ajax/update.php:26
|
||||
#, php-format
|
||||
msgid "... %d%% done ..."
|
||||
msgstr ""
|
||||
msgstr "... %d%% hecho ..."
|
||||
|
||||
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
|
||||
msgid "Category type not provided."
|
||||
|
|
@ -178,14 +178,14 @@ msgstr "segundos atrás"
|
|||
#: js/js.js:822
|
||||
msgid "%n minute ago"
|
||||
msgid_plural "%n minutes ago"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Hace %n minuto"
|
||||
msgstr[1] "Hace %n minutos"
|
||||
|
||||
#: js/js.js:823
|
||||
msgid "%n hour ago"
|
||||
msgid_plural "%n hours ago"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Hace %n hora"
|
||||
msgstr[1] "Hace %n horas"
|
||||
|
||||
#: js/js.js:824
|
||||
msgid "today"
|
||||
|
|
@ -198,8 +198,8 @@ msgstr "ayer"
|
|||
#: js/js.js:826
|
||||
msgid "%n day ago"
|
||||
msgid_plural "%n days ago"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Hace %n día"
|
||||
msgstr[1] "Hace %n días"
|
||||
|
||||
#: js/js.js:827
|
||||
msgid "last month"
|
||||
|
|
@ -208,8 +208,8 @@ msgstr "el mes pasado"
|
|||
#: js/js.js:828
|
||||
msgid "%n month ago"
|
||||
msgid_plural "%n months ago"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Hace %n mes"
|
||||
msgstr[1] "Hace %n meses"
|
||||
|
||||
#: js/js.js:829
|
||||
msgid "months ago"
|
||||
|
|
@ -406,7 +406,7 @@ msgstr "La actualización fue exitosa. Estás siendo redirigido a ownCloud."
|
|||
#: lostpassword/controller.php:62
|
||||
#, php-format
|
||||
msgid "%s password reset"
|
||||
msgstr ""
|
||||
msgstr "%s restablecer contraseña"
|
||||
|
||||
#: lostpassword/templates/email.php:2
|
||||
msgid "Use the following link to reset your password: {link}"
|
||||
|
|
@ -523,7 +523,7 @@ msgstr "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE
|
|||
#: templates/installation.php:26
|
||||
#, php-format
|
||||
msgid "Please update your PHP installation to use %s securely."
|
||||
msgstr ""
|
||||
msgstr "Por favor, actualizá tu instalación PHP para poder usar %s de manera segura."
|
||||
|
||||
#: templates/installation.php:32
|
||||
msgid ""
|
||||
|
|
@ -548,7 +548,7 @@ msgstr "Tu directorio de datos y tus archivos probablemente son accesibles a tra
|
|||
msgid ""
|
||||
"For information how to properly configure your server, please see the <a "
|
||||
"href=\"%s\" target=\"_blank\">documentation</a>."
|
||||
msgstr ""
|
||||
msgstr "Para información sobre cómo configurar apropiadamente tu servidor, por favor mirá la <a href=\"%s\" target=\"_blank\">documentación</a>."
|
||||
|
||||
#: templates/installation.php:47
|
||||
msgid "Create an <strong>admin account</strong>"
|
||||
|
|
|
|||
|
|
@ -5,14 +5,15 @@
|
|||
# Translators:
|
||||
# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013
|
||||
# cjtess <claudio.tessone@gmail.com>, 2013
|
||||
# cnngimenez, 2013
|
||||
# juliabis, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-09-01 13:27-0400\n"
|
||||
"PO-Revision-Date: 2013-08-30 13:50+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-09-10 10:41-0400\n"
|
||||
"PO-Revision-Date: 2013-09-10 13:50+0000\n"
|
||||
"Last-Translator: cnngimenez\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -161,24 +162,24 @@ msgstr "deshacer"
|
|||
#: js/filelist.js:424 js/filelist.js:490 js/files.js:581
|
||||
msgid "%n folder"
|
||||
msgid_plural "%n folders"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "%n carpeta"
|
||||
msgstr[1] "%n carpetas"
|
||||
|
||||
#: js/filelist.js:425 js/filelist.js:491 js/files.js:587
|
||||
msgid "%n file"
|
||||
msgid_plural "%n files"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "%n archivo"
|
||||
msgstr[1] "%n archivos"
|
||||
|
||||
#: js/filelist.js:432
|
||||
msgid "{dirs} and {files}"
|
||||
msgstr ""
|
||||
msgstr "{carpetas} y {archivos}"
|
||||
|
||||
#: js/filelist.js:563
|
||||
msgid "Uploading %n file"
|
||||
msgid_plural "Uploading %n files"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Subiendo %n archivo"
|
||||
msgstr[1] "Subiendo %n archivos"
|
||||
|
||||
#: js/filelist.js:628
|
||||
msgid "files uploading"
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-09-07 04:40-0400\n"
|
||||
"PO-Revision-Date: 2013-09-05 11:51+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-09-11 06:48-0400\n"
|
||||
"PO-Revision-Date: 2013-09-11 10:30+0000\n"
|
||||
"Last-Translator: cjtess <claudio.tessone@gmail.com>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -32,27 +32,27 @@ msgstr "Enviar"
|
|||
|
||||
#: templates/part.404.php:3
|
||||
msgid "Sorry, this link doesn’t seem to work anymore."
|
||||
msgstr ""
|
||||
msgstr "Perdón, este enlace parece no funcionar más."
|
||||
|
||||
#: templates/part.404.php:4
|
||||
msgid "Reasons might be:"
|
||||
msgstr ""
|
||||
msgstr "Las causas podrían ser:"
|
||||
|
||||
#: templates/part.404.php:6
|
||||
msgid "the item was removed"
|
||||
msgstr ""
|
||||
msgstr "el elemento fue borrado"
|
||||
|
||||
#: templates/part.404.php:7
|
||||
msgid "the link expired"
|
||||
msgstr ""
|
||||
msgstr "el enlace expiró"
|
||||
|
||||
#: templates/part.404.php:8
|
||||
msgid "sharing is disabled"
|
||||
msgstr ""
|
||||
msgstr "compartir está desactivado"
|
||||
|
||||
#: templates/part.404.php:10
|
||||
msgid "For more info, please ask the person who sent this link."
|
||||
msgstr ""
|
||||
msgstr "Para mayor información, contactá a la persona que te mandó el enlace."
|
||||
|
||||
#: templates/public.php:15
|
||||
#, php-format
|
||||
|
|
|
|||
|
|
@ -3,13 +3,14 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# cjtess <claudio.tessone@gmail.com>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-08-15 04:47-0400\n"
|
||||
"PO-Revision-Date: 2013-08-15 08:48+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-09-10 10:41-0400\n"
|
||||
"PO-Revision-Date: 2013-09-10 13:50+0000\n"
|
||||
"Last-Translator: cjtess <claudio.tessone@gmail.com>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -27,45 +28,45 @@ msgstr "No fue posible borrar %s de manera permanente"
|
|||
msgid "Couldn't restore %s"
|
||||
msgstr "No se pudo restaurar %s"
|
||||
|
||||
#: js/trash.js:7 js/trash.js:100
|
||||
#: js/trash.js:7 js/trash.js:102
|
||||
msgid "perform restore operation"
|
||||
msgstr "Restaurar"
|
||||
|
||||
#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146
|
||||
#: js/trash.js:20 js/trash.js:49 js/trash.js:120 js/trash.js:148
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#: js/trash.js:36
|
||||
#: js/trash.js:37
|
||||
msgid "delete file permanently"
|
||||
msgstr "Borrar archivo de manera permanente"
|
||||
|
||||
#: js/trash.js:127
|
||||
#: js/trash.js:129
|
||||
msgid "Delete permanently"
|
||||
msgstr "Borrar de manera permanente"
|
||||
|
||||
#: js/trash.js:182 templates/index.php:17
|
||||
#: js/trash.js:184 templates/index.php:17
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: js/trash.js:183 templates/index.php:27
|
||||
#: js/trash.js:185 templates/index.php:27
|
||||
msgid "Deleted"
|
||||
msgstr "Borrado"
|
||||
|
||||
#: js/trash.js:191
|
||||
#: js/trash.js:193
|
||||
msgid "%n folder"
|
||||
msgid_plural "%n folders"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "%n directorio"
|
||||
msgstr[1] "%n directorios"
|
||||
|
||||
#: js/trash.js:197
|
||||
#: js/trash.js:199
|
||||
msgid "%n file"
|
||||
msgid_plural "%n files"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "%n archivo"
|
||||
msgstr[1] "%n archivos"
|
||||
|
||||
#: lib/trash.php:819 lib/trash.php:821
|
||||
#: lib/trash.php:814 lib/trash.php:816
|
||||
msgid "restored"
|
||||
msgstr ""
|
||||
msgstr "recuperado"
|
||||
|
||||
#: templates/index.php:9
|
||||
msgid "Nothing in here. Your trash bin is empty!"
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-08-25 19:18-0400\n"
|
||||
"PO-Revision-Date: 2013-08-25 23:18+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-09-11 06:48-0400\n"
|
||||
"PO-Revision-Date: 2013-09-11 10:30+0000\n"
|
||||
"Last-Translator: cjtess <claudio.tessone@gmail.com>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -23,11 +23,11 @@ msgstr ""
|
|||
msgid ""
|
||||
"App \"%s\" can't be installed because it is not compatible with this version"
|
||||
" of ownCloud."
|
||||
msgstr ""
|
||||
msgstr "La app \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud"
|
||||
|
||||
#: app.php:250
|
||||
msgid "No app name specified"
|
||||
msgstr ""
|
||||
msgstr "No fue especificado el nombre de la app"
|
||||
|
||||
#: app.php:361
|
||||
msgid "Help"
|
||||
|
|
@ -87,59 +87,59 @@ msgstr "Descargá los archivos en partes más chicas, de forma separada, o pedí
|
|||
|
||||
#: installer.php:63
|
||||
msgid "No source specified when installing app"
|
||||
msgstr ""
|
||||
msgstr "No se especificó el origen al instalar la app"
|
||||
|
||||
#: installer.php:70
|
||||
msgid "No href specified when installing app from http"
|
||||
msgstr ""
|
||||
msgstr "No se especificó href al instalar la app"
|
||||
|
||||
#: installer.php:75
|
||||
msgid "No path specified when installing app from local file"
|
||||
msgstr ""
|
||||
msgstr "No se especificó PATH al instalar la app desde el archivo local"
|
||||
|
||||
#: installer.php:89
|
||||
#, php-format
|
||||
msgid "Archives of type %s are not supported"
|
||||
msgstr ""
|
||||
msgstr "No hay soporte para archivos de tipo %s"
|
||||
|
||||
#: installer.php:103
|
||||
msgid "Failed to open archive when installing app"
|
||||
msgstr ""
|
||||
msgstr "Error al abrir archivo mientras se instalaba la app"
|
||||
|
||||
#: installer.php:123
|
||||
msgid "App does not provide an info.xml file"
|
||||
msgstr ""
|
||||
msgstr "La app no suministra un archivo info.xml"
|
||||
|
||||
#: installer.php:129
|
||||
msgid "App can't be installed because of not allowed code in the App"
|
||||
msgstr ""
|
||||
msgstr "No puede ser instalada la app por tener código no autorizado"
|
||||
|
||||
#: installer.php:138
|
||||
msgid ""
|
||||
"App can't be installed because it is not compatible with this version of "
|
||||
"ownCloud"
|
||||
msgstr ""
|
||||
msgstr "No se puede instalar la app porque no es compatible con esta versión de ownCloud"
|
||||
|
||||
#: installer.php:144
|
||||
msgid ""
|
||||
"App can't be installed because it contains the <shipped>true</shipped> tag "
|
||||
"which is not allowed for non shipped apps"
|
||||
msgstr ""
|
||||
msgstr "La app no se puede instalar porque contiene la etiqueta <shipped>true</shipped> que no está permitida para apps no distribuidas"
|
||||
|
||||
#: installer.php:150
|
||||
msgid ""
|
||||
"App can't be installed because the version in info.xml/version is not the "
|
||||
"same as the version reported from the app store"
|
||||
msgstr ""
|
||||
msgstr "La app no puede ser instalada porque la versión en info.xml/version no es la misma que la establecida en el app store"
|
||||
|
||||
#: installer.php:160
|
||||
msgid "App directory already exists"
|
||||
msgstr ""
|
||||
msgstr "El directorio de la app ya existe"
|
||||
|
||||
#: installer.php:173
|
||||
#, php-format
|
||||
msgid "Can't create app folder. Please fix permissions. %s"
|
||||
msgstr ""
|
||||
msgstr "No se puede crear el directorio para la app. Corregí los permisos. %s"
|
||||
|
||||
#: json.php:28
|
||||
msgid "Application is not enabled"
|
||||
|
|
@ -265,51 +265,51 @@ msgstr "Tu servidor web no está configurado todavía para permitir sincronizaci
|
|||
msgid "Please double check the <a href='%s'>installation guides</a>."
|
||||
msgstr "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a>."
|
||||
|
||||
#: template/functions.php:80
|
||||
#: template/functions.php:96
|
||||
msgid "seconds ago"
|
||||
msgstr "segundos atrás"
|
||||
|
||||
#: template/functions.php:81
|
||||
#: template/functions.php:97
|
||||
msgid "%n minute ago"
|
||||
msgid_plural "%n minutes ago"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Hace %n minuto"
|
||||
msgstr[1] "Hace %n minutos"
|
||||
|
||||
#: template/functions.php:82
|
||||
#: template/functions.php:98
|
||||
msgid "%n hour ago"
|
||||
msgid_plural "%n hours ago"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Hace %n hora"
|
||||
msgstr[1] "Hace %n horas"
|
||||
|
||||
#: template/functions.php:83
|
||||
#: template/functions.php:99
|
||||
msgid "today"
|
||||
msgstr "hoy"
|
||||
|
||||
#: template/functions.php:84
|
||||
#: template/functions.php:100
|
||||
msgid "yesterday"
|
||||
msgstr "ayer"
|
||||
|
||||
#: template/functions.php:85
|
||||
#: template/functions.php:101
|
||||
msgid "%n day go"
|
||||
msgid_plural "%n days ago"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Hace %n día"
|
||||
msgstr[1] "Hace %n días"
|
||||
|
||||
#: template/functions.php:86
|
||||
#: template/functions.php:102
|
||||
msgid "last month"
|
||||
msgstr "el mes pasado"
|
||||
|
||||
#: template/functions.php:87
|
||||
#: template/functions.php:103
|
||||
msgid "%n month ago"
|
||||
msgid_plural "%n months ago"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[0] "Hace %n mes"
|
||||
msgstr[1] "Hace %n meses"
|
||||
|
||||
#: template/functions.php:88
|
||||
#: template/functions.php:104
|
||||
msgid "last year"
|
||||
msgstr "el año pasado"
|
||||
|
||||
#: template/functions.php:89
|
||||
#: template/functions.php:105
|
||||
msgid "years ago"
|
||||
msgstr "años atrás"
|
||||
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-09-07 04:40-0400\n"
|
||||
"PO-Revision-Date: 2013-09-05 11:51+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-09-11 06:48-0400\n"
|
||||
"PO-Revision-Date: 2013-09-11 10:48+0000\n"
|
||||
"Last-Translator: cjtess <claudio.tessone@gmail.com>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -91,7 +91,7 @@ msgid ""
|
|||
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
|
||||
" experience unexpected behavior. Please ask your system administrator to "
|
||||
"disable one of them."
|
||||
msgstr ""
|
||||
msgstr "<b>Advertencia:</b> Las apps user_ldap y user_webdavauth son incompatibles. Puede ser que experimentes comportamientos inesperados. Pedile al administrador que desactive uno de ellos."
|
||||
|
||||
#: templates/settings.php:12
|
||||
msgid ""
|
||||
|
|
@ -156,7 +156,7 @@ msgstr "Filtro de inicio de sesión de usuario"
|
|||
msgid ""
|
||||
"Defines the filter to apply, when login is attempted. %%uid replaces the "
|
||||
"username in the login action. Example: \"uid=%%uid\""
|
||||
msgstr ""
|
||||
msgstr "Define el filtro a aplicar cuando se intenta ingresar. %%uid remplaza el nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\""
|
||||
|
||||
#: templates/settings.php:55
|
||||
msgid "User List Filter"
|
||||
|
|
@ -166,7 +166,7 @@ msgstr "Lista de filtros de usuario"
|
|||
msgid ""
|
||||
"Defines the filter to apply, when retrieving users (no placeholders). "
|
||||
"Example: \"objectClass=person\""
|
||||
msgstr ""
|
||||
msgstr "Define el filtro a aplicar al obtener usuarios (sin comodines). Por ejemplo: \"objectClass=person\""
|
||||
|
||||
#: templates/settings.php:59
|
||||
msgid "Group Filter"
|
||||
|
|
@ -176,7 +176,7 @@ msgstr "Filtro de grupo"
|
|||
msgid ""
|
||||
"Defines the filter to apply, when retrieving groups (no placeholders). "
|
||||
"Example: \"objectClass=posixGroup\""
|
||||
msgstr ""
|
||||
msgstr "Define el filtro a aplicar al obtener grupos (sin comodines). Por ejemplo: \"objectClass=posixGroup\""
|
||||
|
||||
#: templates/settings.php:66
|
||||
msgid "Connection Settings"
|
||||
|
|
@ -214,7 +214,7 @@ msgstr "Deshabilitar el Servidor Principal"
|
|||
|
||||
#: templates/settings.php:72
|
||||
msgid "Only connect to the replica server."
|
||||
msgstr ""
|
||||
msgstr "Conectarse únicamente al servidor de réplica."
|
||||
|
||||
#: templates/settings.php:73
|
||||
msgid "Use TLS"
|
||||
|
|
@ -237,7 +237,7 @@ msgstr "Desactivar la validación por certificado SSL."
|
|||
msgid ""
|
||||
"Not recommended, use it for testing only! If connection only works with this"
|
||||
" option, import the LDAP server's SSL certificate in your %s server."
|
||||
msgstr ""
|
||||
msgstr "No es recomendado, ¡Usalo solamente para pruebas! Si la conexión únicamente funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor %s."
|
||||
|
||||
#: templates/settings.php:76
|
||||
msgid "Cache Time-To-Live"
|
||||
|
|
@ -257,7 +257,7 @@ msgstr "Campo de nombre de usuario a mostrar"
|
|||
|
||||
#: templates/settings.php:80
|
||||
msgid "The LDAP attribute to use to generate the user's display name."
|
||||
msgstr ""
|
||||
msgstr "El atributo LDAP a usar para generar el nombre de usuario mostrado."
|
||||
|
||||
#: templates/settings.php:81
|
||||
msgid "Base User Tree"
|
||||
|
|
@ -281,7 +281,7 @@ msgstr "Campo de nombre de grupo a mostrar"
|
|||
|
||||
#: templates/settings.php:83
|
||||
msgid "The LDAP attribute to use to generate the groups's display name."
|
||||
msgstr ""
|
||||
msgstr "El atributo LDAP a usar para generar el nombre de grupo mostrado."
|
||||
|
||||
#: templates/settings.php:84
|
||||
msgid "Base Group Tree"
|
||||
|
|
@ -347,7 +347,7 @@ msgid ""
|
|||
"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."
|
||||
msgstr ""
|
||||
msgstr "Por defecto, el nombre de usuario interno es creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y no es necesaria una conversión de caracteres. El nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso colisiones, se agregará o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para el directorio personal del usuario en ownCloud. También es parte de las URLs remotas, por ejemplo, para los servicios *DAV. Con esta opción, se puede cambiar el comportamiento por defecto. Para conseguir un comportamiento similar a versiones anteriores a ownCloud 5, ingresá el atributo del nombre mostrado en el campo siguiente. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto en los nuevos usuarios LDAP mapeados (agregados)."
|
||||
|
||||
#: templates/settings.php:100
|
||||
msgid "Internal Username Attribute:"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue