Merge branch 'master' into files_encryption

This commit is contained in:
Sam Tuke 2013-01-10 18:07:15 +00:00
commit 9ca9124dc1
247 changed files with 7071 additions and 4952 deletions

View File

@ -11,14 +11,15 @@ $dir = stripslashes($_GET["dir"]);
$file = stripslashes($_GET["file"]);
$target = stripslashes(rawurldecode($_GET["target"]));
$l=OC_L10N::get('files');
if(OC_Filesystem::file_exists($target . '/' . $file)) {
OCP\JSON::error(array("data" => array( "message" => "Could not move $file - File with this name already exists" )));
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) )));
exit;
}
if(OC_Files::move($dir, $file, $target, $file)) {
OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
} else {
OCP\JSON::error(array("data" => array( "message" => "Could not move $file" )));
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) )));
}

View File

@ -14,7 +14,7 @@ $newname = stripslashes($_GET["newname"]);
// Delete
if( $newname !== '.' and OC_Files::move( $dir, $file, $dir, $newname )) {
OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname )));
}
else{
OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" )));
} else {
$l=OC_L10N::get('files');
OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") )));
}

View File

@ -45,6 +45,7 @@ $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, 'ownCloud'));
$server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend));
$server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload
$server->addPlugin(new OC_Connector_Sabre_QuotaPlugin());
$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin());
// And off we go!
$server->exec();

View File

@ -21,14 +21,14 @@
#new>ul>li { height:20px; margin:.3em; padding-left:2em; padding-bottom:0.1em;
background-repeat:no-repeat; cursor:pointer; }
#new>ul>li>p { cursor:pointer; }
#new>ul>li>input { padding:0.3em; margin:-0.3em; }
#new>ul>li>form>input { padding:0.3em; margin:-0.3em; }
#upload {
height:27px; padding:0; margin-left:0.2em; overflow:hidden;
}
#upload a {
position:relative; display:block; width:100%; height:27px;
cursor:pointer; z-index:1000;
cursor:pointer; z-index:10;
background-image:url('%webroot%/core/img/actions/upload.svg');
background-repeat:no-repeat;
background-position:7px 6px;
@ -39,7 +39,7 @@
left:0; top:0; width:28px; height:27px; padding:0;
font-size:1em;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0;
z-index:-1; position:relative; cursor:pointer; overflow:hidden;
z-index:20; position:relative; cursor:pointer; overflow:hidden;
}
#uploadprogresswrapper { position:absolute; right:13.5em; top:0em; }

View File

@ -151,8 +151,7 @@ var FileList={
var newname=input.val();
if (!Files.isFileNameValid(newname)) {
return false;
}
if (newname != name) {
} else if (newname != name) {
if (FileList.checkName(name, newname, false)) {
newname = name;
} else {
@ -185,6 +184,13 @@ var FileList={
td.children('a.name').show();
return false;
});
input.keyup(function(event){
if (event.keyCode == 27) {
tr.data('renaming',false);
form.remove();
td.children('a.name').show();
}
});
input.click(function(event){
event.stopPropagation();
event.preventDefault();

View File

@ -26,19 +26,19 @@ Files={
});
procesSelection();
},
isFileNameValid:function (name) {
if (name === '.') {
$('#notification').text(t('files', "'.' is an invalid file name."));
$('#notification').fadeIn();
return false;
}
if (name.length == 0) {
$('#notification').text(t('files', "File name cannot be empty."));
$('#notification').fadeIn();
return false;
}
isFileNameValid:function (name) {
if (name === '.') {
$('#notification').text(t('files', '\'.\' is an invalid file name.'));
$('#notification').fadeIn();
return false;
}
if (name.length == 0) {
$('#notification').text(t('files', 'File name cannot be empty.'));
$('#notification').fadeIn();
return false;
}
// check for invalid characters
// check for invalid characters
var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*'];
for (var i = 0; i < invalid_characters.length; i++) {
if (name.indexOf(invalid_characters[i]) != -1) {
@ -246,12 +246,12 @@ $(document).ready(function() {
}
});
}else{
var dropTarget = $(e.originalEvent.target).closest('tr');
if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder
var dirName = dropTarget.attr('data-file')
}
var dropTarget = $(e.originalEvent.target).closest('tr');
if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder
var dirName = dropTarget.attr('data-file')
}
var date=new Date();
var date=new Date();
if(files){
for(var i=0;i<files.length;i++){
if(files[i].size>0){
@ -304,9 +304,9 @@ $(document).ready(function() {
var jqXHR = $('#file_upload_start').fileupload('send', {files: files[i],
formData: function(form) {
var formArray = form.serializeArray();
// array index 0 contains the max files size
// array index 1 contains the request token
// array index 2 contains the directory
// array index 0 contains the max files size
// array index 1 contains the request token
// array index 2 contains the directory
formArray[2]['value'] = dirName;
return formArray;
}}).success(function(result, textStatus, jqXHR) {
@ -317,13 +317,14 @@ $(document).ready(function() {
$('#notification').fadeIn();
}
var file=response[0];
// TODO: this doesn't work if the file name has been changed server side
// TODO: this doesn't work if the file name has been changed server side
delete uploadingFiles[dirName][file.name];
if ($.assocArraySize(uploadingFiles[dirName]) == 0) {
delete uploadingFiles[dirName];
}
if ($.assocArraySize(uploadingFiles[dirName]) == 0) {
delete uploadingFiles[dirName];
}
//TODO update file upload size limit
var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext')
var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext')
var currentUploads = parseInt(uploadtext.attr('currentUploads'));
currentUploads -= 1;
uploadtext.attr('currentUploads', currentUploads);
@ -351,6 +352,7 @@ $(document).ready(function() {
} else {
uploadtext.text(t('files', '{count} files uploading', {count: currentUploads}));
}
delete uploadingFiles[dirName][fileName];
$('#notification').hide();
$('#notification').text(t('files', 'Upload cancelled.'));
$('#notification').fadeIn();
@ -374,8 +376,10 @@ $(document).ready(function() {
if(size==t('files','Pending')){
$('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size);
}
//TODO update file upload size limit
FileList.loadingDone(file.name, file.id);
} else {
Files.cancelUpload(this.files[0].name);
$('#notification').text(t('files', response.data.message));
$('#notification').fadeIn();
$('#fileList > tr').not('[data-mime]').fadeOut();
@ -384,6 +388,7 @@ $(document).ready(function() {
})
.error(function(jqXHR, textStatus, errorThrown) {
if(errorThrown === 'abort') {
Files.cancelUpload(this.files[0].name);
$('#notification').hide();
$('#notification').text(t('files', 'Upload cancelled.'));
$('#notification').fadeIn();
@ -404,8 +409,10 @@ $(document).ready(function() {
if(size==t('files','Pending')){
$('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size);
}
//TODO update file upload size limit
FileList.loadingDone(file.name, file.id);
} else {
//TODO Files.cancelUpload(/*where do we get the filename*/);
$('#notification').text(t('files', response.data.message));
$('#notification').fadeIn();
$('#fileList > tr').not('[data-mime]').fadeOut();
@ -446,7 +453,7 @@ $(document).ready(function() {
// http://stackoverflow.com/a/6700/11236
var size = 0, key;
for (key in obj) {
if (obj.hasOwnProperty(key)) size++;
if (obj.hasOwnProperty(key)) size++;
}
return size;
};
@ -489,7 +496,7 @@ $(document).ready(function() {
$('#new').removeClass('active');
$('#new li').each(function(i,element){
if($(element).children('p').length==0){
$(element).children('input').remove();
$(element).children('form').remove();
$(element).append('<p>'+$(element).data('text')+'</p>');
}
});
@ -508,7 +515,7 @@ $(document).ready(function() {
$('#new li').each(function(i,element){
if($(element).children('p').length==0){
$(element).children('input').remove();
$(element).children('form').remove();
$(element).append('<p>'+$(element).data('text')+'</p>');
}
});
@ -517,23 +524,32 @@ $(document).ready(function() {
var text=$(this).children('p').text();
$(this).data('text',text);
$(this).children('p').remove();
var form=$('<form></form>');
var input=$('<input>');
$(this).append(input);
form.append(input);
$(this).append(form);
input.focus();
input.change(function(){
if (type != 'web' && !Files.isFileNameValid($(this).val())) {
return;
} else if( type == 'folder' && $('#dir').val() == '/' && $(this).val() == 'Shared') {
$('#notification').text(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud'));
form.submit(function(event){
event.stopPropagation();
event.preventDefault();
var newname=input.val();
if(type == 'web' && newname.length == 0) {
$('#notification').text(t('files', 'URL cannot be empty.'));
$('#notification').fadeIn();
return;
return false;
} else if (type != 'web' && !Files.isFileNameValid(newname)) {
return false;
} else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') {
$('#notification').text(t('files','Invalid folder name. Usage of \'Shared\' is reserved by Owncloud'));
$('#notification').fadeIn();
return false;
}
if (FileList.lastAction) {
FileList.lastAction();
}
var name = getUniqueName($(this).val());
if (name != $(this).val()) {
FileList.checkName(name, $(this).val(), true);
var name = getUniqueName(newname);
if (newname != name) {
FileList.checkName(name, newname, true);
var hidden = true;
} else {
var hidden = false;
@ -577,7 +593,7 @@ $(document).ready(function() {
break;
case 'web':
if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){
name='http://'.name;
name='http://'+name;
}
var localName=name;
if(localName.substr(localName.length-1,1)=='/'){//strip /
@ -616,8 +632,8 @@ $(document).ready(function() {
});
break;
}
var li=$(this).parent();
$(this).remove();
var li=form.parent();
form.remove();
li.append('<p>'+li.data('text')+'</p>');
$('#new>a').click();
});

View File

@ -1,28 +1,22 @@
<?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Файлът е качен успешно",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата.",
"The uploaded file was only partially uploaded" => "Файлът е качен частично",
"No file was uploaded" => "Фахлът не бе качен",
"Missing a temporary folder" => "Липсва временната папка",
"Failed to write to disk" => "Грешка при запис на диска",
"Missing a temporary folder" => "Липсва временна папка",
"Files" => "Файлове",
"Delete" => "Изтриване",
"Upload Error" => "Грешка при качване",
"Upload cancelled." => "Качването е отменено.",
"Rename" => "Преименуване",
"replace" => "препокриване",
"cancel" => "отказ",
"undo" => "възтановяване",
"Upload cancelled." => "Качването е спряно.",
"Name" => "Име",
"Size" => "Размер",
"Modified" => "Променено",
"Maximum upload size" => "Макс. размер за качване",
"0 is unlimited" => "0 означава без ограничение",
"Maximum upload size" => "Максимален размер за качване",
"0 is unlimited" => "Ползвайте 0 за без ограничения",
"Save" => "Запис",
"New" => "Нов",
"Text file" => "Текстов файл",
"New" => "Ново",
"Folder" => "Папка",
"Upload" => "Качване",
"Cancel upload" => "Отказване на качването",
"Nothing in here. Upload something!" => "Няма нищо, качете нещо!",
"Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.",
"Download" => "Изтегляне",
"Upload too large" => "Файлът е прекалено голям",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра.",
"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте."
"Upload too large" => "Файлът който сте избрали за качване е прекалено голям"
);

View File

@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}",
"unshared {files}" => "no compartits {files}",
"deleted {files}" => "eliminats {files}",
"'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.",
"File name cannot be empty." => "El nom del fitxer no pot ser buit.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.",
"generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.",
"Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes",
@ -32,7 +34,8 @@
"{count} files uploading" => "{count} fitxers en pujada",
"Upload cancelled." => "La pujada s'ha cancel·lat.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud",
"URL cannot be empty." => "La URL no pot ser buida",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud",
"{count} files scanned" => "{count} fitxers escannejats",
"error while scanning" => "error durant l'escaneig",
"Name" => "Nom",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Žádný soubor nebyl odeslán",
"Missing a temporary folder" => "Chybí adresář pro dočasné soubory",
"Failed to write to disk" => "Zápis na disk selhal",
"Not enough space available" => "Nedostatek dostupného místa",
"Invalid directory." => "Neplatný adresář",
"Files" => "Soubory",
"Unshare" => "Zrušit sdílení",
"Delete" => "Smazat",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}",
"unshared {files}" => "sdílení zrušeno pro {files}",
"deleted {files}" => "smazáno {files}",
"'.' is an invalid file name." => "'.' je neplatným názvem souboru.",
"File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.",
"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů",
@ -30,7 +34,8 @@
"{count} files uploading" => "odesílám {count} souborů",
"Upload cancelled." => "Odesílání zrušeno.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud.",
"URL cannot be empty." => "URL nemůže být prázdná",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud",
"{count} files scanned" => "prozkoumáno {count} souborů",
"error while scanning" => "chyba při prohledávání",
"Name" => "Název",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} filer uploades",
"Upload cancelled." => "Upload afbrudt.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud",
"URL cannot be empty." => "URLen kan ikke være tom.",
"{count} files scanned" => "{count} filer skannet",
"error while scanning" => "fejl under scanning",
"Name" => "Navn",

View File

@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}",
"unshared {files}" => "Freigabe von {files} aufgehoben",
"deleted {files}" => "{files} gelöscht",
"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.",
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
"generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.",
@ -32,7 +34,7 @@
"{count} files uploading" => "{count} Dateien werden hochgeladen",
"Upload cancelled." => "Upload abgebrochen.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.",
"URL cannot be empty." => "Die URL darf nicht leer sein.",
"{count} files scanned" => "{count} Dateien wurden gescannt",
"error while scanning" => "Fehler beim Scannen",
"Name" => "Name",

View File

@ -7,7 +7,7 @@
"No file was uploaded" => "Es wurde keine Datei hochgeladen.",
"Missing a temporary folder" => "Der temporäre Ordner fehlt.",
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
"Not enough space available" => "Nicht genug Speicher verfügbar",
"Not enough space available" => "Nicht genügend Speicherplatz verfügbar",
"Invalid directory." => "Ungültiges Verzeichnis.",
"Files" => "Dateien",
"Unshare" => "Nicht mehr freigeben",
@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}",
"unshared {files}" => "Freigabe für {files} beendet",
"deleted {files}" => "{files} gelöscht",
"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.",
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
"generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.",
@ -32,7 +34,7 @@
"{count} files uploading" => "{count} Dateien wurden hochgeladen",
"Upload cancelled." => "Upload abgebrochen.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.",
"URL cannot be empty." => "Die URL darf nicht leer sein.",
"{count} files scanned" => "{count} Dateien wurden gescannt",
"error while scanning" => "Fehler beim Scannen",
"Name" => "Name",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} αρχεία ανεβαίνουν",
"Upload cancelled." => "Η αποστολή ακυρώθηκε.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud",
"URL cannot be empty." => "Η URL δεν πρέπει να είναι κενή.",
"{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν",
"error while scanning" => "σφάλμα κατά την ανίχνευση",
"Name" => "Όνομα",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} dosieroj alŝutatas",
"Upload cancelled." => "La alŝuto nuliĝis.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud",
"URL cannot be empty." => "URL ne povas esti malplena.",
"{count} files scanned" => "{count} dosieroj skaniĝis",
"error while scanning" => "eraro dum skano",
"Name" => "Nomo",

View File

@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}",
"unshared {files}" => "{files} descompartidos",
"deleted {files}" => "{files} eliminados",
"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.",
"File name cannot be empty." => "El nombre de archivo no puede estar vacío.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ",
"generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.",
"Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes",
@ -32,7 +34,7 @@
"{count} files uploading" => "Subiendo {count} archivos",
"Upload cancelled." => "Subida cancelada.",
"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud",
"URL cannot be empty." => "La URL no puede estar vacía.",
"{count} files scanned" => "{count} archivos escaneados",
"error while scanning" => "error escaneando",
"Name" => "Nombre",

View File

@ -32,7 +32,7 @@
"{count} files uploading" => "Subiendo {count} archivos",
"Upload cancelled." => "La subida fue cancelada",
"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud.",
"URL cannot be empty." => "La URL no puede estar vacía",
"{count} files scanned" => "{count} archivos escaneados",
"error while scanning" => "error mientras se escaneaba",
"Name" => "Nombre",

View File

@ -29,7 +29,7 @@
"{count} files uploading" => "{count} faili üleslaadimist",
"Upload cancelled." => "Üleslaadimine tühistati.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud ",
"URL cannot be empty." => "URL ei saa olla tühi.",
"{count} files scanned" => "{count} faili skännitud",
"error while scanning" => "viga skännimisel",
"Name" => "Nimi",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} fitxategi igotzen",
"Upload cancelled." => "Igoera ezeztatuta",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka",
"URL cannot be empty." => "URLa ezin da hutsik egon.",
"{count} files scanned" => "{count} fitxategi eskaneatuta",
"error while scanning" => "errore bat egon da eskaneatzen zen bitartean",
"Name" => "Izena",

View File

@ -17,6 +17,8 @@
"suggest name" => "ehdota nimeä",
"cancel" => "peru",
"undo" => "kumoa",
"'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.",
"File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.",
"generating ZIP-file, it may take some time." => "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio",
@ -25,6 +27,7 @@
"Pending" => "Odottaa",
"Upload cancelled." => "Lähetys peruttu.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.",
"URL cannot be empty." => "Verkko-osoite ei voi olla tyhjä",
"Name" => "Nimi",
"Size" => "Koko",
"Modified" => "Muutettu",
@ -43,6 +46,7 @@
"New" => "Uusi",
"Text file" => "Tekstitiedosto",
"Folder" => "Kansio",
"From link" => "Linkistä",
"Upload" => "Lähetä",
"Cancel upload" => "Peru lähetys",
"Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Aucun fichier n'a été téléversé",
"Missing a temporary folder" => "Il manque un répertoire temporaire",
"Failed to write to disk" => "Erreur d'écriture sur le disque",
"Not enough space available" => "Espace disponible insuffisant",
"Invalid directory." => "Dossier invalide.",
"Files" => "Fichiers",
"Unshare" => "Ne plus partager",
"Delete" => "Supprimer",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}",
"unshared {files}" => "Fichiers non partagés : {files}",
"deleted {files}" => "Fichiers supprimés : {files}",
"'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.",
"File name cannot be empty." => "Le nom de fichier ne peut être vide.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.",
"generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.",
@ -30,7 +34,8 @@
"{count} files uploading" => "{count} fichiers téléversés",
"Upload cancelled." => "Chargement annulé.",
"File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud",
"URL cannot be empty." => "L'URL ne peut-être vide",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud",
"{count} files scanned" => "{count} fichiers indexés",
"error while scanning" => "erreur lors de l'indexation",
"Name" => "Nom",
@ -55,7 +60,7 @@
"Upload" => "Envoyer",
"Cancel upload" => "Annuler l'envoi",
"Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)",
"Download" => "Téléchargement",
"Download" => "Télécharger",
"Upload too large" => "Fichier trop volumineux",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.",
"Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Non se enviou ningún ficheiro",
"Missing a temporary folder" => "Falta un cartafol temporal",
"Failed to write to disk" => "Erro ao escribir no disco",
"Not enough space available" => "O espazo dispoñíbel é insuficiente",
"Invalid directory." => "O directorio é incorrecto.",
"Files" => "Ficheiros",
"Unshare" => "Deixar de compartir",
"Delete" => "Eliminar",
@ -30,7 +32,7 @@
"{count} files uploading" => "{count} ficheiros subíndose",
"Upload cancelled." => "Subida cancelada.",
"File upload is in progress. Leaving the page now will cancel the upload." => "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud",
"URL cannot be empty." => "URL non pode quedar baleiro.",
"{count} files scanned" => "{count} ficheiros escaneados",
"error while scanning" => "erro mentres analizaba",
"Name" => "Nome",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} קבצים נשלחים",
"Upload cancelled." => "ההעלאה בוטלה.",
"File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud",
"URL cannot be empty." => "קישור אינו יכול להיות ריק.",
"{count} files scanned" => "{count} קבצים נסרקו",
"error while scanning" => "אירעה שגיאה במהלך הסריקה",
"Name" => "שם",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Nem töltődött fel semmi",
"Missing a temporary folder" => "Hiányzik egy ideiglenes mappa",
"Failed to write to disk" => "Nem sikerült a lemezre történő írás",
"Not enough space available" => "Nincs elég szabad hely",
"Invalid directory." => "Érvénytelen mappa.",
"Files" => "Fájlok",
"Unshare" => "Megosztás visszavonása",
"Delete" => "Törlés",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}",
"unshared {files}" => "{files} fájl megosztása visszavonva",
"deleted {files}" => "{files} fájl törölve",
"'.' is an invalid file name." => "'.' fájlnév érvénytelen.",
"File name cannot be empty." => "A fájlnév nem lehet semmi.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'",
"generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű",
@ -30,7 +34,7 @@
"{count} files uploading" => "{count} fájl töltődik föl",
"Upload cancelled." => "A feltöltést megszakítottuk.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja.",
"URL cannot be empty." => "Az URL nem lehet semmi.",
"{count} files scanned" => "{count} fájlt találtunk",
"error while scanning" => "Hiba a fájllista-ellenőrzés során",
"Name" => "Név",

View File

@ -17,6 +17,7 @@
"Close" => "tutup",
"Pending" => "Menunggu",
"Upload cancelled." => "Pengunggahan dibatalkan.",
"URL cannot be empty." => "tautan tidak boleh kosong",
"Name" => "Nama",
"Size" => "Ukuran",
"Modified" => "Dimodifikasi",

View File

@ -29,7 +29,7 @@
"{count} files uploading" => "{count} skrár innsendar",
"Upload cancelled." => "Hætt við innsendingu.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud.",
"URL cannot be empty." => "Vefslóð má ekki vera tóm.",
"{count} files scanned" => "{count} skrár skimaðar",
"error while scanning" => "villa við skimun",
"Name" => "Nafn",

View File

@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}",
"unshared {files}" => "non condivisi {files}",
"deleted {files}" => "eliminati {files}",
"'.' is an invalid file name." => "'.' non è un nome file valido.",
"File name cannot be empty." => "Il nome del file non può essere vuoto.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.",
"generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte",
@ -32,7 +34,8 @@
"{count} files uploading" => "{count} file in fase di caricamentoe",
"Upload cancelled." => "Invio annullato",
"File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud",
"URL cannot be empty." => "L'URL non può essere vuoto.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud",
"{count} files scanned" => "{count} file analizzati",
"error while scanning" => "errore durante la scansione",
"Name" => "Nome",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "ファイルはアップロードされませんでした",
"Missing a temporary folder" => "テンポラリフォルダが見つかりません",
"Failed to write to disk" => "ディスクへの書き込みに失敗しました",
"Not enough space available" => "利用可能なスペースが十分にありません",
"Invalid directory." => "無効なディレクトリです。",
"Files" => "ファイル",
"Unshare" => "共有しない",
"Delete" => "削除",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換",
"unshared {files}" => "未共有 {files}",
"deleted {files}" => "削除 {files}",
"'.' is an invalid file name." => "'.' は無効なファイル名です。",
"File name cannot be empty." => "ファイル名を空にすることはできません。",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。",
"generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。",
"Unable to upload your file as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのファイルはアップロードできません",
@ -30,7 +34,8 @@
"{count} files uploading" => "{count} ファイルをアップロード中",
"Upload cancelled." => "アップロードはキャンセルされました。",
"File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。",
"URL cannot be empty." => "URLは空にできません。",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。",
"{count} files scanned" => "{count} ファイルをスキャン",
"error while scanning" => "スキャン中のエラー",
"Name" => "名前",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "업로드된 파일 없음",
"Missing a temporary folder" => "임시 폴더가 사라짐",
"Failed to write to disk" => "디스크에 쓰지 못했습니다",
"Not enough space available" => "여유공간이 부족합니다",
"Invalid directory." => "올바르지 않은 디렉토리입니다.",
"Files" => "파일",
"Unshare" => "공유 해제",
"Delete" => "삭제",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨",
"unshared {files}" => "{files} 공유 해제됨",
"deleted {files}" => "{files} 삭제됨",
"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.",
"File name cannot be empty." => "파일이름은 공란이 될 수 없습니다.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.",
"generating ZIP-file, it may take some time." => "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다.",
"Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다",
@ -30,7 +34,7 @@
"{count} files uploading" => "파일 {count}개 업로드 중",
"Upload cancelled." => "업로드가 취소되었습니다.",
"File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다.",
"URL cannot be empty." => "URL을 입력해야 합니다.",
"{count} files scanned" => "파일 {count}개 검색됨",
"error while scanning" => "검색 중 오류 발생",
"Name" => "이름",

View File

@ -1,5 +1,6 @@
<?php $TRANSLATIONS = array(
"Close" => "داخستن",
"URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.",
"Name" => "ناو",
"Save" => "پاشکه‌وتکردن",
"Folder" => "بوخچه",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} датотеки се подигаат",
"Upload cancelled." => "Преземањето е прекинато.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Неправилно име на папка. Користењето на „Shared“ е резервирано за Owncloud",
"URL cannot be empty." => "Адресата неможе да биде празна.",
"{count} files scanned" => "{count} датотеки скенирани",
"error while scanning" => "грешка при скенирање",
"Name" => "Име",

View File

@ -28,7 +28,7 @@
"{count} files uploading" => "{count} filer laster opp",
"Upload cancelled." => "Opplasting avbrutt.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud.",
"URL cannot be empty." => "URL-en kan ikke være tom.",
"{count} files scanned" => "{count} filer lest inn",
"error while scanning" => "feil under skanning",
"Name" => "Navn",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Geen bestand geüpload",
"Missing a temporary folder" => "Een tijdelijke map mist",
"Failed to write to disk" => "Schrijven naar schijf mislukt",
"Not enough space available" => "Niet genoeg ruimte beschikbaar",
"Invalid directory." => "Ongeldige directory.",
"Files" => "Bestanden",
"Unshare" => "Stop delen",
"Delete" => "Verwijder",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}",
"unshared {files}" => "delen gestopt {files}",
"deleted {files}" => "verwijderde {files}",
"'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.",
"File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.",
"generating ZIP-file, it may take some time." => "aanmaken ZIP-file, dit kan enige tijd duren.",
"Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes",
@ -30,7 +34,7 @@
"{count} files uploading" => "{count} bestanden aan het uploaden",
"Upload cancelled." => "Uploaden geannuleerd.",
"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.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden",
"URL cannot be empty." => "URL kan niet leeg zijn.",
"{count} files scanned" => "{count} bestanden gescanned",
"error while scanning" => "Fout tijdens het scannen",
"Name" => "Naam",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Nie przesłano żadnego pliku",
"Missing a temporary folder" => "Brak katalogu tymczasowego",
"Failed to write to disk" => "Błąd zapisu na dysk",
"Not enough space available" => "Za mało miejsca",
"Invalid directory." => "Zła ścieżka.",
"Files" => "Pliki",
"Unshare" => "Nie udostępniaj",
"Delete" => "Usuwa element",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "zastąpiony {new_name} z {old_name}",
"unshared {files}" => "Udostępniane wstrzymane {files}",
"deleted {files}" => "usunięto {files}",
"'.' is an invalid file name." => "'.' jest nieprawidłową nazwą pliku.",
"File name cannot be empty." => "Nazwa pliku nie może być pusta.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone.",
"generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów",
@ -30,7 +34,8 @@
"{count} files uploading" => "{count} przesyłanie plików",
"Upload cancelled." => "Wczytywanie anulowane.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud",
"URL cannot be empty." => "URL nie może być pusty.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud",
"{count} files scanned" => "{count} pliki skanowane",
"error while scanning" => "Wystąpił błąd podczas skanowania",
"Name" => "Nazwa",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "Enviando {count} arquivos",
"Upload cancelled." => "Envio cancelado.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud",
"URL cannot be empty." => "URL não pode ficar em branco",
"{count} files scanned" => "{count} arquivos scaneados",
"error while scanning" => "erro durante verificação",
"Name" => "Nome",

View File

@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}",
"unshared {files}" => "{files} não partilhado(s)",
"deleted {files}" => "{files} eliminado(s)",
"'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!",
"File name cannot be empty." => "O nome do ficheiro não pode estar vazio.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.",
"generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes",
@ -32,7 +34,7 @@
"{count} files uploading" => "A carregar {count} ficheiros",
"Upload cancelled." => "O envio foi cancelado.",
"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.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud",
"URL cannot be empty." => "O URL não pode estar vazio.",
"{count} files scanned" => "{count} ficheiros analisados",
"error while scanning" => "erro ao analisar",
"Name" => "Nome",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} fisiere incarcate",
"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.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nume de folder invalid. Numele este rezervat pentru OwnCloud",
"URL cannot be empty." => "Adresa URL nu poate fi goală.",
"{count} files scanned" => "{count} fisiere scanate",
"error while scanning" => "eroare la scanarea",
"Name" => "Nume",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} файлов загружается",
"Upload cancelled." => "Загрузка отменена.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Не правильное имя папки. Имя \"Shared\" резервировано в Owncloud",
"URL cannot be empty." => "Ссылка не может быть пустой.",
"{count} files scanned" => "{count} файлов просканировано",
"error while scanning" => "ошибка во время санирования",
"Name" => "Название",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{количество} загружено файлов",
"Upload cancelled." => "Загрузка отменена",
"File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud",
"URL cannot be empty." => "URL не должен быть пустым.",
"{count} files scanned" => "{количество} файлов отсканировано",
"error while scanning" => "ошибка при сканировании",
"Name" => "Имя",

View File

@ -20,6 +20,7 @@
"1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ",
"Upload cancelled." => "උඩුගත කිරීම අත් හරින්න ලදී",
"File upload is in progress. Leaving the page now will cancel the upload." => "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත",
"URL cannot be empty." => "යොමුව හිස් විය නොහැක",
"error while scanning" => "පරීක්ෂා කිරීමේදී දෝෂයක්",
"Name" => "නම",
"Size" => "ප්‍රමාණය",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} súborov odosielaných",
"Upload cancelled." => "Odosielanie zrušené",
"File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud.",
"URL cannot be empty." => "URL nemôže byť prázdne",
"{count} files scanned" => "{count} súborov prehľadaných",
"error while scanning" => "chyba počas kontroly",
"Name" => "Meno",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "nalagam {count} datotek",
"Upload cancelled." => "Pošiljanje je preklicano.",
"File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud.",
"URL cannot be empty." => "Naslov URL ne sme biti prazen.",
"{count} files scanned" => "{count} files scanned",
"error while scanning" => "napaka med pregledovanjem datotek",
"Name" => "Ime",

View File

@ -29,7 +29,6 @@
"{count} files uploading" => "Отпремам {count} датотеке/а",
"Upload cancelled." => "Отпремање је прекинуто.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Неисправан назив фасцикле. „Дељено“ користи Оунклауд.",
"{count} files scanned" => "Скенирано датотека: {count}",
"error while scanning" => "грешка при скенирању",
"Name" => "Назив",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Ingen fil blev uppladdad",
"Missing a temporary folder" => "Saknar en tillfällig mapp",
"Failed to write to disk" => "Misslyckades spara till disk",
"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt",
"Invalid directory." => "Felaktig mapp.",
"Files" => "Filer",
"Unshare" => "Sluta dela",
"Delete" => "Radera",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}",
"unshared {files}" => "stoppad delning {files}",
"deleted {files}" => "raderade {files}",
"'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.",
"File name cannot be empty." => "Filnamn kan inte vara tomt.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.",
"generating ZIP-file, it may take some time." => "genererar ZIP-fil, det kan ta lite tid.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.",
@ -30,7 +34,8 @@
"{count} files uploading" => "{count} filer laddas upp",
"Upload cancelled." => "Uppladdning avbruten.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud.",
"URL cannot be empty." => "URL kan inte vara tom.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud",
"{count} files scanned" => "{count} filer skannade",
"error while scanning" => "fel vid skanning",
"Name" => "Namn",

View File

@ -29,7 +29,7 @@
"{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது",
"Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது",
"File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது",
"URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.",
"{count} files scanned" => "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது",
"error while scanning" => "வருடும் போதான வழு",
"Name" => "பெயர்",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์",
"Upload cancelled." => "การอัพโหลดถูกยกเลิก",
"File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น",
"URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้",
"{count} files scanned" => "สแกนไฟล์แล้ว {count} ไฟล์",
"error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์",
"Name" => "ชื่อ",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} dosya yükleniyor",
"Upload cancelled." => "Yükleme iptal edildi.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır.",
"URL cannot be empty." => "URL boş olamaz.",
"{count} files scanned" => "{count} dosya tarandı",
"error while scanning" => "tararamada hata oluşdu",
"Name" => "Ad",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} файлів завантажується",
"Upload cancelled." => "Завантаження перервано.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud",
"URL cannot be empty." => "URL не може бути пустим.",
"{count} files scanned" => "{count} файлів проскановано",
"error while scanning" => "помилка при скануванні",
"Name" => "Ім'я",

View File

@ -29,7 +29,7 @@
"{count} files uploading" => "{count} tập tin đang tải lên",
"Upload cancelled." => "Hủy tải lên",
"File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud",
"URL cannot be empty." => "URL không được để trống.",
"{count} files scanned" => "{count} tập tin đã được quét",
"error while scanning" => "lỗi trong khi quét",
"Name" => "Tên",

View File

@ -28,6 +28,7 @@
"{count} files uploading" => "{count} 个文件正在上传",
"Upload cancelled." => "上传取消了",
"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。",
"URL cannot be empty." => "网址不能为空。",
"{count} files scanned" => "{count} 个文件已扫描",
"error while scanning" => "扫描出错",
"Name" => "名字",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} 个文件上传中",
"Upload cancelled." => "上传已取消",
"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。",
"URL cannot be empty." => "URL不能为空",
"{count} files scanned" => "{count} 个文件已扫描。",
"error while scanning" => "扫描时出错",
"Name" => "名称",

View File

@ -1,30 +1,42 @@
<?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "沒有檔案被上傳. 未知的錯誤.",
"There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制",
"The uploaded file was only partially uploaded" => "只有部分檔案被上傳",
"No file was uploaded" => "無已上傳檔案",
"Missing a temporary folder" => "遺失暫存資料夾",
"Failed to write to disk" => "寫入硬碟失敗",
"Not enough space available" => "沒有足夠的可用空間",
"Invalid directory." => "無效的資料夾。",
"Files" => "檔案",
"Unshare" => "取消共享",
"Delete" => "刪除",
"Rename" => "重新命名",
"{new_name} already exists" => "{new_name} 已經存在",
"replace" => "取代",
"suggest name" => "建議檔名",
"cancel" => "取消",
"replaced {new_name}" => "已取代 {new_name}",
"undo" => "復原",
"replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}",
"unshared {files}" => "停止分享 {files}",
"deleted {files}" => "已刪除 {files}",
"'.' is an invalid file name." => "'.' 是不合法的檔名。",
"File name cannot be empty." => "檔名不能為空。",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。",
"generating ZIP-file, it may take some time." => "產生壓縮檔, 它可能需要一段時間.",
"Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0",
"Upload Error" => "上傳發生錯誤",
"Close" => "關閉",
"Pending" => "等候中",
"1 file uploading" => "1 個檔案正在上傳",
"{count} files uploading" => "{count} 個檔案正在上傳",
"Upload cancelled." => "上傳取消",
"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用",
"URL cannot be empty." => "URL不能為空白.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留",
"{count} files scanned" => "{count} 個檔案已掃描",
"error while scanning" => "掃描時發生錯誤",
"Name" => "名稱",
"Size" => "大小",
@ -44,6 +56,7 @@
"New" => "新增",
"Text file" => "文字檔",
"Folder" => "資料夾",
"From link" => "從連結",
"Upload" => "上傳",
"Cancel upload" => "取消上傳",
"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!",

View File

@ -14,7 +14,8 @@
data-type='web'><p><?php echo $l->t('From link');?></p></li>
</ul>
</div>
<div id="upload" class="button">
<div id="upload" class="button"
title="<?php echo $l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize'] ?>">
<form data-upload-id='1'
id="data-upload-form"
class="file_upload_form"
@ -31,10 +32,7 @@
value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)">
<input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir">
<input type="file" id="file_upload_start" name='files[]'/>
<a href="#" class="svg" onclick="return false;"
title="<?php echo $l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize'] ?>"></a>
<iframe name="file_upload_target_1" class="file_upload_target" src=""></iframe>
<a href="#" class="svg" onclick="return false;"></a>
</form>
</div>
<div id="uploadprogresswrapper">

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "Криптиране",
"Enable Encryption" => "Включване на криптирането",
"None" => "Няма",
"Exclude the following file types from encryption" => "Изключване на следните файлови типове от криптирането"
);

View File

@ -1,4 +1,18 @@
<?php $TRANSLATIONS = array(
"Access granted" => "Достъпът е даден",
"Grant access" => "Даване на достъп",
"Fill out all required fields" => "Попълнете всички задължителни полета",
"External Storage" => "Външно хранилище",
"Backend" => "Администрация",
"Configuration" => "Конфигурация",
"Options" => "Опции",
"None set" => "Няма избрано",
"All Users" => "Всички потребители",
"Groups" => "Групи",
"Delete" => "Изтриване"
"Users" => "Потребители",
"Delete" => "Изтриване",
"Enable User External Storage" => "Вкл. на поддръжка за външно потр. хранилище",
"Allow users to mount their own external storage" => "Позволено е на потребителите да ползват тяхно лично външно хранилище",
"SSL root certificates" => "SSL основни сертификати",
"Import Root Certificate" => "Импортиране на основен сертификат"
);

View File

@ -5,6 +5,8 @@
"Fill out all required fields" => "모든 필수 항목을 입력하십시오",
"Please provide a valid Dropbox app key and secret." => "올바른 Dropbox 앱 키와 암호를 입력하십시오.",
"Error configuring Google Drive storage" => "Google 드라이브 저장소 설정 오류",
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>경고</b>\"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유애 연결이 불가능 합니다.. 시스템 관리자에게 요청하여 설치하시기 바랍니다.",
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>경고</b>PHP용 FTP 지원이 사용 불가능 하거나 설치되지 않았습니다. FTP 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. ",
"External Storage" => "외부 저장소",
"Mount point" => "마운트 지점",
"Backend" => "백엔드",

View File

@ -50,7 +50,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{
'password' => $this->password,
);
$this->client = new OC_Connector_Sabre_Client($settings);
$this->client = new Sabre_DAV_Client($settings);
$caview = \OCP\Files::getStorage('files_external');
if ($caview) {

View File

@ -0,0 +1,9 @@
<?php $TRANSLATIONS = array(
"Password" => "Парола",
"Submit" => "Потвърждение",
"%s shared the folder %s with you" => "%s сподели папката %s с Вас",
"%s shared the file %s with you" => "%s сподели файла %s с Вас",
"Download" => "Изтегляне",
"No preview available for" => "Няма наличен преглед за",
"web services under your control" => "уеб услуги под Ваш контрол"
);

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"History" => "История",
"Versions" => "Версии",
"This will delete all existing backup versions of your files" => "Това действие ще изтрие всички налични архивни версии на Вашите файлове",
"Enable" => "Включено"
);

View File

@ -0,0 +1,4 @@
<?php $TRANSLATIONS = array(
"Password" => "Парола",
"Help" => "Помощ"
);

View File

@ -17,6 +17,7 @@
"Group Filter" => "A csoportok szűrője",
"Defines the filter to apply, when retrieving groups." => "Ez a szűrő érvényes a csoportok listázásakor.",
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne használjunk változót, pl. \"objectClass=posixGroup\".",
"Port" => "Port",
"Base User Tree" => "A felhasználói fa gyökere",
"Base Group Tree" => "A csoportfa gyökere",
"Group-Member association" => "A csoporttagság attribútuma",

View File

@ -1,4 +1,6 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>경고</b>user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>경고</b>PHP LDAP 모듈이 설치되지 않았습니다. 백엔드가 동작하지 않을 것 입니다. 시스템관리자에게 요청하여 해당 모듈을 설치하시기 바랍니다.",
"Host" => "호스트",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.",
"Base DN" => "기본 DN",

View File

@ -1,3 +1,4 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL : http://"
"URL: http://" => "URL : http://",
"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "Owncloud enverra les identifiants de sécurité de l'utilisateur à cet URL et interprète les http 401 et 403 comme des erreurs d'identification et tous les autres codes seront considérés comme une identification valide."
);

View File

@ -1,3 +1,4 @@
<?php $TRANSLATIONS = array(
"WebDAV URL: http://" => "WebDAV URL: http://"
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud는 이 URL로 유저 인증을 보내게 되며, http 401 과 http 403은 인증 오류로, 그 외 코드는 인증이 올바른 것으로 해석합니다."
);

View File

@ -65,7 +65,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend {
}
/*
* we don´t know if a user exists without the password. so we have to return false all the time
* we don´t know if a user exists without the password. so we have to return true all the time
*/
public function userExists( $uid ){
return true;

View File

@ -34,7 +34,7 @@ filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endC
/* INPUTS */
input[type="text"], input[type="password"] { cursor:text; }
input:not([type="checkbox"]), textarea, select, button, .button, #quota, div.jp-progress, .pager li a {
input, textarea, select, button, .button, #quota, div.jp-progress, .pager li a {
width:10em; margin:.3em; padding:.6em .5em .4em;
font-size:1em; font-family:Arial, Verdana, sans-serif;
background:#fff; color:#333; border:1px solid #ddd; outline:none;
@ -56,7 +56,7 @@ input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#
/* BUTTONS */
input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a {
width:auto; padding:.4em;
background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid rgba(180,180,180,.5); cursor:pointer;
background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid #bbb; border:1px solid rgba(180,180,180,.5); cursor:pointer;
-moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset;
-moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;
}

View File

@ -50,6 +50,6 @@ OC.AppConfig={
},
deleteApp:function(app){
OC.AppConfig.postCall('deleteApp',{app:app});
},
}
};
//TODO OC.Preferences

View File

@ -343,8 +343,15 @@ if(typeof localStorage !=='undefined' && localStorage !== null){
return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item));
},
getItem:function(name){
if(localStorage.getItem(OC.localStorage.namespace+name)===null){return null;}
return JSON.parse(localStorage.getItem(OC.localStorage.namespace+name));
var item = localStorage.getItem(OC.localStorage.namespace+name);
if(item===null) {
return null;
} else if (typeof JSON === 'undefined') {
//fallback to jquery for IE6/7/8
return $.parseJSON(item);
} else {
return JSON.parse(item);
}
}
};
}else{
@ -615,7 +622,7 @@ $(document).ready(function(){
$('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true});
$('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true});
$('.password .action').tipsy({gravity:'se', fade:true, live:true});
$('#upload a').tipsy({gravity:'w', fade:true});
$('#upload').tipsy({gravity:'w', fade:true});
$('.selectedActions a').tipsy({gravity:'s', fade:true, live:true});
$('a.delete').tipsy({gravity: 'e', fade:true, live:true});
$('a.action').tipsy({gravity:'s', fade:true, live:true});

View File

@ -1,62 +1,19 @@
<?php $TRANSLATIONS = array(
"This category already exists: " => "Категорията вече съществува:",
"No categories selected for deletion." => "Няма избрани категории за изтриване",
"Settings" => "Настройки",
"Cancel" => "Отказ",
"No" => "Не",
"Yes" => "Да",
"Ok" => "Добре",
"Error" => "Грешка",
"seconds ago" => "преди секунди",
"1 minute ago" => "преди 1 минута",
"1 hour ago" => "преди 1 час",
"today" => "днес",
"yesterday" => "вчера",
"last month" => "последният месец",
"last year" => "последната година",
"years ago" => "последните години",
"Password" => "Парола",
"You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.",
"Username" => "Потребител",
"Request reset" => "Нулиране на заявка",
"Your password was reset" => "Вашата парола е нулирана",
"New password" => "Нова парола",
"Reset password" => "Нулиране на парола",
"Personal" => "Лични",
"Users" => "Потребители",
"Apps" => "Програми",
"Apps" => "Приложения",
"Admin" => "Админ",
"Help" => "Помощ",
"Access forbidden" => "Достъпът е забранен",
"Cloud not found" => "облакът не намерен",
"Edit categories" => "Редактиране на категориите",
"Add" => "Добавяне",
"Create an <strong>admin account</strong>" => "Създаване на <strong>админ профил</strong>",
"Advanced" => "Разширено",
"Data folder" => "Директория за данни",
"Configure the database" => "Конфигуриране на базата",
"will be used" => "ще се ползва",
"Database user" => "Потребител за базата",
"Database password" => "Парола за базата",
"Database name" => "Име на базата",
"Database host" => "Хост за базата",
"Finish setup" => "Завършване на настройките",
"Sunday" => "Неделя",
"Monday" => "Понеделник",
"Tuesday" => "Вторник",
"Wednesday" => "Сряда",
"Thursday" => "Четвъртък",
"Friday" => "Петък",
"Saturday" => "Събота",
"January" => "Януари",
"February" => "Февруари",
"March" => "Март",
"April" => "Април",
"May" => "Май",
"June" => "Юни",
"July" => "Юли",
"August" => "Август",
"September" => "Септември",
"October" => "Октомври",
"November" => "Ноември",
"December" => "Декември",
"Log out" => "Изход",
"Lost your password?" => "Забравена парола?",
"remember" => "запомни",
"Log in" => "Вход",
"You are logged out." => "Вие излязохте.",
"prev" => "пред.",
"next" => "следващо"
"web services under your control" => "уеб услуги под Ваш контрол"
);

View File

@ -128,6 +128,7 @@
"You are logged out." => "Heu tancat la sessió.",
"prev" => "anterior",
"next" => "següent",
"Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona.",
"Security Warning!" => "Avís de seguretat!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Comproveu la vostra contrasenya. <br/>Per raons de seguretat se us pot demanar escriure de nou la vostra contrasenya.",
"Verify" => "Comprova"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Jste odhlášeni.",
"prev" => "předchozí",
"next" => "následující",
"Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat.",
"Security Warning!" => "Bezpečnostní upozornění.",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Ověřte, prosím, své heslo. <br/>Z bezpečnostních důvodů můžete být občas požádáni o jeho opětovné zadání.",
"Verify" => "Ověřit"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Du wurdest abgemeldet.",
"prev" => "Zurück",
"next" => "Weiter",
"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.",
"Security Warning!" => "Sicherheitswarnung!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bitte bestätige Dein Passwort. <br/> Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben.",
"Verify" => "Bestätigen"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Sie wurden abgemeldet.",
"prev" => "Zurück",
"next" => "Weiter",
"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.",
"Security Warning!" => "Sicherheitshinweis!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bitte überprüfen Sie Ihr Passwort. <br/>Aus Sicherheitsgründen werden Sie gelegentlich aufgefordert, Ihr Passwort erneut einzugeben.",
"Verify" => "Überprüfen"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Has cerrado la sesión.",
"prev" => "anterior",
"next" => "siguiente",
"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.",
"Security Warning!" => "¡Advertencia de seguridad!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique su contraseña. <br/>Por razones de seguridad se le puede volver a preguntar ocasionalmente la contraseña.",
"Verify" => "Verificar"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Vous êtes désormais déconnecté.",
"prev" => "précédent",
"next" => "suivant",
"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.",
"Security Warning!" => "Alerte de sécurité !",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Veuillez vérifier votre mot de passe. <br/>Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau.",
"Verify" => "Vérification"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Sei uscito.",
"prev" => "precedente",
"next" => "successivo",
"Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo.",
"Security Warning!" => "Avviso di sicurezza",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifica la tua password.<br/>Per motivi di sicurezza, potresti ricevere una richiesta di digitare nuovamente la password.",
"Verify" => "Verifica"

View File

@ -128,6 +128,7 @@
"You are logged out." => "ログアウトしました。",
"prev" => "",
"next" => "",
"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。",
"Security Warning!" => "セキュリティ警告!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "パスワードの確認<br/>セキュリティ上の理由によりパスワードの再入力をお願いします。",
"Verify" => "確認"

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
"User %s shared a file with you" => "User %s 가 당신과 파일을 공유하였습니다.",
"User %s shared a folder with you" => "User %s 가 당신과 폴더를 공유하였습니다.",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "User %s 가 파일 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다.",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "User %s 가 폴더 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다.",
"Category type not provided." => "분류 형식이 제공되지 않았습니다.",
"No category to add?" => "추가할 분류가 없습니까?",
"This category already exists: " => "이 분류는 이미 존재합니다:",
@ -39,6 +43,8 @@
"Share with link" => "URL 링크로 공유",
"Password protect" => "암호 보호",
"Password" => "암호",
"Email link to person" => "이메일 주소",
"Send" => "전송",
"Set expiration date" => "만료 날짜 설정",
"Expiration date" => "만료 날짜",
"Share via email:" => "이메일로 공유:",
@ -55,6 +61,8 @@
"Password protected" => "암호로 보호됨",
"Error unsetting expiration date" => "만료 날짜 해제 오류",
"Error setting expiration date" => "만료 날짜 설정 오류",
"Sending ..." => "전송 중...",
"Email sent" => "이메일 발송됨",
"ownCloud password reset" => "ownCloud 암호 재설정",
"Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}",
"You will receive a link to reset your password via Email." => "이메일로 암호 재설정 링크를 보냈습니다.",
@ -120,6 +128,7 @@
"You are logged out." => "로그아웃되었습니다.",
"prev" => "이전",
"next" => "다음",
"Updating ownCloud to version %s, this may take a while." => "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다.",
"Security Warning!" => "보안 경고!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "암호를 확인해 주십시오.<br/>보안상의 이유로 종종 암호를 물어볼 것입니다.",
"Verify" => "확인"

View File

@ -128,6 +128,7 @@
"You are logged out." => "U bent afgemeld.",
"prev" => "vorige",
"next" => "volgende",
"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren.",
"Security Warning!" => "Beveiligingswaarschuwing!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifieer uw wachtwoord!<br/>Om veiligheidsredenen wordt u regelmatig gevraagd uw wachtwoord in te geven.",
"Verify" => "Verifieer"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Wylogowano użytkownika.",
"prev" => "wstecz",
"next" => "naprzód",
"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę.",
"Security Warning!" => "Ostrzeżenie o zabezpieczeniach!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Sprawdź swoje hasło.<br/>Ze względów bezpieczeństwa możesz zostać czasami poproszony o wprowadzenie hasła ponownie.",
"Verify" => "Zweryfikowane"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Estás desconetado.",
"prev" => "anterior",
"next" => "seguinte",
"Updating ownCloud to version %s, this may take a while." => "A Actualizar o ownCloud para a versão %s, esta operação pode demorar.",
"Security Warning!" => "Aviso de Segurança!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique a sua palavra-passe. <br/>Por razões de segurança, pode ser-lhe perguntada, ocasionalmente, a sua palavra-passe de novo.",
"Verify" => "Verificar"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Du är utloggad.",
"prev" => "föregående",
"next" => "nästa",
"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.",
"Security Warning!" => "Säkerhetsvarning!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bekräfta ditt lösenord. <br/>Av säkerhetsskäl kan du ibland bli ombedd att ange ditt lösenord igen.",
"Verify" => "Verifiera"

View File

@ -26,6 +26,8 @@
"The app name is not specified." => "沒有詳述APP名稱.",
"Error while sharing" => "分享時發生錯誤",
"Error while unsharing" => "取消分享時發生錯誤",
"Error while changing permissions" => "修改權限時發生錯誤",
"Shared with you and the group {group} by {owner}" => "{owner} 分享給您和 {group}",
"Shared with you by {owner}" => "{owner} 已經和您分享",
"Share with" => "與分享",
"Share with link" => "使用連結分享",
@ -34,6 +36,8 @@
"Set expiration date" => "設置到期日",
"Expiration date" => "到期日",
"Share via email:" => "透過email分享:",
"No people found" => "沒有找到任何人",
"Resharing is not allowed" => "不允許重新分享",
"Shared in {item} with {user}" => "已和 {user} 分享 {item}",
"Unshare" => "取消共享",
"can edit" => "可編輯",
@ -43,6 +47,7 @@
"delete" => "刪除",
"share" => "分享",
"Password protected" => "密碼保護",
"Error unsetting expiration date" => "解除過期日設定失敗",
"Error setting expiration date" => "錯誤的到期日設定",
"ownCloud password reset" => "ownCloud 密碼重設",
"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ",
@ -66,6 +71,8 @@
"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." => "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。",
"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。",
"Create an <strong>admin account</strong>" => "建立一個<strong>管理者帳號</strong>",
"Advanced" => "進階",
"Data folder" => "資料夾",
@ -98,6 +105,9 @@
"December" => "十二月",
"web services under your control" => "網路服務已在你控制",
"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." => "請更改您的密碼以再次取得您的帳戶的控制權。",
"Lost your password?" => "忘記密碼?",
"remember" => "記住",
"Log in" => "登入",
@ -105,5 +115,6 @@
"prev" => "上一頁",
"next" => "下一頁",
"Security Warning!" => "安全性警告!",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "請輸入您的密碼。<br/>基於安全性的理由,您有時候可能會被要求再次輸入密碼。",
"Verify" => "驗證"
);

View File

@ -113,7 +113,7 @@
</p>
<p class="infield groupmiddle">
<label for="dbname" class="infield"><?php echo $l->t( 'Database name' ); ?></label>
<input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" autocomplete="off" pattern="[0-9a-zA-Z$_]+" />
<input type="text" name="dbname" id="dbname" value="<?php print OC_Helper::init_var('dbname'); ?>" autocomplete="off" pattern="[0-9a-zA-Z$_-]+" />
</p>
</div>
<?php endif; ?>

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-24 00:10+0100\n"
"PO-Revision-Date: 2012-12-23 19:06+0000\n"
"Last-Translator: aboodilankaboot <shiningmoon25@gmail.com>\n"
"POT-Creation-Date: 2013-01-07 00:04+0100\n"
"PO-Revision-Date: 2013-01-06 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -566,6 +566,11 @@ msgstr "السابق"
msgid "next"
msgstr "التالي"
#: templates/update.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
msgstr ""
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "تحذير أمان!"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -18,6 +18,20 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: ajax/move.php:17
#, php-format
msgid "Could not move %s - File with this name already exists"
msgstr ""
#: ajax/move.php:24
#, php-format
msgid "Could not move %s"
msgstr ""
#: ajax/rename.php:19
msgid "Unable to rename file"
msgstr ""
#: ajax/upload.php:14
msgid "No file was uploaded. Unknown error"
msgstr ""
@ -65,11 +79,11 @@ msgstr ""
msgid "Files"
msgstr "الملفات"
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83
msgid "Unshare"
msgstr "إلغاء مشاركة"
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89
msgid "Delete"
msgstr "محذوف"
@ -77,122 +91,134 @@ msgstr "محذوف"
msgid "Rename"
msgstr ""
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "{new_name} already exists"
msgstr ""
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "replace"
msgstr ""
#: js/filelist.js:199
#: js/filelist.js:205
msgid "suggest name"
msgstr ""
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "cancel"
msgstr ""
#: js/filelist.js:248
#: js/filelist.js:254
msgid "replaced {new_name}"
msgstr ""
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290
msgid "undo"
msgstr ""
#: js/filelist.js:250
#: js/filelist.js:256
msgid "replaced {new_name} with {old_name}"
msgstr ""
#: js/filelist.js:282
#: js/filelist.js:288
msgid "unshared {files}"
msgstr ""
#: js/filelist.js:284
#: js/filelist.js:290
msgid "deleted {files}"
msgstr ""
#: js/files.js:33
#: js/files.js:31
msgid "'.' is an invalid file name."
msgstr ""
#: js/files.js:36
msgid "File name cannot be empty."
msgstr ""
#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
#: js/files.js:174
#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr ""
#: js/files.js:212
#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
#: js/files.js:212
#: js/files.js:224
msgid "Upload Error"
msgstr ""
#: js/files.js:229
#: js/files.js:241
msgid "Close"
msgstr "إغلق"
#: js/files.js:248 js/files.js:362 js/files.js:392
#: js/files.js:260 js/files.js:376 js/files.js:409
msgid "Pending"
msgstr ""
#: js/files.js:268
#: js/files.js:280
msgid "1 file uploading"
msgstr ""
#: js/files.js:271 js/files.js:325 js/files.js:340
#: js/files.js:283 js/files.js:338 js/files.js:353
msgid "{count} files uploading"
msgstr ""
#: js/files.js:343 js/files.js:376
#: js/files.js:357 js/files.js:393
msgid "Upload cancelled."
msgstr ""
#: js/files.js:445
#: js/files.js:464
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
#: js/files.js:537
msgid "URL cannot be empty."
msgstr ""
#: js/files.js:699
#: js/files.js:543
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr ""
#: js/files.js:727
msgid "{count} files scanned"
msgstr ""
#: js/files.js:707
#: js/files.js:735
msgid "error while scanning"
msgstr ""
#: js/files.js:780 templates/index.php:66
#: js/files.js:808 templates/index.php:64
msgid "Name"
msgstr "الاسم"
#: js/files.js:781 templates/index.php:77
#: js/files.js:809 templates/index.php:75
msgid "Size"
msgstr "حجم"
#: js/files.js:782 templates/index.php:79
#: js/files.js:810 templates/index.php:77
msgid "Modified"
msgstr "معدل"
#: js/files.js:801
#: js/files.js:829
msgid "1 folder"
msgstr ""
#: js/files.js:803
#: js/files.js:831
msgid "{count} folders"
msgstr ""
#: js/files.js:811
#: js/files.js:839
msgid "1 file"
msgstr ""
#: js/files.js:813
#: js/files.js:841
msgid "{count} files"
msgstr ""
@ -244,36 +270,36 @@ msgstr "مجلد"
msgid "From link"
msgstr ""
#: templates/index.php:35
#: templates/index.php:18
msgid "Upload"
msgstr "إرفع"
#: templates/index.php:43
#: templates/index.php:41
msgid "Cancel upload"
msgstr ""
#: templates/index.php:58
#: templates/index.php:56
msgid "Nothing in here. Upload something!"
msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!"
#: templates/index.php:72
#: templates/index.php:70
msgid "Download"
msgstr "تحميل"
#: templates/index.php:104
#: templates/index.php:102
msgid "Upload too large"
msgstr "حجم الترفيع أعلى من المسموح"
#: templates/index.php:106
#: templates/index.php:104
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم."
#: templates/index.php:111
#: templates/index.php:109
msgid "Files are being scanned, please wait."
msgstr ""
#: templates/index.php:114
#: templates/index.php:112
msgid "Current scanning"
msgstr ""

View File

@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-12-12 23:17+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2011-07-25 16:05+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -55,7 +55,7 @@ msgstr ""
#: ajax/vcategories/add.php:37
msgid "This category already exists: "
msgstr "Категорията вече съществува:"
msgstr ""
#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
#: ajax/vcategories/favorites.php:24
@ -76,7 +76,7 @@ msgstr ""
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion."
msgstr "Няма избрани категории за изтриване"
msgstr ""
#: ajax/vcategories/removeFromFavorites.php:35
#, php-format
@ -87,57 +87,57 @@ msgstr ""
msgid "Settings"
msgstr "Настройки"
#: js/js.js:704
#: js/js.js:711
msgid "seconds ago"
msgstr ""
msgstr "преди секунди"
#: js/js.js:705
#: js/js.js:712
msgid "1 minute ago"
msgstr ""
msgstr "преди 1 минута"
#: js/js.js:706
#: js/js.js:713
msgid "{minutes} minutes ago"
msgstr ""
#: js/js.js:707
#: js/js.js:714
msgid "1 hour ago"
msgstr ""
msgstr "преди 1 час"
#: js/js.js:708
#: js/js.js:715
msgid "{hours} hours ago"
msgstr ""
#: js/js.js:709
#: js/js.js:716
msgid "today"
msgstr ""
msgstr "днес"
#: js/js.js:710
#: js/js.js:717
msgid "yesterday"
msgstr ""
msgstr "вчера"
#: js/js.js:711
#: js/js.js:718
msgid "{days} days ago"
msgstr ""
#: js/js.js:712
#: js/js.js:719
msgid "last month"
msgstr ""
msgstr "последният месец"
#: js/js.js:713
#: js/js.js:720
msgid "{months} months ago"
msgstr ""
#: js/js.js:714
#: js/js.js:721
msgid "months ago"
msgstr ""
#: js/js.js:715
#: js/js.js:722
msgid "last year"
msgstr ""
msgstr "последната година"
#: js/js.js:716
#: js/js.js:723
msgid "years ago"
msgstr ""
msgstr "последните години"
#: js/oc-dialogs.js:126
msgid "Choose"
@ -145,19 +145,19 @@ msgstr ""
#: js/oc-dialogs.js:146 js/oc-dialogs.js:166
msgid "Cancel"
msgstr "Отказ"
msgstr ""
#: js/oc-dialogs.js:162
msgid "No"
msgstr "Не"
msgstr ""
#: js/oc-dialogs.js:163
msgid "Yes"
msgstr "Да"
msgstr ""
#: js/oc-dialogs.js:180
msgid "Ok"
msgstr "Добре"
msgstr ""
#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102
#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162
@ -165,10 +165,10 @@ msgid "The object type is not specified."
msgstr ""
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:553
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
#: js/share.js:566
msgid "Error"
msgstr "Грешка"
msgstr ""
#: js/oc-vcategories.js:179
msgid "The app name is not specified."
@ -178,7 +178,7 @@ msgstr ""
msgid "The required file {file} is not installed!"
msgstr ""
#: js/share.js:124 js/share.js:581
#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr ""
@ -206,11 +206,11 @@ msgstr ""
msgid "Share with link"
msgstr ""
#: js/share.js:164
#: js/share.js:166
msgid "Password protect"
msgstr ""
#: js/share.js:168 templates/installation.php:42 templates/login.php:24
#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Парола"
@ -275,23 +275,23 @@ msgstr ""
msgid "share"
msgstr ""
#: js/share.js:353 js/share.js:528 js/share.js:530
#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr ""
#: js/share.js:541
#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr ""
#: js/share.js:553
#: js/share.js:566
msgid "Error setting expiration date"
msgstr ""
#: js/share.js:568
#: js/share.js:581
msgid "Sending ..."
msgstr ""
#: js/share.js:579
#: js/share.js:592
msgid "Email sent"
msgstr ""
@ -305,7 +305,7 @@ msgstr ""
#: lostpassword/templates/lostpassword.php:3
msgid "You will receive a link to reset your password via Email."
msgstr "Ще получите връзка за нулиране на паролата Ви."
msgstr ""
#: lostpassword/templates/lostpassword.php:5
msgid "Reset email send."
@ -315,18 +315,18 @@ msgstr ""
msgid "Request failed!"
msgstr ""
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
#: templates/login.php:20
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
#: templates/login.php:28
msgid "Username"
msgstr "Потребител"
msgstr ""
#: lostpassword/templates/lostpassword.php:14
msgid "Request reset"
msgstr "Нулиране на заявка"
msgstr ""
#: lostpassword/templates/resetpassword.php:4
msgid "Your password was reset"
msgstr "Вашата парола е нулирана"
msgstr ""
#: lostpassword/templates/resetpassword.php:5
msgid "To login page"
@ -334,11 +334,11 @@ msgstr ""
#: lostpassword/templates/resetpassword.php:8
msgid "New password"
msgstr "Нова парола"
msgstr ""
#: lostpassword/templates/resetpassword.php:11
msgid "Reset password"
msgstr "Нулиране на парола"
msgstr ""
#: strings.php:5
msgid "Personal"
@ -350,7 +350,7 @@ msgstr "Потребители"
#: strings.php:7
msgid "Apps"
msgstr "Програми"
msgstr "Приложения"
#: strings.php:8
msgid "Admin"
@ -362,15 +362,15 @@ msgstr "Помощ"
#: templates/403.php:12
msgid "Access forbidden"
msgstr "Достъпът е забранен"
msgstr ""
#: templates/404.php:12
msgid "Cloud not found"
msgstr "облакът не намерен"
msgstr ""
#: templates/edit_categories_dialog.php:4
msgid "Edit categories"
msgstr "Редактиране на категориите"
msgstr ""
#: templates/edit_categories_dialog.php:16
msgid "Add"
@ -403,170 +403,175 @@ msgstr ""
#: templates/installation.php:36
msgid "Create an <strong>admin account</strong>"
msgstr "Създаване на <strong>админ профил</strong>"
#: templates/installation.php:48
msgid "Advanced"
msgstr "Разширено"
msgstr ""
#: templates/installation.php:50
msgid "Advanced"
msgstr ""
#: templates/installation.php:52
msgid "Data folder"
msgstr "Директория за данни"
msgstr ""
#: templates/installation.php:57
#: templates/installation.php:59
msgid "Configure the database"
msgstr "Конфигуриране на базата"
msgstr ""
#: templates/installation.php:62 templates/installation.php:73
#: templates/installation.php:83 templates/installation.php:93
#: templates/installation.php:64 templates/installation.php:75
#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "ще се ползва"
msgstr ""
#: templates/installation.php:105
#: templates/installation.php:107
msgid "Database user"
msgstr "Потребител за базата"
msgstr ""
#: templates/installation.php:109
#: templates/installation.php:111
msgid "Database password"
msgstr "Парола за базата"
msgstr ""
#: templates/installation.php:113
#: templates/installation.php:115
msgid "Database name"
msgstr "Име на базата"
msgstr ""
#: templates/installation.php:121
#: templates/installation.php:123
msgid "Database tablespace"
msgstr ""
#: templates/installation.php:127
#: templates/installation.php:129
msgid "Database host"
msgstr "Хост за базата"
msgstr ""
#: templates/installation.php:132
#: templates/installation.php:134
msgid "Finish setup"
msgstr "Завършване на настройките"
msgstr ""
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday"
msgstr "Неделя"
msgstr ""
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday"
msgstr "Понеделник"
msgstr ""
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday"
msgstr "Вторник"
msgstr ""
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday"
msgstr "Сряда"
msgstr ""
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday"
msgstr "Четвъртък"
msgstr ""
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday"
msgstr "Петък"
msgstr ""
#: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday"
msgstr "Събота"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January"
msgstr "Януари"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February"
msgstr "Февруари"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March"
msgstr "Март"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April"
msgstr "Април"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May"
msgstr "Май"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June"
msgstr "Юни"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July"
msgstr "Юли"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August"
msgstr "Август"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September"
msgstr "Септември"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October"
msgstr "Октомври"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November"
msgstr "Ноември"
msgstr ""
#: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December"
msgstr "Декември"
msgstr ""
#: templates/layout.guest.php:42
msgid "web services under your control"
msgstr ""
msgstr "уеб услуги под Ваш контрол"
#: templates/layout.user.php:45
msgid "Log out"
msgstr "Изход"
msgstr ""
#: templates/login.php:8
#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr ""
#: templates/login.php:9
#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr ""
#: templates/login.php:10
#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr ""
#: templates/login.php:15
#: templates/login.php:19
msgid "Lost your password?"
msgstr "Забравена парола?"
msgstr ""
#: templates/login.php:27
#: templates/login.php:39
msgid "remember"
msgstr "запомни"
msgstr ""
#: templates/login.php:28
#: templates/login.php:41
msgid "Log in"
msgstr "Вход"
msgstr ""
#: templates/logout.php:1
msgid "You are logged out."
msgstr "Вие излязохте."
msgstr ""
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "пред."
msgstr ""
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "следващо"
msgstr ""
#: templates/update.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
msgstr ""
#: templates/verify.php:5
msgid "Security Warning!"

View File

@ -3,14 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Stefan Ilivanov <ilivanov@gmail.com>, 2011.
# Stefan Ilivanov <ilivanov@gmail.com>, 2011,2013.
# Yasen Pramatarov <yasen@lindeas.com>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 23:05+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -19,13 +19,27 @@ msgstr ""
"Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/move.php:17
#, php-format
msgid "Could not move %s - File with this name already exists"
msgstr ""
#: ajax/move.php:24
#, php-format
msgid "Could not move %s"
msgstr ""
#: ajax/rename.php:19
msgid "Unable to rename file"
msgstr ""
#: ajax/upload.php:14
msgid "No file was uploaded. Unknown error"
msgstr ""
#: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "Файлът е качен успешно"
msgstr ""
#: ajax/upload.php:22
msgid ""
@ -36,23 +50,23 @@ msgstr ""
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form"
msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата."
msgstr ""
#: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded"
msgstr "Файлът е качен частично"
msgstr ""
#: ajax/upload.php:27
msgid "No file was uploaded"
msgstr "Фахлът не бе качен"
msgstr ""
#: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "Липсва временната папка"
msgstr "Липсва временна папка"
#: ajax/upload.php:29
msgid "Failed to write to disk"
msgstr "Грешка при запис на диска"
msgstr ""
#: ajax/upload.php:45
msgid "Not enough space available"
@ -66,134 +80,146 @@ msgstr ""
msgid "Files"
msgstr "Файлове"
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83
msgid "Unshare"
msgstr ""
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89
msgid "Delete"
msgstr "Изтриване"
#: js/fileactions.js:181
msgid "Rename"
msgstr ""
msgstr "Преименуване"
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "{new_name} already exists"
msgstr ""
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "replace"
msgstr ""
msgstr "препокриване"
#: js/filelist.js:199
#: js/filelist.js:205
msgid "suggest name"
msgstr ""
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "cancel"
msgstr ""
msgstr "отказ"
#: js/filelist.js:248
#: js/filelist.js:254
msgid "replaced {new_name}"
msgstr ""
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290
msgid "undo"
msgstr ""
msgstr "възтановяване"
#: js/filelist.js:250
#: js/filelist.js:256
msgid "replaced {new_name} with {old_name}"
msgstr ""
#: js/filelist.js:282
#: js/filelist.js:288
msgid "unshared {files}"
msgstr ""
#: js/filelist.js:284
#: js/filelist.js:290
msgid "deleted {files}"
msgstr ""
#: js/files.js:33
#: js/files.js:31
msgid "'.' is an invalid file name."
msgstr ""
#: js/files.js:36
msgid "File name cannot be empty."
msgstr ""
#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
#: js/files.js:174
#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr ""
#: js/files.js:212
#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
#: js/files.js:212
#: js/files.js:224
msgid "Upload Error"
msgstr "Грешка при качване"
msgstr ""
#: js/files.js:229
#: js/files.js:241
msgid "Close"
msgstr ""
#: js/files.js:248 js/files.js:362 js/files.js:392
#: js/files.js:260 js/files.js:376 js/files.js:409
msgid "Pending"
msgstr ""
#: js/files.js:268
#: js/files.js:280
msgid "1 file uploading"
msgstr ""
#: js/files.js:271 js/files.js:325 js/files.js:340
#: js/files.js:283 js/files.js:338 js/files.js:353
msgid "{count} files uploading"
msgstr ""
#: js/files.js:343 js/files.js:376
#: js/files.js:357 js/files.js:393
msgid "Upload cancelled."
msgstr "Качването е отменено."
msgstr "Качването е спряно."
#: js/files.js:445
#: js/files.js:464
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
#: js/files.js:537
msgid "URL cannot be empty."
msgstr ""
#: js/files.js:699
#: js/files.js:543
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr ""
#: js/files.js:727
msgid "{count} files scanned"
msgstr ""
#: js/files.js:707
#: js/files.js:735
msgid "error while scanning"
msgstr ""
#: js/files.js:780 templates/index.php:66
#: js/files.js:808 templates/index.php:64
msgid "Name"
msgstr "Име"
#: js/files.js:781 templates/index.php:77
#: js/files.js:809 templates/index.php:75
msgid "Size"
msgstr "Размер"
#: js/files.js:782 templates/index.php:79
#: js/files.js:810 templates/index.php:77
msgid "Modified"
msgstr "Променено"
#: js/files.js:801
#: js/files.js:829
msgid "1 folder"
msgstr ""
#: js/files.js:803
#: js/files.js:831
msgid "{count} folders"
msgstr ""
#: js/files.js:811
#: js/files.js:839
msgid "1 file"
msgstr ""
#: js/files.js:813
#: js/files.js:841
msgid "{count} files"
msgstr ""
@ -203,7 +229,7 @@ msgstr ""
#: templates/admin.php:7
msgid "Maximum upload size"
msgstr "Макс. размер за качване"
msgstr "Максимален размер за качване"
#: templates/admin.php:10
msgid "max. possible: "
@ -219,7 +245,7 @@ msgstr ""
#: templates/admin.php:20
msgid "0 is unlimited"
msgstr "0 означава без ограничение"
msgstr "Ползвайте 0 за без ограничения"
#: templates/admin.php:22
msgid "Maximum input size for ZIP files"
@ -231,11 +257,11 @@ msgstr "Запис"
#: templates/index.php:7
msgid "New"
msgstr "Нов"
msgstr "Ново"
#: templates/index.php:10
msgid "Text file"
msgstr "Текстов файл"
msgstr ""
#: templates/index.php:12
msgid "Folder"
@ -245,36 +271,36 @@ msgstr "Папка"
msgid "From link"
msgstr ""
#: templates/index.php:35
#: templates/index.php:18
msgid "Upload"
msgstr "Качване"
#: templates/index.php:43
#: templates/index.php:41
msgid "Cancel upload"
msgstr "Отказване на качването"
msgstr ""
#: templates/index.php:58
#: templates/index.php:56
msgid "Nothing in here. Upload something!"
msgstr "Няма нищо, качете нещо!"
msgstr "Няма нищо тук. Качете нещо."
#: templates/index.php:72
#: templates/index.php:70
msgid "Download"
msgstr "Изтегляне"
#: templates/index.php:104
#: templates/index.php:102
msgid "Upload too large"
msgstr "Файлът е прекалено голям"
msgstr "Файлът който сте избрали за качване е прекалено голям"
#: templates/index.php:106
#: templates/index.php:104
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра."
msgstr ""
#: templates/index.php:111
#: templates/index.php:109
msgid "Files are being scanned, please wait."
msgstr "Файловете се претърсват, изчакайте."
msgstr ""
#: templates/index.php:114
#: templates/index.php:112
msgid "Current scanning"
msgstr ""

View File

@ -3,32 +3,33 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Stefan Ilivanov <ilivanov@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-08-13 23:12+0200\n"
"PO-Revision-Date: 2012-08-12 22:33+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 20:51+0000\n"
"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: templates/settings.php:3
msgid "Encryption"
msgstr ""
msgstr "Криптиране"
#: templates/settings.php:4
msgid "Exclude the following file types from encryption"
msgstr ""
#: templates/settings.php:5
msgid "None"
msgstr ""
#: templates/settings.php:10
#: templates/settings.php:6
msgid "Enable Encryption"
msgstr ""
msgstr "Включване на криптирането"
#: templates/settings.php:7
msgid "None"
msgstr "Няма"
#: templates/settings.php:12
msgid "Exclude the following file types from encryption"
msgstr "Изключване на следните файлови типове от криптирането"

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Stefan Ilivanov <ilivanov@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-13 00:17+0100\n"
"PO-Revision-Date: 2012-12-11 23:22+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 20:47+0000\n"
"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,7 +20,7 @@ msgstr ""
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
msgid "Access granted"
msgstr ""
msgstr "Достъпът е даден"
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
msgid "Error configuring Dropbox storage"
@ -27,11 +28,11 @@ msgstr ""
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
msgid "Grant access"
msgstr ""
msgstr "Даване на достъп"
#: js/dropbox.js:73 js/google.js:72
msgid "Fill out all required fields"
msgstr ""
msgstr "Попълнете всички задължителни полета"
#: js/dropbox.js:85
msgid "Please provide a valid Dropbox app key and secret."
@ -56,7 +57,7 @@ msgstr ""
#: templates/settings.php:3
msgid "External Storage"
msgstr ""
msgstr "Външно хранилище"
#: templates/settings.php:8 templates/settings.php:22
msgid "Mount point"
@ -64,15 +65,15 @@ msgstr ""
#: templates/settings.php:9
msgid "Backend"
msgstr ""
msgstr "Администрация"
#: templates/settings.php:10
msgid "Configuration"
msgstr ""
msgstr "Конфигурация"
#: templates/settings.php:11
msgid "Options"
msgstr ""
msgstr "Опции"
#: templates/settings.php:12
msgid "Applicable"
@ -84,11 +85,11 @@ msgstr ""
#: templates/settings.php:85
msgid "None set"
msgstr ""
msgstr "Няма избрано"
#: templates/settings.php:86
msgid "All Users"
msgstr ""
msgstr "Всички потребители"
#: templates/settings.php:87
msgid "Groups"
@ -96,25 +97,25 @@ msgstr "Групи"
#: templates/settings.php:95
msgid "Users"
msgstr ""
msgstr "Потребители"
#: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:149 templates/settings.php:150
#: templates/settings.php:144 templates/settings.php:145
msgid "Delete"
msgstr "Изтриване"
#: templates/settings.php:124
msgid "Enable User External Storage"
msgstr ""
msgstr "Вкл. на поддръжка за външно потр. хранилище"
#: templates/settings.php:125
msgid "Allow users to mount their own external storage"
msgstr ""
msgstr "Позволено е на потребителите да ползват тяхно лично външно хранилище"
#: templates/settings.php:139
#: templates/settings.php:136
msgid "SSL root certificates"
msgstr ""
msgstr "SSL основни сертификати"
#: templates/settings.php:158
#: templates/settings.php:153
msgid "Import Root Certificate"
msgstr ""
msgstr "Импортиране на основен сертификат"

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Stefan Ilivanov <ilivanov@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-09-22 01:14+0200\n"
"PO-Revision-Date: 2012-09-21 23:15+0000\n"
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 20:45+0000\n"
"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,30 +20,30 @@ msgstr ""
#: templates/authenticate.php:4
msgid "Password"
msgstr ""
msgstr "Парола"
#: templates/authenticate.php:6
msgid "Submit"
msgstr ""
msgstr "Потвърждение"
#: templates/public.php:9
#: templates/public.php:17
#, php-format
msgid "%s shared the folder %s with you"
msgstr ""
msgstr "%s сподели папката %s с Вас"
#: templates/public.php:11
#: templates/public.php:19
#, php-format
msgid "%s shared the file %s with you"
msgstr ""
msgstr "%s сподели файла %s с Вас"
#: templates/public.php:14 templates/public.php:30
#: templates/public.php:22 templates/public.php:38
msgid "Download"
msgstr ""
#: templates/public.php:29
msgid "No preview available for"
msgstr ""
msgstr "Изтегляне"
#: templates/public.php:37
msgid "No preview available for"
msgstr "Няма наличен преглед за"
#: templates/public.php:43
msgid "web services under your control"
msgstr ""
msgstr "уеб услуги под Ваш контрол"

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Stefan Ilivanov <ilivanov@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-09-22 01:14+0200\n"
"PO-Revision-Date: 2012-09-21 23:15+0000\n"
"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 20:49+0000\n"
"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,21 +18,21 @@ msgstr ""
"Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: js/settings-personal.js:31 templates/settings-personal.php:10
#: js/settings-personal.js:31 templates/settings-personal.php:7
msgid "Expire all versions"
msgstr ""
#: js/versions.js:16
msgid "History"
msgstr ""
msgstr "История"
#: templates/settings-personal.php:4
msgid "Versions"
msgstr ""
msgstr "Версии"
#: templates/settings-personal.php:7
#: templates/settings-personal.php:10
msgid "This will delete all existing backup versions of your files"
msgstr ""
msgstr "Това действие ще изтрие всички налични архивни версии на Вашите файлове"
#: templates/settings.php:3
msgid "Files Versioning"
@ -39,4 +40,4 @@ msgstr ""
#: templates/settings.php:4
msgid "Enable"
msgstr ""
msgstr "Включено"

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Stefan Ilivanov <ilivanov@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n"
"PO-Revision-Date: 2012-11-14 23:13+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 20:43+0000\n"
"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,136 +18,136 @@ msgstr ""
"Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr ""
msgstr "Помощ"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Лично"
msgstr "Лични"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr ""
msgstr "Настройки"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr ""
msgstr "Потребители"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr ""
msgstr "Приложения"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr ""
msgstr "Админ"
#: files.php:332
#: files.php:365
msgid "ZIP download is turned off."
msgstr ""
msgstr "Изтеглянето като ZIP е изключено."
#: files.php:333
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr ""
msgstr "Файловете трябва да се изтеглят един по един."
#: files.php:333 files.php:358
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr ""
msgstr "Назад към файловете"
#: files.php:357
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr ""
msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив."
#: json.php:28
msgid "Application is not enabled"
msgstr ""
msgstr "Приложението не е включено."
#: json.php:39 json.php:64 json.php:77 json.php:89
msgid "Authentication error"
msgstr "Проблем с идентификацията"
msgstr "Възникна проблем с идентификацията"
#: json.php:51
msgid "Token expired. Please reload page."
msgstr ""
msgstr "Ключът е изтекъл, моля презаредете страницата"
#: search/provider/file.php:17 search/provider/file.php:35
msgid "Files"
msgstr ""
msgstr "Файлове"
#: search/provider/file.php:26 search/provider/file.php:33
msgid "Text"
msgstr ""
msgstr "Текст"
#: search/provider/file.php:29
msgid "Images"
msgstr ""
msgstr "Снимки"
#: template.php:103
msgid "seconds ago"
msgstr ""
msgstr "преди секунди"
#: template.php:104
msgid "1 minute ago"
msgstr ""
msgstr "преди 1 минута"
#: template.php:105
#, php-format
msgid "%d minutes ago"
msgstr ""
msgstr "преди %d минути"
#: template.php:106
msgid "1 hour ago"
msgstr ""
msgstr "преди 1 час"
#: template.php:107
#, php-format
msgid "%d hours ago"
msgstr ""
msgstr "преди %d часа"
#: template.php:108
msgid "today"
msgstr ""
msgstr "днес"
#: template.php:109
msgid "yesterday"
msgstr ""
msgstr "вчера"
#: template.php:110
#, php-format
msgid "%d days ago"
msgstr ""
msgstr "преди %d дни"
#: template.php:111
msgid "last month"
msgstr ""
msgstr "последният месец"
#: template.php:112
#, php-format
msgid "%d months ago"
msgstr ""
msgstr "преди %d месеца"
#: template.php:113
msgid "last year"
msgstr ""
msgstr "последната година"
#: template.php:114
msgid "years ago"
msgstr ""
msgstr "последните години"
#: updater.php:75
#, php-format
msgid "%s is available. Get <a href=\"%s\">more information</a>"
msgstr ""
msgstr "%s е налична. Получете <a href=\"%s\">повече информация</a>"
#: updater.php:77
msgid "up to date"
msgstr ""
msgstr "е актуална"
#: updater.php:80
msgid "updates check is disabled"
msgstr ""
msgstr "проверката за обновления е изключена"
#: vcategories.php:188 vcategories.php:249
#, php-format
msgid "Could not find category \"%s\""
msgstr ""
msgstr "Невъзможно откриване на категорията \"%s\""

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-30 00:04+0100\n"
"PO-Revision-Date: 2012-12-29 23:05+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2011-07-25 16:05+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -38,19 +38,19 @@ msgstr ""
#: ajax/lostpassword.php:12
msgid "Email saved"
msgstr "Е-пощата е записана"
msgstr ""
#: ajax/lostpassword.php:14
msgid "Invalid email"
msgstr "Неправилна е-поща"
msgstr ""
#: ajax/openid.php:13
msgid "OpenID Changed"
msgstr "OpenID е сменено"
msgstr ""
#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20
msgid "Invalid request"
msgstr "Невалидна заявка"
msgstr ""
#: ajax/removegroup.php:13
msgid "Unable to delete group"
@ -58,7 +58,7 @@ msgstr ""
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
msgid "Authentication error"
msgstr "Проблем с идентификацията"
msgstr "Възникна проблем с идентификацията"
#: ajax/removeuser.php:24
msgid "Unable to delete user"
@ -66,7 +66,7 @@ msgstr ""
#: ajax/setlanguage.php:15
msgid "Language changed"
msgstr "Езика е сменен"
msgstr ""
#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
@ -84,15 +84,15 @@ msgstr ""
#: js/apps.js:28 js/apps.js:67
msgid "Disable"
msgstr "Изключване"
msgstr ""
#: js/apps.js:28 js/apps.js:55
msgid "Enable"
msgstr "Включване"
msgstr "Включено"
#: js/personal.js:69
msgid "Saving..."
msgstr "Записване..."
msgstr ""
#: personal.php:42 personal.php:43
msgid "__language_name__"
@ -108,7 +108,7 @@ msgstr ""
#: templates/apps.php:27
msgid "Select an App"
msgstr "Изберете програма"
msgstr ""
#: templates/apps.php:31
msgid "See application page at apps.owncloud.com"
@ -149,7 +149,7 @@ msgstr ""
#: templates/personal.php:12
msgid "Clients"
msgstr "Клиенти"
msgstr ""
#: templates/personal.php:13
msgid "Download Desktop Clients"
@ -173,43 +173,43 @@ msgstr ""
#: templates/personal.php:23
msgid "Unable to change your password"
msgstr "Невъзможна промяна на паролата"
msgstr ""
#: templates/personal.php:24
msgid "Current password"
msgstr "Текуща парола"
msgstr ""
#: templates/personal.php:25
msgid "New password"
msgstr "Нова парола"
msgstr ""
#: templates/personal.php:26
msgid "show"
msgstr "показва"
msgstr ""
#: templates/personal.php:27
msgid "Change password"
msgstr "Промяна на парола"
msgstr ""
#: templates/personal.php:33
msgid "Email"
msgstr "Е-поща"
msgstr "E-mail"
#: templates/personal.php:34
msgid "Your email address"
msgstr "Адресът на е-пощата ви"
msgstr ""
#: templates/personal.php:35
msgid "Fill in an email address to enable password recovery"
msgstr "Въведете е-поща за възстановяване на паролата"
msgstr ""
#: templates/personal.php:41 templates/personal.php:42
msgid "Language"
msgstr "Език"
msgstr ""
#: templates/personal.php:47
msgid "Help translate"
msgstr "Помощ за превода"
msgstr ""
#: templates/personal.php:52
msgid "WebDAV"
@ -243,7 +243,7 @@ msgstr "Групи"
#: templates/users.php:32
msgid "Create"
msgstr "Ново"
msgstr ""
#: templates/users.php:35
msgid "Default Storage"
@ -255,7 +255,7 @@ msgstr ""
#: templates/users.php:60 templates/users.php:153
msgid "Other"
msgstr "Друго"
msgstr ""
#: templates/users.php:85 templates/users.php:117
msgid "Group Admin"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-12-14 23:11+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2012-08-12 22:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -60,7 +60,7 @@ msgstr ""
#: templates/settings.php:18
msgid "Password"
msgstr ""
msgstr "Парола"
#: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty."
@ -180,4 +180,4 @@ msgstr ""
#: templates/settings.php:39
msgid "Help"
msgstr ""
msgstr "Помощ"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-20 00:11+0100\n"
"PO-Revision-Date: 2012-12-19 23:12+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-09 00:04+0100\n"
"PO-Revision-Date: 2012-11-09 09:06+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2013-01-02 09:32+0000\n"
"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n"
"POT-Creation-Date: 2013-01-07 00:04+0100\n"
"PO-Revision-Date: 2013-01-06 23:05+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -565,6 +565,11 @@ msgstr "পূর্ববর্তী"
msgid "next"
msgstr "পরবর্তী"
#: templates/update.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
msgstr ""
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "নিরাপত্তাবিষয়ক সতর্কবাণী"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
@ -18,6 +18,20 @@ msgstr ""
"Language: bn_BD\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/move.php:17
#, php-format
msgid "Could not move %s - File with this name already exists"
msgstr ""
#: ajax/move.php:24
#, php-format
msgid "Could not move %s"
msgstr ""
#: ajax/rename.php:19
msgid "Unable to rename file"
msgstr ""
#: ajax/upload.php:14
msgid "No file was uploaded. Unknown error"
msgstr ""
@ -65,11 +79,11 @@ msgstr ""
msgid "Files"
msgstr "ফাইল"
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83
msgid "Unshare"
msgstr "ভাগাভাগি বাতিল"
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89
msgid "Delete"
msgstr "মুছে ফেল"
@ -77,122 +91,134 @@ msgstr "মুছে ফেল"
msgid "Rename"
msgstr "পূনঃনামকরণ"
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "{new_name} already exists"
msgstr "{new_name} টি বিদ্যমান"
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "replace"
msgstr "প্রতিস্থাপন"
#: js/filelist.js:199
#: js/filelist.js:205
msgid "suggest name"
msgstr "নাম সুপারিশ কর"
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "cancel"
msgstr "বাতিল"
#: js/filelist.js:248
#: js/filelist.js:254
msgid "replaced {new_name}"
msgstr "{new_name} প্রতিস্থাপন করা হয়েছে"
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290
msgid "undo"
msgstr "ক্রিয়া প্রত্যাহার"
#: js/filelist.js:250
#: js/filelist.js:256
msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে"
#: js/filelist.js:282
#: js/filelist.js:288
msgid "unshared {files}"
msgstr "{files} ভাগাভাগি বাতিল কর"
#: js/filelist.js:284
#: js/filelist.js:290
msgid "deleted {files}"
msgstr "{files} মুছে ফেলা হয়েছে"
#: js/files.js:33
#: js/files.js:31
msgid "'.' is an invalid file name."
msgstr ""
#: js/files.js:36
msgid "File name cannot be empty."
msgstr ""
#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr ""
#: js/files.js:174
#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr ""
#: js/files.js:212
#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr ""
#: js/files.js:212
#: js/files.js:224
msgid "Upload Error"
msgstr "আপলোড করতে সমস্যা"
#: js/files.js:229
#: js/files.js:241
msgid "Close"
msgstr ""
#: js/files.js:248 js/files.js:362 js/files.js:392
#: js/files.js:260 js/files.js:376 js/files.js:409
msgid "Pending"
msgstr "মুলতুবি"
#: js/files.js:268
#: js/files.js:280
msgid "1 file uploading"
msgstr "১ টি ফাইল আপলোড করা হচ্ছে"
#: js/files.js:271 js/files.js:325 js/files.js:340
#: js/files.js:283 js/files.js:338 js/files.js:353
msgid "{count} files uploading"
msgstr ""
#: js/files.js:343 js/files.js:376
#: js/files.js:357 js/files.js:393
msgid "Upload cancelled."
msgstr "আপলোড বাতিল করা হয়েছে ।"
#: js/files.js:445
#: js/files.js:464
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr ""
#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
#: js/files.js:537
msgid "URL cannot be empty."
msgstr ""
#: js/files.js:699
#: js/files.js:543
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr ""
#: js/files.js:727
msgid "{count} files scanned"
msgstr ""
#: js/files.js:707
#: js/files.js:735
msgid "error while scanning"
msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে"
#: js/files.js:780 templates/index.php:66
#: js/files.js:808 templates/index.php:64
msgid "Name"
msgstr "নাম"
#: js/files.js:781 templates/index.php:77
#: js/files.js:809 templates/index.php:75
msgid "Size"
msgstr "আকার"
#: js/files.js:782 templates/index.php:79
#: js/files.js:810 templates/index.php:77
msgid "Modified"
msgstr "পরিবর্তিত"
#: js/files.js:801
#: js/files.js:829
msgid "1 folder"
msgstr ""
#: js/files.js:803
#: js/files.js:831
msgid "{count} folders"
msgstr ""
#: js/files.js:811
#: js/files.js:839
msgid "1 file"
msgstr ""
#: js/files.js:813
#: js/files.js:841
msgid "{count} files"
msgstr ""
@ -244,36 +270,36 @@ msgstr "ফোল্ডার"
msgid "From link"
msgstr ""
#: templates/index.php:35
#: templates/index.php:18
msgid "Upload"
msgstr "আপলোড"
#: templates/index.php:43
#: templates/index.php:41
msgid "Cancel upload"
msgstr "আপলোড বাতিল কর"
#: templates/index.php:58
#: templates/index.php:56
msgid "Nothing in here. Upload something!"
msgstr "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !"
#: templates/index.php:72
#: templates/index.php:70
msgid "Download"
msgstr "ডাউনলোড"
#: templates/index.php:104
#: templates/index.php:102
msgid "Upload too large"
msgstr "আপলোডের আকার অনেক বড়"
#: templates/index.php:106
#: templates/index.php:104
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr ""
#: templates/index.php:111
#: templates/index.php:109
msgid "Files are being scanned, please wait."
msgstr "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।"
#: templates/index.php:114
#: templates/index.php:112
msgid "Current scanning"
msgstr "বর্তমান স্ক্যানিং"

View File

@ -4,13 +4,13 @@
#
# Translators:
# <joan@montane.cat>, 2012.
# <rcalvoi@yahoo.com>, 2011-2012.
# <rcalvoi@yahoo.com>, 2011-2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-24 00:10+0100\n"
"PO-Revision-Date: 2012-12-23 14:22+0000\n"
"POT-Creation-Date: 2013-01-08 00:30+0100\n"
"PO-Revision-Date: 2013-01-07 09:01+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -566,6 +566,11 @@ msgstr "anterior"
msgid "next"
msgstr "següent"
#: templates/update.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
msgstr "S'està actualitzant ownCloud a la versió %s, pot trigar una estona."
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Avís de seguretat!"

View File

@ -7,15 +7,15 @@
# <joan@montane.cat>, 2012.
# <josep_tomas@hotmail.com>, 2012.
# Josep Tomàs <jtomas.binsoft@gmail.com>, 2012.
# <rcalvoi@yahoo.com>, 2011-2012.
# <rcalvoi@yahoo.com>, 2011-2013.
# <sacoo2@hotmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2013-01-04 14:32+0000\n"
"Last-Translator: aseques <sacoo2@hotmail.com>\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -23,6 +23,20 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/move.php:17
#, php-format
msgid "Could not move %s - File with this name already exists"
msgstr ""
#: ajax/move.php:24
#, php-format
msgid "Could not move %s"
msgstr ""
#: ajax/rename.php:19
msgid "Unable to rename file"
msgstr ""
#: ajax/upload.php:14
msgid "No file was uploaded. Unknown error"
msgstr "No s'ha carregat cap fitxer. Error desconegut"
@ -70,11 +84,11 @@ msgstr "Directori no vàlid."
msgid "Files"
msgstr "Fitxers"
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83
msgid "Unshare"
msgstr "Deixa de compartir"
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89
msgid "Delete"
msgstr "Suprimeix"
@ -82,122 +96,134 @@ msgstr "Suprimeix"
msgid "Rename"
msgstr "Reanomena"
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "{new_name} already exists"
msgstr "{new_name} ja existeix"
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "replace"
msgstr "substitueix"
#: js/filelist.js:199
#: js/filelist.js:205
msgid "suggest name"
msgstr "sugereix un nom"
#: js/filelist.js:199 js/filelist.js:201
#: js/filelist.js:205 js/filelist.js:207
msgid "cancel"
msgstr "cancel·la"
#: js/filelist.js:248
#: js/filelist.js:254
msgid "replaced {new_name}"
msgstr "s'ha substituït {new_name}"
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
#: js/filelist.js:254 js/filelist.js:256 js/filelist.js:288 js/filelist.js:290
msgid "undo"
msgstr "desfés"
#: js/filelist.js:250
#: js/filelist.js:256
msgid "replaced {new_name} with {old_name}"
msgstr "s'ha substituït {old_name} per {new_name}"
#: js/filelist.js:282
#: js/filelist.js:288
msgid "unshared {files}"
msgstr "no compartits {files}"
#: js/filelist.js:284
#: js/filelist.js:290
msgid "deleted {files}"
msgstr "eliminats {files}"
#: js/files.js:33
#: js/files.js:31
msgid "'.' is an invalid file name."
msgstr "'.' és un nom no vàlid per un fitxer."
#: js/files.js:36
msgid "File name cannot be empty."
msgstr "El nom del fitxer no pot ser buit."
#: js/files.js:45
msgid ""
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
"allowed."
msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos."
#: js/files.js:174
#: js/files.js:186
msgid "generating ZIP-file, it may take some time."
msgstr "s'estan generant fitxers ZIP, pot trigar una estona."
#: js/files.js:212
#: js/files.js:224
msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes"
#: js/files.js:212
#: js/files.js:224
msgid "Upload Error"
msgstr "Error en la pujada"
#: js/files.js:229
#: js/files.js:241
msgid "Close"
msgstr "Tanca"
#: js/files.js:248 js/files.js:362 js/files.js:392
#: js/files.js:260 js/files.js:376 js/files.js:409
msgid "Pending"
msgstr "Pendents"
#: js/files.js:268
#: js/files.js:280
msgid "1 file uploading"
msgstr "1 fitxer pujant"
#: js/files.js:271 js/files.js:325 js/files.js:340
#: js/files.js:283 js/files.js:338 js/files.js:353
msgid "{count} files uploading"
msgstr "{count} fitxers en pujada"
#: js/files.js:343 js/files.js:376
#: js/files.js:357 js/files.js:393
msgid "Upload cancelled."
msgstr "La pujada s'ha cancel·lat."
#: js/files.js:445
#: js/files.js:464
msgid ""
"File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà."
#: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud"
#: js/files.js:537
msgid "URL cannot be empty."
msgstr "La URL no pot ser buida"
#: js/files.js:699
#: js/files.js:543
msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud"
msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud"
#: js/files.js:727
msgid "{count} files scanned"
msgstr "{count} fitxers escannejats"
#: js/files.js:707
#: js/files.js:735
msgid "error while scanning"
msgstr "error durant l'escaneig"
#: js/files.js:780 templates/index.php:66
#: js/files.js:808 templates/index.php:64
msgid "Name"
msgstr "Nom"
#: js/files.js:781 templates/index.php:77
#: js/files.js:809 templates/index.php:75
msgid "Size"
msgstr "Mida"
#: js/files.js:782 templates/index.php:79
#: js/files.js:810 templates/index.php:77
msgid "Modified"
msgstr "Modificat"
#: js/files.js:801
#: js/files.js:829
msgid "1 folder"
msgstr "1 carpeta"
#: js/files.js:803
#: js/files.js:831
msgid "{count} folders"
msgstr "{count} carpetes"
#: js/files.js:811
#: js/files.js:839
msgid "1 file"
msgstr "1 fitxer"
#: js/files.js:813
#: js/files.js:841
msgid "{count} files"
msgstr "{count} fitxers"
@ -249,36 +275,36 @@ msgstr "Carpeta"
msgid "From link"
msgstr "Des d'enllaç"
#: templates/index.php:35
#: templates/index.php:18
msgid "Upload"
msgstr "Puja"
#: templates/index.php:43
#: templates/index.php:41
msgid "Cancel upload"
msgstr "Cancel·la la pujada"
#: templates/index.php:58
#: templates/index.php:56
msgid "Nothing in here. Upload something!"
msgstr "Res per aquí. Pugeu alguna cosa!"
#: templates/index.php:72
#: templates/index.php:70
msgid "Download"
msgstr "Baixa"
#: templates/index.php:104
#: templates/index.php:102
msgid "Upload too large"
msgstr "La pujada és massa gran"
#: templates/index.php:106
#: templates/index.php:104
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."
msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor"
#: templates/index.php:111
#: templates/index.php:109
msgid "Files are being scanned, please wait."
msgstr "S'estan escanejant els fitxers, espereu"
#: templates/index.php:114
#: templates/index.php:112
msgid "Current scanning"
msgstr "Actualment escanejant"

View File

@ -6,13 +6,13 @@
# Jan Krejci <krejca85@gmail.com>, 2011.
# Martin <fireball@atlas.cz>, 2011-2012.
# Michal Hrušecký <Michal@hrusecky.net>, 2012.
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012.
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-14 00:16+0100\n"
"PO-Revision-Date: 2012-12-13 09:04+0000\n"
"POT-Creation-Date: 2013-01-08 00:30+0100\n"
"PO-Revision-Date: 2013-01-07 06:20+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -165,8 +165,8 @@ msgid "The object type is not specified."
msgstr "Není určen typ objektu."
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
#: js/share.js:553
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
#: js/share.js:566
msgid "Error"
msgstr "Chyba"
@ -178,7 +178,7 @@ msgstr "Není určen název aplikace."
msgid "The required file {file} is not installed!"
msgstr "Požadovaný soubor {file} není nainstalován."
#: js/share.js:124 js/share.js:581
#: js/share.js:124 js/share.js:594
msgid "Error while sharing"
msgstr "Chyba při sdílení"
@ -206,11 +206,11 @@ msgstr "Sdílet s"
msgid "Share with link"
msgstr "Sdílet s odkazem"
#: js/share.js:164
#: js/share.js:166
msgid "Password protect"
msgstr "Chránit heslem"
#: js/share.js:168 templates/installation.php:42 templates/login.php:24
#: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13
msgid "Password"
msgstr "Heslo"
@ -275,23 +275,23 @@ msgstr "smazat"
msgid "share"
msgstr "sdílet"
#: js/share.js:353 js/share.js:528 js/share.js:530
#: js/share.js:356 js/share.js:541
msgid "Password protected"
msgstr "Chráněno heslem"
#: js/share.js:541
#: js/share.js:554
msgid "Error unsetting expiration date"
msgstr "Chyba při odstraňování data vypršení platnosti"
#: js/share.js:553
#: js/share.js:566
msgid "Error setting expiration date"
msgstr "Chyba při nastavení data vypršení platnosti"
#: js/share.js:568
#: js/share.js:581
msgid "Sending ..."
msgstr "Odesílám..."
#: js/share.js:579
#: js/share.js:592
msgid "Email sent"
msgstr "E-mail odeslán"
@ -315,8 +315,8 @@ msgstr "Obnovovací e-mail odeslán."
msgid "Request failed!"
msgstr "Požadavek selhal."
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
#: templates/login.php:20
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
#: templates/login.php:28
msgid "Username"
msgstr "Uživatelské jméno"
@ -405,44 +405,44 @@ msgstr "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přís
msgid "Create an <strong>admin account</strong>"
msgstr "Vytvořit <strong>účet správce</strong>"
#: templates/installation.php:48
#: templates/installation.php:50
msgid "Advanced"
msgstr "Pokročilé"
#: templates/installation.php:50
#: templates/installation.php:52
msgid "Data folder"
msgstr "Složka s daty"
#: templates/installation.php:57
#: templates/installation.php:59
msgid "Configure the database"
msgstr "Nastavit databázi"
#: templates/installation.php:62 templates/installation.php:73
#: templates/installation.php:83 templates/installation.php:93
#: templates/installation.php:64 templates/installation.php:75
#: templates/installation.php:85 templates/installation.php:95
msgid "will be used"
msgstr "bude použito"
#: templates/installation.php:105
#: templates/installation.php:107
msgid "Database user"
msgstr "Uživatel databáze"
#: templates/installation.php:109
#: templates/installation.php:111
msgid "Database password"
msgstr "Heslo databáze"
#: templates/installation.php:113
#: templates/installation.php:115
msgid "Database name"
msgstr "Název databáze"
#: templates/installation.php:121
#: templates/installation.php:123
msgid "Database tablespace"
msgstr "Tabulkový prostor databáze"
#: templates/installation.php:127
#: templates/installation.php:129
msgid "Database host"
msgstr "Hostitel databáze"
#: templates/installation.php:132
#: templates/installation.php:134
msgid "Finish setup"
msgstr "Dokončit nastavení"
@ -530,29 +530,29 @@ msgstr "webové služby pod Vaší kontrolou"
msgid "Log out"
msgstr "Odhlásit se"
#: templates/login.php:8
#: templates/login.php:10
msgid "Automatic logon rejected!"
msgstr "Automatické přihlášení odmítnuto."
#: templates/login.php:9
#: templates/login.php:11
msgid ""
"If you did not change your password recently, your account may be "
"compromised!"
msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován."
#: templates/login.php:10
#: templates/login.php:13
msgid "Please change your password to secure your account again."
msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu."
#: templates/login.php:15
#: templates/login.php:19
msgid "Lost your password?"
msgstr "Ztratili jste své heslo?"
#: templates/login.php:27
#: templates/login.php:39
msgid "remember"
msgstr "zapamatovat si"
#: templates/login.php:28
#: templates/login.php:41
msgid "Log in"
msgstr "Přihlásit"
@ -568,6 +568,11 @@ msgstr "předchozí"
msgid "next"
msgstr "následující"
#: templates/update.php:3
#, php-format
msgid "Updating ownCloud to version %s, this may take a while."
msgstr "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat."
#: templates/verify.php:5
msgid "Security Warning!"
msgstr "Bezpečnostní upozornění."

Some files were not shown because too many files have changed in this diff Show More