diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 5612716b7e..4ebc3f42d9 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -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)) ))); } diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index cb0bec399d..89b4d4bba7 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -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") ))); } diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 1713bcc22c..6a78a1e0d7 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -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(); diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 99c39f0acd..36a1e5c954 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -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; } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index fc37e03ba4..04b7d92e2c 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -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(); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index ac47f39082..81f596d664 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -26,17 +26,19 @@ Files={ }); procesSelection(); }, - isFileNameValid:function (name) { - if (name === '.') { - OC.Notification.show(t('files', "'.' is an invalid file name.")); - return false; - } - if (name.length == 0) { - OC.Notification.show(t('files', "File name cannot be empty.")); - 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) { @@ -252,12 +254,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;i0){ @@ -310,9 +312,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) { @@ -322,13 +324,14 @@ $(document).ready(function() { OC.Notification.show(t('files', response.data.message)); } 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); @@ -377,8 +380,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); OC.Notification.show(t('files', response.data.message)); $('#fileList > tr').not('[data-mime]').fadeOut(); $('#fileList > tr').not('[data-mime]').remove(); @@ -386,6 +391,7 @@ $(document).ready(function() { }) .error(function(jqXHR, textStatus, errorThrown) { if(errorThrown === 'abort') { + Files.cancelUpload(this.files[0].name); OC.Notification.show(t('files', 'Upload cancelled.')); } }); @@ -404,8 +410,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*/); OC.Notification.show(t('files', response.data.message)); $('#fileList > tr').not('[data-mime]').fadeOut(); $('#fileList > tr').not('[data-mime]').remove(); @@ -445,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; }; @@ -488,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('

'+$(element).data('text')+'

'); } }); @@ -507,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('

'+$(element).data('text')+'

'); } }); @@ -516,22 +524,31 @@ $(document).ready(function() { var text=$(this).children('p').text(); $(this).data('text',text); $(this).children('p').remove(); + var form=$('
'); var 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') { - OC.Notification.show(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud')); - return; + 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 false; + } else if (type != 'web' && !Files.isFileNameValid(newname)) { + return false; + } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { + OC.Notification.show(t('files','Invalid folder name. Usage of \'Shared\' is reserved by Owncloud')); + 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; @@ -575,7 +592,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 / @@ -614,8 +631,8 @@ $(document).ready(function() { }); break; } - var li=$(this).parent(); - $(this).remove(); + var li=form.parent(); + form.remove(); li.append('

'+li.data('text')+'

'); $('#new>a').click(); }); diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index b527b0e027..bc10979611 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -1,28 +1,22 @@ "Файлът е качен успешно", -"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" => "Файлът който сте избрали за качване е прекалено голям" ); diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 45cf1c2313..e55c881139 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -1,46 +1,71 @@ "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", +"Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", +"Unable to rename file" => "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না", +"No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।", "There is no error, the file uploaded with success" => "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে", -"The uploaded file was only partially uploaded" => "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে", +"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" => "ডিস্কে লিখতে পারা গেল না", +"Missing a temporary folder" => "অস্থায়ী ফোল্ডার খোয়া গিয়েছে", +"Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ", +"Not enough space available" => "যথেষ্ঠ পরিমাণ স্থান নেই", +"Invalid directory." => "ভুল ডিরেক্টরি", "Files" => "ফাইল", -"Unshare" => "ভাগাভাগি বাতিল", +"Unshare" => "ভাগাভাগি বাতিল ", "Delete" => "মুছে ফেল", "Rename" => "পূনঃনামকরণ", "{new_name} already exists" => "{new_name} টি বিদ্যমান", "replace" => "প্রতিস্থাপন", -"suggest name" => "নাম সুপারিশ কর", +"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} মুছে ফেলা হয়েছে", -"Upload Error" => "আপলোড করতে সমস্যা", +"'.' 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" => "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট", +"Upload Error" => "আপলোড করতে সমস্যা ", +"Close" => "বন্ধ", "Pending" => "মুলতুবি", -"1 file uploading" => "১ টি ফাইল আপলোড করা হচ্ছে", -"Upload cancelled." => "আপলোড বাতিল করা হয়েছে ।", +"1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে", +"{count} files uploading" => "{count} টি ফাইল আপলোড করা হচ্ছে", +"Upload cancelled." => "আপলোড বাতিল করা হয়েছে।", +"File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।", +"URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।", +"{count} files scanned" => "{count} টি ফাইল স্ক্যান করা হয়েছে", "error while scanning" => "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে", "Name" => "নাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", -"File handling" => "ফাইল হ্যান্ডলিং", +"1 folder" => "১টি ফোল্ডার", +"{count} folders" => "{count} টি ফোল্ডার", +"1 file" => "১টি ফাইল", +"{count} files" => "{count} টি ফাইল", +"File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", -"max. possible: " => "সম্ভাব্য সর্বোচ্চঃ", -"Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।", -"Enable ZIP-download" => "জিপ ডাউনলোড সক্রিয় কর", -"0 is unlimited" => "০ এর অর্থ হলো অসীম", -"Maximum input size for ZIP files" => "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট", -"Save" => "সংরক্ষণ কর", +"max. possible: " => "অনুমোদিত সর্বোচ্চ আকার", +"Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।", +"Enable ZIP-download" => "ZIP ডাউনলোড সক্রিয় কর", +"0 is unlimited" => "০ এর অর্থ অসীম", +"Maximum input size for ZIP files" => "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার", +"Save" => "সংরক্ষন কর", "New" => "নতুন", "Text file" => "টেক্সট ফাইল", "Folder" => "ফোল্ডার", +"From link" => " লিংক থেকে", "Upload" => "আপলোড", "Cancel upload" => "আপলোড বাতিল কর", -"Nothing in here. Upload something!" => "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !", +"Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !", "Download" => "ডাউনলোড", -"Upload too large" => "আপলোডের আকার অনেক বড়", -"Files are being scanned, please wait." => "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", +"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." => "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", "Current scanning" => "বর্তমান স্ক্যানিং" ); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 981b8ec7ec..f6ddbcd8e1 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,7 @@ "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", +"Could not move %s" => " No s'ha pogut moure %s", +"Unable to rename file" => "No es pot canviar el nom del fitxer", "No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut", "There is no error, the file uploaded with success" => "El fitxer s'ha pujat correctament", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:", @@ -22,6 +25,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 +37,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", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 958cb930e7..65ac4b0493 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,4 +1,7 @@ "Nelze přesunout %s - existuje soubor se stejným názvem", +"Could not move %s" => "Nelze přesunout %s", +"Unable to rename file" => "Nelze přejmenovat soubor", "No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba", "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:", @@ -7,6 +10,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 +25,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 +37,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", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index e2fd0c8c18..02c177a2f1 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -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", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 5f4778eb86..1c0af30be5 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -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", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 3ba3222907..a7526d3564 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -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", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 60be0bc7aa..3c1ac53809 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -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" => "Όνομα", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index c371334933..92c03ee882 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -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", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 2b9bdeeece..7489d3b555 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -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", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 9375954c02..6863f701e6 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -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", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 0dfc7b5bcd..6996b0a791 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -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", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index e141fa6572..96f59a668e 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -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", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 00f8ded516..e7e4b04437 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,4 +1,7 @@ "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", +"Could not move %s" => "Kohteen %s siirto ei onnistunut", +"Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut", "No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan", @@ -17,6 +20,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 +30,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 +49,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!", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 8ffb0d351f..f14759ff8f 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,7 @@ "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", +"Could not move %s" => "Impossible de déplacer %s", +"Unable to rename file" => "Impossible de renommer le fichier", "No file was uploaded. Unknown error" => "Aucun fichier n'a été chargé. Erreur inconnue", "There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été téléversé avec succès", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:", @@ -7,6 +10,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 +25,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 +37,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 +63,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.", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 0071b5b7dd..5bd30e95d1 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -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", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 971933f231..bac9a8a6a5 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -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" => "שם", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index cb06fe087e..b0d46ee7a2 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -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", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 1f8cb444d2..5d934e97e7 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -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", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index bca878873a..2eff686611 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -1,4 +1,8 @@ "Gat ekki fært %s - Skrá með þessu nafni er þegar til", +"Could not move %s" => "Gat ekki fært %s", +"Unable to rename file" => "Gat ekki endurskýrt skrá", +"No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", "There is no error, the file uploaded with success" => "Engin villa, innsending heppnaðist", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu.", @@ -6,6 +10,8 @@ "No file was uploaded" => "Engin skrá skilaði sér", "Missing a temporary folder" => "Vantar bráðabirgðamöppu", "Failed to write to disk" => "Tókst ekki að skrifa á disk", +"Not enough space available" => "Ekki nægt pláss tiltækt", +"Invalid directory." => "Ógild mappa.", "Files" => "Skrár", "Unshare" => "Hætta deilingu", "Delete" => "Eyða", @@ -19,6 +25,8 @@ "replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", "unshared {files}" => "Hætti við deilingu á {files}", "deleted {files}" => "eyddi {files}", +"'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", +"File name cannot be empty." => "Nafn skráar má ekki vera tómt", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", "generating ZIP-file, it may take some time." => "bý til ZIP skrá, það gæti tekið smá stund.", "Unable to upload your file as it is a directory or has 0 bytes" => "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti.", @@ -29,7 +37,8 @@ "{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.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud", "{count} files scanned" => "{count} skrár skimaðar", "error while scanning" => "villa við skimun", "Name" => "Nafn", @@ -53,9 +62,9 @@ "From link" => "Af tengli", "Upload" => "Senda inn", "Cancel upload" => "Hætta við innsendingu", -"Nothing in here. Upload something!" => "Ekkert hér. Sendu eitthvað inn!", +"Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!", "Download" => "Niðurhal", -"Upload too large" => "Innsend skrá of stór", +"Upload too large" => "Innsend skrá er of stór", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni.", "Files are being scanned, please wait." => "Verið er að skima skrár, vinsamlegast hinkraðu.", "Current scanning" => "Er að skima" diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 6c7ca59774..a54e424694 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,7 @@ "Impossibile spostare %s - un file con questo nome esiste già", +"Could not move %s" => "Impossibile spostare %s", +"Unable to rename file" => "Impossibile rinominare il file", "No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto", "There is no error, the file uploaded with success" => "Non ci sono errori, file caricato con successo", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:", @@ -22,6 +25,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 +37,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", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 29f4fd4eaf..4621cc5d4e 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,7 @@ "%s を移動できませんでした ― この名前のファイルはすでに存在します", +"Could not move %s" => "%s を移動できませんでした", +"Unable to rename file" => "ファイル名の変更ができません", "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 に設定されたサイズを超えています:", @@ -7,6 +10,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 +25,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 +37,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" => "名前", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index d0a6d57538..dd7df1c086 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -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" => "이름", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 49995f8df8..d6cf645079 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,5 +1,6 @@ "داخستن", +"URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Name" => "ناو", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 9eb11360fe..3f48a69874 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -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" => "Име", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index f97228ecd1..9be868164b 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -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", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 998caabf9f..77219abcf2 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -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", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index e485fdc6c3..b96048cf00 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -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", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 5f266bd7cd..ece24c7a2f 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -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", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 36c9d6e62a..fb22894b34 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,7 @@ "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", +"Could not move %s" => "Não foi possível move o ficheiro %s", +"Unable to rename file" => "Não foi possível renomear o ficheiro", "No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", "There is no error, the file uploaded with success" => "Sem erro, ficheiro enviado com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", @@ -22,6 +25,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 +37,8 @@ "{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.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud", "{count} files scanned" => "{count} ficheiros analisados", "error while scanning" => "erro ao analisar", "Name" => "Nome", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b09c8f39c8..b816311fac 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -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", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 403bd5c098..bbbeebc93d 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -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" => "Название", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index d7d3d37613..16bcc54e59 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -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" => "Имя", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index be33077f81..e1e06c4f81 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -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" => "ප්‍රමාණය", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 1043e7ae9d..003b1aff22 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -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", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index f07751073c..2a0f450638 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -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", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 48b258862b..ecde8be4cc 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -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" => "Назив", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 7cef4e19c4..7277ec1785 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -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", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index b68ad8f02c..16cab5cf96 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -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" => "பெயர்", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index f6b3b1c56f..3fda142a4e 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -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" => "ชื่อ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 80182d8ec8..b32da7de25 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -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", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 4daa2d628c..eba48a41cb 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -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" => "Ім'я", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index b14186d961..7d5c529050 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -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", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index cad4b95c6a..e60df8291a 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -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" => "名字", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 1188c25292..0b26a4b174 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -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" => "名称", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 7b55b54714..7f0f44baca 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,30 +1,45 @@ "沒有檔案被上傳. 未知的錯誤.", +"Could not move %s - File with this name already exists" => "無法移動 %s - 同名的檔案已經存在", +"Could not move %s" => "無法移動 %s", +"Unable to rename file" => "無法重新命名檔案", +"No file was uploaded. Unknown error" => "沒有檔案被上傳。未知的錯誤。", "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" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制", -"The uploaded file was only partially uploaded" => "只有部分檔案被上傳", +"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}", -"generating ZIP-file, it may take some time." => "產生壓縮檔, 它可能需要一段時間.", +"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", "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 所保留使用", +"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。", +"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" => "大小", @@ -34,22 +49,23 @@ "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", "File handling" => "檔案處理", -"Maximum upload size" => "最大上傳容量", -"max. possible: " => "最大允許: ", -"Needed for multi-file and folder downloads." => "針對多檔案和目錄下載是必填的", +"Maximum upload size" => "最大上傳檔案大小", +"max. possible: " => "最大允許:", +"Needed for multi-file and folder downloads." => "針對多檔案和目錄下載是必填的。", "Enable ZIP-download" => "啟用 Zip 下載", "0 is unlimited" => "0代表沒有限制", -"Maximum input size for ZIP files" => "針對ZIP檔案最大輸入大小", +"Maximum input size for ZIP files" => "針對 ZIP 檔案最大輸入大小", "Save" => "儲存", "New" => "新增", "Text file" => "文字檔", "Folder" => "資料夾", +"From link" => "從連結", "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." => "你試圖上傳的檔案已超過伺服器的最大容量限制。 ", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 ", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。", "Current scanning" => "目前掃描" ); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 5246ff1bea..77c06007da 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -14,7 +14,8 @@ data-type='web'>

t('From link');?>

-
+
- - - +
diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php new file mode 100644 index 0000000000..cb1613ef37 --- /dev/null +++ b/apps/files_encryption/l10n/bg_BG.php @@ -0,0 +1,6 @@ + "Криптиране", +"Enable Encryption" => "Включване на криптирането", +"None" => "Няма", +"Exclude the following file types from encryption" => "Изключване на следните файлови типове от криптирането" +); diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php new file mode 100644 index 0000000000..c8f041d762 --- /dev/null +++ b/apps/files_encryption/l10n/bn_BD.php @@ -0,0 +1,6 @@ + "সংকেতায়ন", +"Enable Encryption" => "সংকেতায়ন সক্রিয় কর", +"None" => "কোনটিই নয়", +"Exclude the following file types from encryption" => "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও" +); diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 4877958184..1f2c29d54c 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -1,4 +1,18 @@ "Достъпът е даден", +"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" => "Импортиране на основен сертификат" ); diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index ad983b52e4..a4a2b23030 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -1,6 +1,24 @@ "প্রশাসক", -"Groups" => "গোষ্ঠী", -"Users" => "ব্যবহারকারিবৃন্দ", -"Delete" => "মুছে ফেল" +"Access granted" => "অধিগমনের অনুমতি প্রদান করা হলো", +"Error configuring Dropbox storage" => "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", +"Grant access" => "অধিগমনের অনুমতি প্রদান কর", +"Fill out all required fields" => "আবশ্যিক সমস্ত ক্ষেত্র পূরণ করুন", +"Please provide a valid Dropbox app key and secret." => "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।", +"Error configuring Google Drive storage" => "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", +"External Storage" => "বাহ্যিক সংরক্ষণাগার", +"Mount point" => "মাউন্ট পয়েন্ট", +"Backend" => "পশ্চাদপট", +"Configuration" => "কনফিগারেসন", +"Options" => "বিকল্পসমূহ", +"Applicable" => "প্রযোজ্য", +"Add mount point" => "মাউন্ট পয়েন্ট যোগ কর", +"None set" => "কোনটিই নির্ধারণ করা হয় নি", +"All Users" => "সমস্ত ব্যবহারকারী", +"Groups" => "গোষ্ঠীসমূহ", +"Users" => "ব্যবহারকারী", +"Delete" => "মুছে ফেল", +"Enable User External Storage" => "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর", +"Allow users to mount their own external storage" => "ব্যবহারকারীদেরকে তাদের নিজস্ব বাহ্যিক সংরক্ষনাগার সাউন্ট করতে অনুমোদন দাও", +"SSL root certificates" => "SSL রুট সনদপত্র", +"Import Root Certificate" => "রুট সনদপত্রটি আমদানি করুন" ); diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 74a400303b..cb691cf5e3 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -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 드라이브 저장소 설정 오류", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "경고\"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유애 연결이 불가능 합니다.. 시스템 관리자에게 요청하여 설치하시기 바랍니다.", +"Warning: 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." => "경고PHP용 FTP 지원이 사용 불가능 하거나 설치되지 않았습니다. FTP 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. ", "External Storage" => "외부 저장소", "Mount point" => "마운트 지점", "Backend" => "백엔드", diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 68aca228bc..6c5bc579c3 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -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) { diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php new file mode 100644 index 0000000000..ac94358c4f --- /dev/null +++ b/apps/files_sharing/l10n/bg_BG.php @@ -0,0 +1,9 @@ + "Парола", +"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" => "уеб услуги под Ваш контрол" +); diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index 785dfcd2f1..c3af434ee2 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,6 +1,9 @@ "কূটশব্দ", -"Submit" => "পাঠাও", +"Submit" => "জমা দাও", +"%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", +"%s shared the file %s with you" => "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন", "Download" => "ডাউনলোড", -"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" +"No preview available for" => "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়", +"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" ); diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index fef0ed8a8c..487b9e7996 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -7,7 +7,7 @@ OC_App::loadApps(); // support will be removed in OC 5.0,a if (isset($_GET['token'])) { unset($_GET['file']); - $qry = \OC_DB::prepare('SELECT `source` FROM `*PREFIX*sharing` WHERE `target` = ? LIMIT 1'); + $qry = \OC_DB::prepare('SELECT `source` FROM `*PREFIX*sharing` WHERE `target` = ?', 1); $filepath = $qry->execute(array($_GET['token']))->fetchOne(); if(isset($filepath)) { $info = OC_FileCache_Cached::get($filepath, ''); @@ -16,7 +16,9 @@ if (isset($_GET['token'])) { } else { $_GET['file'] = $filepath; } - \OCP\Util::writeLog('files_sharing', 'You have files that are shared by link originating from ownCloud 4.0. Redistribute the new links, because backwards compatibility will be removed in ownCloud 5.', \OCP\Util::WARN); + \OCP\Util::writeLog('files_sharing', 'You have files that are shared by link originating from ownCloud 4.0.' + .' Redistribute the new links, because backwards compatibility will be removed in ownCloud 5.', + \OCP\Util::WARN); } } @@ -27,7 +29,10 @@ function getID($path) { $path_parts = explode('/', $path, 5); $user = $path_parts[1]; $intPath = '/'.$path_parts[4]; - $query = \OC_DB::prepare('SELECT `item_source` FROM `*PREFIX*share` WHERE `uid_owner` = ? AND `file_target` = ? '); + $query = \OC_DB::prepare('SELECT `item_source`' + .' FROM `*PREFIX*share`' + .' WHERE `uid_owner` = ?' + .' AND `file_target` = ? '); $result = $query->execute(array($user, $intPath)); $row = $result->fetchRow(); $fileSource = $row['item_source']; @@ -69,7 +74,8 @@ if (isset($_GET['t'])) { //if this is a reshare check the file owner also exists if ($shareOwner != $fileOwner && ! OCP\User::userExists($fileOwner)) { - OCP\Util::writeLog('share', 'original file owner '.$fileOwner.' does not exist for share '.$linkItem['id'], \OCP\Util::ERROR); + OCP\Util::writeLog('share', 'original file owner '.$fileOwner + .' does not exist for share '.$linkItem['id'], \OCP\Util::ERROR); header('HTTP/1.0 404 Not Found'); $tmpl = new OCP\Template('', '404', 'guest'); $tmpl->printPage(); @@ -134,7 +140,8 @@ if ($linkItem) { // Check Password $forcePortable = (CRYPT_BLOWFISH != 1); $hasher = new PasswordHash(8, $forcePortable); - if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), $linkItem['share_with']))) { + if (!($hasher->CheckPassword($password.OC_Config::getValue('passwordsalt', ''), + $linkItem['share_with']))) { $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); $tmpl->assign('URL', $url); $tmpl->assign('error', true); @@ -145,19 +152,25 @@ if ($linkItem) { $_SESSION['public_link_authenticated'] = $linkItem['id']; } } else { - OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'].' for share id '.$linkItem['id'], \OCP\Util::ERROR); + OCP\Util::writeLog('share', 'Unknown share type '.$linkItem['share_type'] + .' for share id '.$linkItem['id'], \OCP\Util::ERROR); header('HTTP/1.0 404 Not Found'); $tmpl = new OCP\Template('', '404', 'guest'); $tmpl->printPage(); exit(); } - // Check if item id is set in session - } else if (!isset($_SESSION['public_link_authenticated']) || $_SESSION['public_link_authenticated'] !== $linkItem['id']) { - // Prompt for password - $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); - $tmpl->assign('URL', $url); - $tmpl->printPage(); - exit(); + + } else { + // Check if item id is set in session + if (!isset($_SESSION['public_link_authenticated']) + || $_SESSION['public_link_authenticated'] !== $linkItem['id'] + ) { + // Prompt for password + $tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); + $tmpl->assign('URL', $url); + $tmpl->printPage(); + exit(); + } } } $basePath = substr($pathAndUser['path'], strlen('/'.$fileOwner.'/files')); @@ -203,7 +216,9 @@ if ($linkItem) { $getPath = ''; } // - $urlLinkIdentifiers= (isset($token)?'&t='.$token:'').(isset($_GET['dir'])?'&dir='.$_GET['dir']:'').(isset($_GET['file'])?'&file='.$_GET['file']:''); + $urlLinkIdentifiers= (isset($token)?'&t='.$token:'') + .(isset($_GET['dir'])?'&dir='.$_GET['dir']:'') + .(isset($_GET['file'])?'&file='.$_GET['file']:''); // Show file list if (OC_Filesystem::is_dir($path)) { OCP\Util::addStyle('files', 'files'); @@ -260,13 +275,16 @@ if ($linkItem) { $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $tmpl->assign('folder', $folder->fetchPage(), false); $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&download&path='.urlencode($getPath)); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') + .$urlLinkIdentifiers.'&download&path='.urlencode($getPath)); } else { // Show file preview if viewer is available if ($type == 'file') { - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&download'); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') + .$urlLinkIdentifiers.'&download'); } else { - $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&download&path='.urlencode($getPath)); + $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files') + .$urlLinkIdentifiers.'&download&path='.urlencode($getPath)); } } $tmpl->printPage(); diff --git a/apps/files_versions/l10n/bg_BG.php b/apps/files_versions/l10n/bg_BG.php new file mode 100644 index 0000000000..98b5f4113a --- /dev/null +++ b/apps/files_versions/l10n/bg_BG.php @@ -0,0 +1,6 @@ + "История", +"Versions" => "Версии", +"This will delete all existing backup versions of your files" => "Това действие ще изтрие всички налични архивни версии на Вашите файлове", +"Enable" => "Включено" +); diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php index d44ea13131..88349342fa 100644 --- a/apps/files_versions/l10n/bn_BD.php +++ b/apps/files_versions/l10n/bn_BD.php @@ -1,3 +1,8 @@ "সক্রিয়" +"Expire all versions" => "সমস্ত ভার্সন মেয়াদোত্তীর্ণ", +"History" => "ইতিহাস", +"Versions" => "ভার্সন", +"This will delete all existing backup versions of your files" => "এটি আপনার বিদ্যমান ফাইলের সমস্ত ব্যাক-আপ ভার্সন মুছে ফেলবে।", +"Files Versioning" => "ফাইল ভার্সন করা", +"Enable" => "সক্রিয় " ); diff --git a/apps/user_ldap/l10n/bg_BG.php b/apps/user_ldap/l10n/bg_BG.php new file mode 100644 index 0000000000..c064534a6b --- /dev/null +++ b/apps/user_ldap/l10n/bg_BG.php @@ -0,0 +1,4 @@ + "Парола", +"Help" => "Помощ" +); diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index eca40c171f..094b20cad2 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -1,4 +1,37 @@ "হোস্ট", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://", +"Base DN" => "ভিত্তি DN", +"You can specify Base DN for users and groups in the Advanced tab" => "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।", +"User DN" => "ব্যবহারকারি DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. পরিচয় গোপন রেখে অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", "Password" => "কূটশব্দ", +"For anonymous access, leave DN and Password empty." => "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।", +"User Login Filter" => "ব্যবহারকারির প্রবেশ ছাঁকনী", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "প্রবেশের চেষ্টা করার সময় প্রযোজ্য ছাঁকনীটি নির্ধারণ করবে। প্রবেশের সময় ব্যবহারকারী নামটি %%uid দিয়ে প্রতিস্থাপিত হবে।", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "%%uid স্থানধারক ব্যবহার করুন, উদাহরণঃ \"uid=%%uid\"", +"User List Filter" => "ব্যবহারকারী তালিকা ছাঁকনী", +"Defines the filter to apply, when retrieving users." => "ব্যবহারকারী উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।", +"without any placeholder, e.g. \"objectClass=person\"." => "কোন স্থানধারক ব্যতীত, যেমনঃ \"objectClass=person\"।", +"Group Filter" => "গোষ্ঠী ছাঁকনী", +"Defines the filter to apply, when retrieving groups." => "গোষ্ঠীসমূহ উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "কোন স্থান ধারক ব্যতীত, উদাহরণঃ\"objectClass=posixGroup\"।", +"Port" => "পোর্ট", +"Base User Tree" => "ভিত্তি ব্যবহারকারি বৃক্ষাকারে", +"Base Group Tree" => "ভিত্তি গোষ্ঠী বৃক্ষাকারে", +"Group-Member association" => "গোষ্ঠী-সদস্য সংস্থাপন", +"Use TLS" => "TLS ব্যবহার কর", +"Do not use it for SSL connections, it will fail." => "SSL সংযোগের জন্য এটি ব্যবহার করবেন না, তাহলে ব্যর্থ হবেনই।", +"Case insensitve LDAP server (Windows)" => "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)", +"Turn off SSL certificate validation." => "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "শুধুমাত্র যদি এই বিকল্পটি ব্যবহার করেই সংযোগ কার্যকরী হয় তবে আপনার ownCloud সার্ভারে LDAP সার্ভারের SSL সনদপত্রটি আমদানি করুন।", +"Not recommended, use for testing only." => "অনুমোদিত নয়, শুধুমাত্র পরীক্ষামূলক ব্যবহারের জন্য।", +"User Display Name Field" => "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র", +"The LDAP attribute to use to generate the user`s ownCloud name." => "ব্যবহারকারীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।", +"Group Display Name Field" => "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "গোষ্ঠীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।", +"in bytes" => "বাইটে", +"in seconds. A change empties the cache." => "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।", "Help" => "সহায়িকা" ); diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 14eb5837ce..577afcef1c 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -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", diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index aa775e42b1..37ac3d1bda 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "경고user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "경고PHP LDAP 모듈이 설치되지 않았습니다. 백엔드가 동작하지 않을 것 입니다. 시스템관리자에게 요청하여 해당 모듈을 설치하시기 바랍니다.", "Host" => "호스트", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", "Base DN" => "기본 DN", diff --git a/apps/user_webdavauth/l10n/bn_BD.php b/apps/user_webdavauth/l10n/bn_BD.php new file mode 100644 index 0000000000..773e7f7eb7 --- /dev/null +++ b/apps/user_webdavauth/l10n/bn_BD.php @@ -0,0 +1,4 @@ + "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 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." +); diff --git a/apps/user_webdavauth/l10n/ko.php b/apps/user_webdavauth/l10n/ko.php index 9bd32954b0..a806df750f 100644 --- a/apps/user_webdavauth/l10n/ko.php +++ b/apps/user_webdavauth/l10n/ko.php @@ -1,3 +1,4 @@ "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은 인증 오류로, 그 외 코드는 인증이 올바른 것으로 해석합니다." ); diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 839196c114..1459781a3b 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -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; diff --git a/core/css/styles.css b/core/css/styles.css index 6e1cef72ed..496320561f 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -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; } diff --git a/core/js/config.js b/core/js/config.js index f7a29276f7..563df4e663 100644 --- a/core/js/config.js +++ b/core/js/config.js @@ -50,6 +50,6 @@ OC.AppConfig={ }, deleteApp:function(app){ OC.AppConfig.postCall('deleteApp',{app:app}); - }, + } }; //TODO OC.Preferences diff --git a/core/js/js.js b/core/js/js.js index e2775fa722..10758a9072 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -375,8 +375,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{ @@ -647,7 +654,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}); diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 0033324cb1..a7cba523be 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -1,62 +1,19 @@ "Категорията вече съществува:", -"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 admin account" => "Създаване на админ профил", -"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" => "уеб услуги под Ваш контрол" ); diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index a335076138..a0322ffe23 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -1,12 +1,15 @@ "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন", "User %s shared a folder with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s", "Category type not provided." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।", "No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?", -"This category already exists: " => "এই ক্যাটেগরিটি বিদ্যমানঃ", +"This category already exists: " => "এই ক্যাটেগরিটি পূর্ব থেকেই বিদ্যমানঃ", "Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।", +"%s ID not provided." => "%s ID প্রদান করা হয় নি।", "Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।", -"No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।", +"No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি ।", "Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।", "Settings" => "নিয়ামকসমূহ", "seconds ago" => "সেকেন্ড পূর্বে", @@ -22,8 +25,8 @@ "months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", -"Choose" => "নির্বাচন", -"Cancel" => "বাতিল", +"Choose" => "বেছে নিন", +"Cancel" => "বাতির", "No" => "না", "Yes" => "হ্যাঁ", "Ok" => "তথাস্তু", @@ -31,64 +34,67 @@ "Error" => "সমস্যা", "The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", "The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !", -"Error while sharing" => "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে", -"Error while unsharing" => "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে", -"Error while changing permissions" => "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে", -"Share with" => "যাদের সাথে ভাগাভাগি করবে", -"Share with link" => "লিংক সহযোগে ভাগাভাগি", -"Password protect" => "কূটশব্দদ্বারা সুরক্ষিত", +"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" => "লিংকের সাথে ভাগাভাগি কর", +"Password protect" => "কূটশব্দ সুরক্ষিত", "Password" => "কূটশব্দ", "Email link to person" => "ব্যক্তির সাথে ই-মেইল যুক্ত কর", "Send" => "পাঠাও", "Set expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন", "Expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ", -"Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ", +"Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ", "No people found" => "কোন ব্যক্তি খুঁজে পাওয়া গেল না", -"Resharing is not allowed" => "পূনরায় ভাগাভাগি করার অনুমতি নেই", -"Unshare" => "ভাগাভাগি বাতিল", -"can edit" => "সম্পাদনা করতে পারবে", -"access control" => "অধিগম্যতার নিয়ন্ত্রণ", -"create" => "তৈরি কর", +"Resharing is not allowed" => "পূনঃরায় ভাগাভাগি অনুমোদিত নয়", +"Shared in {item} with {user}" => "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে", +"Unshare" => "ভাগাভাগি বাতিল কর", +"can edit" => "সম্পাদনা করতে পারবেন", +"access control" => "অধিগম্যতা নিয়ন্ত্রণ", +"create" => "তৈরী করুন", "update" => "পরিবর্ধন কর", "delete" => "মুছে ফেল", "share" => "ভাগাভাগি কর", "Password protected" => "কূটশব্দদ্বারা সুরক্ষিত", -"Error unsetting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা", -"Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা", +"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." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।", +"Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}", +"You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", "Reset email send." => "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।", "Request failed!" => "অনুরোধ ব্যর্থ !", -"Username" => "ব্যবহারকারি", -"Request reset" => "পূনঃনির্ধারণের জন্য অনুরোধ", -"Your password was reset" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে", -"To login page" => "প্রবেশ পাতায়", +"Username" => "ব্যবহারকারী", +"Request reset" => "অনুরোধ পূনঃনির্ধারণ", +"Your password was reset" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে", +"To login page" => "প্রবেশ পৃষ্ঠায়", "New password" => "নতুন কূটশব্দ", -"Reset password" => "কূটশব্দ পূনঃনির্ধারণ", +"Reset password" => "কূটশব্দ পূনঃনির্ধারণ কর", "Personal" => "ব্যক্তিগত", -"Users" => "ব্যবহারকারিবৃন্দ", +"Users" => "ব্যবহারকারী", "Apps" => "অ্যাপস", -"Admin" => "প্রশাসক", +"Admin" => "প্রশাসন", "Help" => "সহায়িকা", "Access forbidden" => "অধিগমনের অনুমতি নেই", "Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", "Edit categories" => "ক্যাটেগরি সম্পাদনা", "Add" => "যোগ কর", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা", -"Create an admin account" => "প্রশাসক একাউন্ট তৈরি কর", +"Create an admin account" => "প্রশাসক একাউন্ট তৈরী করুন", "Advanced" => "সুচারু", -"Data folder" => "ডাটা ফোল্ডার", -"Configure the database" => "ডাটাবেজ কনফিগার কর", +"Data folder" => "ডাটা ফোল্ডার ", +"Configure the database" => "ডাটাবেচ কনফিগার করুন", "will be used" => "ব্যবহৃত হবে", -"Database user" => "ডাটাবেজ ব্যবহারকারি", +"Database user" => "ডাটাবেজ ব্যবহারকারী", "Database password" => "ডাটাবেজ কূটশব্দ", "Database name" => "ডাটাবেজের নাম", -"Database tablespace" => "ডাটাবেজ টেবিলস্পেস", +"Database tablespace" => "ডাটাবেজ টেবলস্পেস", "Database host" => "ডাটাবেজ হোস্ট", -"Finish setup" => "সেট-আপ সুসম্পন্ন কর", +"Finish setup" => "সেটআপ সুসম্পন্ন কর", "Sunday" => "রবিবার", "Monday" => "সোমবার", "Tuesday" => "মঙ্গলবার", @@ -103,19 +109,20 @@ "May" => "মে", "June" => "জুন", "July" => "জুলাই", -"August" => "অগাস্ট", +"August" => "অগাষ্ট", "September" => "সেপ্টেম্বর", "October" => "অক্টোবর", "November" => "নভেম্বর", "December" => "ডিসেম্বর", -"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়", +"web services under your control" => "ওয়েব সার্ভিসের নিয়ন্ত্রণ আপনার হাতের মুঠোয়", "Log out" => "প্রস্থান", -"Lost your password?" => "আপনার কূটশব্দটি হারিয়েছেন ?", +"Lost your password?" => "কূটশব্দ হারিয়েছেন?", "remember" => "মনে রাখ", "Log in" => "প্রবেশ", -"You are logged out." => "আপনি প্রস্থান করেছেন", +"You are logged out." => "আপনি প্রস্থান করেছেন।", "prev" => "পূর্ববর্তী", "next" => "পরবর্তী", +"Updating ownCloud to version %s, this may take a while." => "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।", "Security Warning!" => "নিরাপত্তাবিষয়ক সতর্কবাণী", "Verify" => "যাচাই কর" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index f98922f8f3..c4e134cdf3 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Comproveu la vostra contrasenya.
Per raons de seguretat se us pot demanar escriure de nou la vostra contrasenya.", "Verify" => "Comprova" diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 96252ea8bb..3a15bd1ae9 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Ověřte, prosím, své heslo.
Z bezpečnostních důvodů můžete být občas požádáni o jeho opětovné zadání.", "Verify" => "Ověřit" diff --git a/core/l10n/de.php b/core/l10n/de.php index c5867eda8c..9c80d1cb14 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Bitte bestätige Dein Passwort.
Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben.", "Verify" => "Bestätigen" diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index ed0bc0e0ff..777725b2cd 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Bitte überprüfen Sie Ihr Passwort.
Aus Sicherheitsgründen werden Sie gelegentlich aufgefordert, Ihr Passwort erneut einzugeben.", "Verify" => "Überprüfen" diff --git a/core/l10n/es.php b/core/l10n/es.php index 2a9f5682df..bc72944340 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique su contraseña.
Por razones de seguridad se le puede volver a preguntar ocasionalmente la contraseña.", "Verify" => "Verificar" diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 6b1449dd4b..8777309d9b 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Veuillez vérifier votre mot de passe.
Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau.", "Verify" => "Vérification" diff --git a/core/l10n/is.php b/core/l10n/is.php index 53b2fe8883..e820b655d5 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -4,7 +4,7 @@ "User %s shared the file \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s", "Category type not provided." => "Flokkur ekki gefin", -"No category to add?" => "Enginn flokkur til að bæta við?", +"No category to add?" => "Enginn flokkur til að bæta við?", "This category already exists: " => "Þessi flokkur er þegar til:", "Object type not provided." => "Tegund ekki í boði.", "%s ID not provided." => "%s ID ekki í boði.", @@ -31,7 +31,7 @@ "Yes" => "Já", "Ok" => "Í lagi", "The object type is not specified." => "Tegund ekki tilgreind", -"Error" => "Villa", +"Error" => "Villa", "The app name is not specified." => "Nafn forrits ekki tilgreint", "The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!", "Error while sharing" => "Villa við deilingu", @@ -63,7 +63,7 @@ "Error setting expiration date" => "Villa við að setja gildistíma", "Sending ..." => "Sendi ...", "Email sent" => "Tölvupóstur sendur", -"ownCloud password reset" => "endursetja ownCloud lykilorð", +"ownCloud password reset" => "endursetja ownCloud lykilorð", "Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}", "You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.", "Reset email send." => "Beiðni um endursetningu send.", @@ -78,9 +78,9 @@ "Users" => "Notendur", "Apps" => "Forrit", "Admin" => "Vefstjórn", -"Help" => "Help", +"Help" => "Hjálp", "Access forbidden" => "Aðgangur bannaður", -"Cloud not found" => "Skýið finnst eigi", +"Cloud not found" => "Ský finnst ekki", "Edit categories" => "Breyta flokkum", "Add" => "Bæta", "Security Warning" => "Öryggis aðvörun", @@ -92,12 +92,12 @@ "Data folder" => "Gagnamappa", "Configure the database" => "Stilla gagnagrunn", "will be used" => "verður notað", -"Database user" => "Notandi gagnagrunns", -"Database password" => "Lykilorð gagnagrunns", +"Database user" => "Gagnagrunns notandi", +"Database password" => "Gagnagrunns lykilorð", "Database name" => "Nafn gagnagrunns", "Database tablespace" => "Töflusvæði gagnagrunns", "Database host" => "Netþjónn gagnagrunns", -"Finish setup" => "Ljúka uppsetningu", +"Finish setup" => "Virkja uppsetningu", "Sunday" => "Sunnudagur", "Monday" => "Mánudagur", "Tuesday" => "Þriðjudagur", @@ -128,6 +128,7 @@ "You are logged out." => "Þú ert útskráð(ur).", "prev" => "fyrra", "next" => "næsta", +"Updating ownCloud to version %s, this may take a while." => "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund.", "Security Warning!" => "Öryggis aðvörun!", "Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "Vinsamlegast staðfestu lykilorðið þitt.
Í öryggisskyni munum við biðja þig um að skipta um lykilorð af og til.", "Verify" => "Staðfesta" diff --git a/core/l10n/it.php b/core/l10n/it.php index e97deb9fb5..952ae4d06b 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Verifica la tua password.
Per motivi di sicurezza, potresti ricevere una richiesta di digitare nuovamente la password.", "Verify" => "Verifica" diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 72615d36f6..46d40e2e73 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "パスワードの確認
セキュリティ上の理由によりパスワードの再入力をお願いします。", "Verify" => "確認" diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 3846dff796..4b7df81fa8 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,4 +1,8 @@ "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.
For security reasons you may be occasionally asked to enter your password again." => "암호를 확인해 주십시오.
보안상의 이유로 종종 암호를 물어볼 것입니다.", "Verify" => "확인" diff --git a/core/l10n/nl.php b/core/l10n/nl.php index c3f5c88765..726dbf2016 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Verifieer uw wachtwoord!
Om veiligheidsredenen wordt u regelmatig gevraagd uw wachtwoord in te geven.", "Verify" => "Verifieer" diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 1208aec5a5..5758afc09b 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Sprawdź swoje hasło.
Ze względów bezpieczeństwa możesz zostać czasami poproszony o wprowadzenie hasła ponownie.", "Verify" => "Zweryfikowane" diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index a2bfcf4f88..d09344fe14 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique a sua palavra-passe.
Por razões de segurança, pode ser-lhe perguntada, ocasionalmente, a sua palavra-passe de novo.", "Verify" => "Verificar" diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a7698fb30c..7020e4b28d 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -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.
For security reasons you may be occasionally asked to enter your password again." => "Bekräfta ditt lösenord.
Av säkerhetsskäl kan du ibland bli ombedd att ange ditt lösenord igen.", "Verify" => "Verifiera" diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 45c7596e60..0df7ee4278 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,14 +1,22 @@ "無分類添加?", -"This category already exists: " => "此分類已經存在:", +"User %s shared a file with you" => "用戶 %s 與您分享了一個檔案", +"User %s shared a folder with you" => "用戶 %s 與您分享了一個資料夾", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s", +"Category type not provided." => "未提供分類類型。", +"No category to add?" => "沒有可增加的分類?", +"This category already exists: " => "此分類已經存在:", "Object type not provided." => "不支援的物件類型", -"No categories selected for deletion." => "沒選擇要刪除的分類", +"%s ID not provided." => "未提供 %s ID 。", +"Error adding %s to favorites." => "加入 %s 到最愛時發生錯誤。", +"No categories selected for deletion." => "沒有選擇要刪除的分類。", +"Error removing %s from favorites." => "從最愛移除 %s 時發生錯誤。", "Settings" => "設定", "seconds ago" => "幾秒前", "1 minute ago" => "1 分鐘前", "{minutes} minutes ago" => "{minutes} 分鐘前", "1 hour ago" => "1 個小時前", -"{hours} hours ago" => "{hours} 個小時前", +"{hours} hours ago" => "{hours} 小時前", "today" => "今天", "yesterday" => "昨天", "{days} days ago" => "{days} 天前", @@ -22,18 +30,26 @@ "No" => "No", "Yes" => "Yes", "Ok" => "Ok", +"The object type is not specified." => "未指定物件類型。", "Error" => "錯誤", -"The app name is not specified." => "沒有詳述APP名稱.", +"The app name is not specified." => "沒有指定 app 名稱。", +"The required file {file} is not installed!" => "沒有安裝所需的檔案 {file} !", "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" => "與...分享", "Share with link" => "使用連結分享", "Password protect" => "密碼保護", "Password" => "密碼", +"Email link to person" => "將連結 email 給別人", +"Send" => "寄出", "Set expiration date" => "設置到期日", "Expiration date" => "到期日", -"Share via email:" => "透過email分享:", +"Share via email:" => "透過 email 分享:", +"No people found" => "沒有找到任何人", +"Resharing is not allowed" => "不允許重新分享", "Shared in {item} with {user}" => "已和 {user} 分享 {item}", "Unshare" => "取消共享", "can edit" => "可編輯", @@ -42,15 +58,18 @@ "update" => "更新", "delete" => "刪除", "share" => "分享", -"Password protected" => "密碼保護", +"Password protected" => "受密碼保護", +"Error unsetting expiration date" => "解除過期日設定失敗", "Error setting expiration date" => "錯誤的到期日設定", +"Sending ..." => "正在寄出...", +"Email sent" => "Email 已寄出", "ownCloud password reset" => "ownCloud 密碼重設", -"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", -"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱", -"Reset email send." => "重設郵件已送出.", -"Request failed!" => "請求失敗!", +"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: {link}", +"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", +"Reset email send." => "重設郵件已送出。", +"Request failed!" => "請求失敗!", "Username" => "使用者名稱", -"Request reset" => "要求重設", +"Request reset" => "請求重設", "Your password was reset" => "你的密碼已重設", "To login page" => "至登入頁面", "New password" => "新密碼", @@ -60,12 +79,14 @@ "Apps" => "應用程式", "Admin" => "管理者", "Help" => "幫助", -"Access forbidden" => "禁止存取", +"Access forbidden" => "存取被拒", "Cloud not found" => "未發現雲", "Edit categories" => "編輯分類", -"Add" => "添加", +"Add" => "增加", "Security Warning" => "安全性警告", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充功能.", +"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 admin account" => "建立一個管理者帳號", "Advanced" => "進階", "Data folder" => "資料夾", @@ -96,14 +117,19 @@ "October" => "十月", "November" => "十一月", "December" => "十二月", -"web services under your control" => "網路服務已在你控制", +"web services under your control" => "網路服務在您控制之下", "Log out" => "登出", -"Lost your password?" => "忘記密碼?", +"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" => "登入", "You are logged out." => "你已登出", "prev" => "上一頁", "next" => "下一頁", -"Security Warning!" => "安全性警告!", +"Updating ownCloud to version %s, this may take a while." => "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。", +"Security Warning!" => "安全性警告!", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "請輸入您的密碼。
基於安全性的理由,您有時候可能會被要求再次輸入密碼。", "Verify" => "驗證" ); diff --git a/core/templates/installation.php b/core/templates/installation.php index 28fbf29b54..3128c4f2e7 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -113,7 +113,7 @@

- +

diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 0785bd05e6..9400ec3432 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -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 \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 \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 "تحذير أمان!" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 5d25164f50..b57cae5c40 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -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 \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 "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index f40f16cbec..dc719e9d36 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -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 \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 \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 admin account" -msgstr "Създаване на админ профил" - -#: 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!" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 9ef621af1e..14ac7f3c7b 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Stefan Ilivanov , 2011. +# Stefan Ilivanov , 2011,2013. # Yasen Pramatarov , 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 \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 "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 0db200dba5..c5aca629ed 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -3,32 +3,33 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 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 \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 \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 "Изключване на следните файлови типове от криптирането" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index d4483eadff..656df3768c 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 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 \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 \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 "Импортиране на основен сертификат" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 3e75975fb6..0d7fe218e8 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 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 \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 \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 "уеб услуги под Ваш контрол" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index df3fc29945..0b1e6c0527 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 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 \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 \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 "Включено" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 3ba99f9b10..516eee347a 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Ilivanov , 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 \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 \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 more information" -msgstr "" +msgstr "%s е налична. Получете повече информация" #: 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\"" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 37e75b3725..1e14fd56cd 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -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 \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 \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" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 7d102e98bd..e45d6efc2f 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -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 \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 \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 "Помощ" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index b77ffa970b..05f8507380 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -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 \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 \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" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 76af85b64d..1d77bebb0e 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -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-03 00:04+0100\n" -"PO-Revision-Date: 2013-01-02 09:32+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 09:57+0000\n" "Last-Translator: Shubhra Paul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -33,14 +33,14 @@ msgstr "%s নামের ব্যবহারকারি আপনার স msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -52,7 +52,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 @@ -64,7 +64,7 @@ msgstr "অবজেক্টের ধরণটি প্রদান করা #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID প্রদান করা হয় নি।" #: ajax/vcategories/addToFavorites.php:35 #, php-format @@ -73,7 +73,7 @@ msgstr "প্রিয়তে %s যোগ করতে সমস্যা দ #: 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 @@ -84,65 +84,65 @@ msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সম msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 মিনিট পূর্বে" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "আজ" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "গতমাস" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "গত বছর" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "বছর পূর্বে" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "নির্বাচন" +msgstr "বেছে নিন" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" -msgstr "বাতিল" +msgstr "বাতির" #: js/oc-dialogs.js:162 msgid "No" @@ -177,35 +177,35 @@ msgstr "আবশ্যিক {file} টি সংস্থাপিত নে #: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে" +msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " #: js/share.js:135 msgid "Error while unsharing" -msgstr "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে" +msgstr "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে" +msgstr "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" #: js/share.js:158 msgid "Share with" -msgstr "যাদের সাথে ভাগাভাগি করবে" +msgstr "যাদের সাথে ভাগাভাগি করা হয়েছে" #: js/share.js:163 msgid "Share with link" -msgstr "লিংক সহযোগে ভাগাভাগি" +msgstr "লিংকের সাথে ভাগাভাগি কর" #: js/share.js:166 msgid "Password protect" -msgstr "কূটশব্দদ্বারা সুরক্ষিত" +msgstr "কূটশব্দ সুরক্ষিত" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 @@ -230,7 +230,7 @@ msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" #: js/share.js:210 msgid "Share via email:" -msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ" +msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" #: js/share.js:212 msgid "No people found" @@ -238,27 +238,27 @@ msgstr "কোন ব্যক্তি খুঁজে পাওয়া গে #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "পূনরায় ভাগাভাগি করার অনুমতি নেই" +msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" #: js/share.js:296 msgid "Unshare" -msgstr "ভাগাভাগি বাতিল" +msgstr "ভাগাভাগি বাতিল কর" #: js/share.js:308 msgid "can edit" -msgstr "সম্পাদনা করতে পারবে" +msgstr "সম্পাদনা করতে পারবেন" #: js/share.js:310 msgid "access control" -msgstr "অধিগম্যতার নিয়ন্ত্রণ" +msgstr "অধিগম্যতা নিয়ন্ত্রণ" #: js/share.js:313 msgid "create" -msgstr "তৈরি কর" +msgstr "তৈরী করুন" #: js/share.js:316 msgid "update" @@ -278,11 +278,11 @@ msgstr "কূটশব্দদ্বারা সুরক্ষিত" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" #: js/share.js:566 msgid "Error setting expiration date" -msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা" +msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" #: js/share.js:581 msgid "Sending ..." @@ -298,11 +298,11 @@ msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}" +msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}" #: 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,19 +315,19 @@ msgstr "অনুরোধ ব্যর্থ !" #: 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" -msgstr "প্রবেশ পাতায়" +msgstr "প্রবেশ পৃষ্ঠায়" #: lostpassword/templates/resetpassword.php:8 msgid "New password" @@ -335,7 +335,7 @@ msgstr "নতুন কূটশব্দ" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "কূটশব্দ পূনঃনির্ধারণ" +msgstr "কূটশব্দ পূনঃনির্ধারণ কর" #: strings.php:5 msgid "Personal" @@ -343,7 +343,7 @@ msgstr "ব্যক্তিগত" #: strings.php:6 msgid "Users" -msgstr "ব্যবহারকারিবৃন্দ" +msgstr "ব্যবহারকারী" #: strings.php:7 msgid "Apps" @@ -351,7 +351,7 @@ msgstr "অ্যাপস" #: strings.php:8 msgid "Admin" -msgstr "প্রশাসক" +msgstr "প্রশাসন" #: strings.php:9 msgid "Help" @@ -400,7 +400,7 @@ msgstr "" #: templates/installation.php:36 msgid "Create an admin account" -msgstr "প্রশাসক একাউন্ট তৈরি কর" +msgstr "প্রশাসক একাউন্ট তৈরী করুন" #: templates/installation.php:50 msgid "Advanced" @@ -408,11 +408,11 @@ msgstr "সুচারু" #: templates/installation.php:52 msgid "Data folder" -msgstr "ডাটা ফোল্ডার" +msgstr "ডাটা ফোল্ডার " #: templates/installation.php:59 msgid "Configure the database" -msgstr "ডাটাবেজ কনফিগার কর" +msgstr "ডাটাবেচ কনফিগার করুন" #: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:85 templates/installation.php:95 @@ -421,7 +421,7 @@ msgstr "ব্যবহৃত হবে" #: templates/installation.php:107 msgid "Database user" -msgstr "ডাটাবেজ ব্যবহারকারি" +msgstr "ডাটাবেজ ব্যবহারকারী" #: templates/installation.php:111 msgid "Database password" @@ -433,7 +433,7 @@ msgstr "ডাটাবেজের নাম" #: templates/installation.php:123 msgid "Database tablespace" -msgstr "ডাটাবেজ টেবিলস্পেস" +msgstr "ডাটাবেজ টেবলস্পেস" #: templates/installation.php:129 msgid "Database host" @@ -441,7 +441,7 @@ msgstr "ডাটাবেজ হোস্ট" #: templates/installation.php:134 msgid "Finish setup" -msgstr "সেট-আপ সুসম্পন্ন কর" +msgstr "সেটআপ সুসম্পন্ন কর" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" @@ -501,7 +501,7 @@ 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" @@ -521,7 +521,7 @@ msgstr "ডিসেম্বর" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" +msgstr "ওয়েব সার্ভিসের নিয়ন্ত্রণ আপনার হাতের মুঠোয়" #: templates/layout.user.php:45 msgid "Log out" @@ -543,7 +543,7 @@ msgstr "" #: templates/login.php:19 msgid "Lost your password?" -msgstr "আপনার কূটশব্দটি হারিয়েছেন ?" +msgstr "কূটশব্দ হারিয়েছেন?" #: templates/login.php:39 msgid "remember" @@ -555,7 +555,7 @@ msgstr "প্রবেশ" #: templates/logout.php:1 msgid "You are logged out." -msgstr "আপনি প্রস্থান করেছেন" +msgstr "আপনি প্রস্থান করেছেন।" #: templates/part.pagenavi.php:3 msgid "prev" @@ -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 "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "নিরাপত্তাবিষয়ক সতর্কবাণী" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 9954cd477f..33908fc14e 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -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-04 13:22+0100\n" -"PO-Revision-Date: 2013-01-04 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:05+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -18,9 +18,23 @@ 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 "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -29,17 +43,17 @@ msgstr "কোন সমস্যা নেই, ফাইল আপলোড স #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" #: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "আপলোড করা ফাইলটি HTML ফর্মে নির্ধারিত MAX_FILE_SIZE নির্দেশিত সর্বোচ্চ আকার অতিক্রম করেছে " #: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে" +msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" #: ajax/upload.php:27 msgid "No file was uploaded" @@ -47,29 +61,29 @@ 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" -msgstr "" +msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "ভুল ডিরেক্টরি" #: appinfo/app.php:10 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 "ভাগাভাগি বাতিল" +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,128 +91,140 @@ 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 "নাম সুপারিশ কর" +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 "" +msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIP- ফাইল তৈরী করা হচ্ছে, এজন্য কিছু সময় আবশ্যক।" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +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 "" +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 "১ টি ফাইল আপলোড করা হচ্ছে" +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 "" +msgstr "{count} টি ফাইল আপলোড করা হচ্ছে" -#: 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 "" +msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL ফাঁকা রাখা যাবে না।" -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" + +#: js/files.js:727 msgid "{count} files scanned" -msgstr "" +msgstr "{count} টি ফাইল স্ক্যান করা হয়েছে" -#: 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 "" +msgstr "১টি ফোল্ডার" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" -msgstr "" +msgstr "{count} টি ফোল্ডার" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" -msgstr "" +msgstr "১টি ফাইল" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" -msgstr "" +msgstr "{count} টি ফাইল" #: templates/admin.php:5 msgid "File handling" -msgstr "ফাইল হ্যান্ডলিং" +msgstr "ফাইল হ্যার্ডলিং" #: templates/admin.php:7 msgid "Maximum upload size" @@ -206,27 +232,27 @@ msgstr "আপলোডের সর্বোচ্চ আকার" #: templates/admin.php:10 msgid "max. possible: " -msgstr "সম্ভাব্য সর্বোচ্চঃ" +msgstr "অনুমোদিত সর্বোচ্চ আকার" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।" +msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "জিপ ডাউনলোড সক্রিয় কর" +msgstr "ZIP ডাউনলোড সক্রিয় কর" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "০ এর অর্থ হলো অসীম" +msgstr "০ এর অর্থ অসীম" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট" +msgstr "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার" #: templates/admin.php:26 msgid "Save" -msgstr "সংরক্ষণ কর" +msgstr "সংরক্ষন কর" #: templates/index.php:7 msgid "New" @@ -242,38 +268,38 @@ msgstr "ফোল্ডার" #: templates/index.php:14 msgid "From link" -msgstr "" +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 "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !" +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 "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index da32933e27..8c13e55a14 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:15+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -19,16 +19,16 @@ msgstr "" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "সংকেতায়ন" #: templates/settings.php:6 msgid "Enable Encryption" -msgstr "" +msgstr "সংকেতায়ন সক্রিয় কর" #: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "কোনটিই নয়" #: templates/settings.php:12 msgid "Exclude the following file types from encryption" -msgstr "" +msgstr "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 601f3807ce..fc11b94750 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,9 +7,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: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:28+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -19,27 +19,27 @@ 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" -msgstr "" +msgstr "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা " #: 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." -msgstr "" +msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।" #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " #: lib/config.php:434 msgid "" @@ -56,47 +56,47 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "বাহ্যিক সংরক্ষণাগার" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" -msgstr "" +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" -msgstr "" +msgstr "প্রযোজ্য" #: templates/settings.php:27 msgid "Add mount point" -msgstr "" +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" -msgstr "গোষ্ঠী" +msgstr "গোষ্ঠীসমূহ" #: templates/settings.php:95 msgid "Users" -msgstr "ব্যবহারকারিবৃন্দ" +msgstr "ব্যবহারকারী" #: templates/settings.php:108 templates/settings.php:109 #: templates/settings.php:144 templates/settings.php:145 @@ -105,16 +105,16 @@ 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:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL রুট সনদপত্র" #: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "রুট সনদপত্রটি আমদানি করুন" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 69c55d6248..55a97e9d95 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,9 +7,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: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 09:58+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -23,17 +23,17 @@ msgstr "কূটশব্দ" #: templates/authenticate.php:6 msgid "Submit" -msgstr "পাঠাও" +msgstr "জমা দাও" #: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" #: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" #: templates/public.php:22 templates/public.php:38 msgid "Download" @@ -41,8 +41,8 @@ msgstr "ডাউনলোড" #: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" #: templates/public.php:43 msgid "web services under your control" -msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" +msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 9f543cad59..51865f0710 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,9 +7,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: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:28+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -19,24 +19,24 @@ msgstr "" #: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" -msgstr "" +msgstr "সমস্ত ভার্সন মেয়াদোত্তীর্ণ" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "ইতিহাস" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "ভার্সন" #: 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" -msgstr "" +msgstr "ফাইল ভার্সন করা" #: templates/settings.php:4 msgid "Enable" -msgstr "সক্রিয়" +msgstr "সক্রিয় " diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 184ae9bb05..0c8865693c 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,9 +7,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: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:27+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -17,57 +17,57 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "সহায়িকা" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "ব্যক্তিগত" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: app.php:304 +#: app.php:318 msgid "Users" -msgstr "ব্যবহারকারিবৃন্দ" +msgstr "ব্যভহারকারী" -#: app.php:311 +#: app.php:325 msgid "Apps" -msgstr "অ্যাপস" +msgstr "অ্যাপ" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "প্রশাসক" #: files.php:365 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" #: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" #: files.php:366 files.php:391 msgid "Back to Files" -msgstr "" +msgstr "ফাইলে ফিরে চল" #: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" #: 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" @@ -87,12 +87,12 @@ msgstr "সেকেন্ড পূর্বে" #: template.php:104 msgid "1 minute ago" -msgstr "1 মিনিট পূর্বে" +msgstr "১ মিনিট পূর্বে" #: template.php:105 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d মিনিট পূর্বে" #: template.php:106 msgid "1 hour ago" @@ -114,11 +114,11 @@ 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 @@ -136,15 +136,15 @@ msgstr "বছর পূর্বে" #: updater.php:75 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s এখন সুলভ। আরও জানুন" #: 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 diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index de192ed72c..c5be1bf121 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -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-03 00:04+0100\n" -"PO-Revision-Date: 2013-01-02 09:43+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 09:52+0000\n" "Last-Translator: Shubhra Paul \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -20,23 +20,23 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না" +msgstr "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "গোষ্ঠীটি বিদ্যমান" +msgstr "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "গোষ্ঠী যোগ করতে পারা গেল না" +msgstr "গোষ্ঠী যোগ করা সম্ভব হলো না" #: ajax/enableapp.php:12 msgid "Could not enable app. " -msgstr "অ্যাপ সক্রিয় করা সম্ভব হলো না" +msgstr "অ্যপটি সক্রিয় করতে সক্ষম নয়।" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "ই-মেইল সংরক্ষণ করা হয়েছে" +msgstr "ই-মেইল সংরক্ষন করা হয়েছে" #: ajax/lostpassword.php:14 msgid "Invalid email" @@ -48,19 +48,19 @@ msgstr "OpenID পরিবর্তন করা হয়েছে" #: 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" -msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না" +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" -msgstr "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না" +msgstr "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না " #: ajax/setlanguage.php:15 msgid "Language changed" @@ -68,17 +68,17 @@ msgstr "ভাষা পরিবর্তন করা হয়েছে" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না" #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না " #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না" #: js/apps.js:28 js/apps.js:67 msgid "Disable" @@ -86,15 +86,15 @@ 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__" -msgstr "_ভাষার_নাম_" +msgstr "__language_name__" #: templates/apps.php:10 msgid "Add your App" @@ -110,23 +110,23 @@ msgstr "অ্যাপ নির্বাচন করুন" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com" +msgstr "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন" #: templates/apps.php:32 msgid "-licensed by " -msgstr "-লাইসেন্স করিয়েছেন " +msgstr "-লাইসেন্সধারী " #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "ব্যবহারকারী সহায়িকা" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "প্রশাসক সহায়িকা" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "অনলাইন সহায়িকা" #: templates/help.php:7 msgid "Forum" @@ -143,7 +143,7 @@ msgstr "বাণিজ্যিক সাপোর্ট" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" #: templates/personal.php:12 msgid "Clients" @@ -155,11 +155,11 @@ msgstr "ডেস্কটপ ক্লায়েন্ট ডাউনলোড #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "অ্যান্ড্রয়েড ক্লায়েন্ট ডাউনলোড করুন" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOS ক্লায়েন্ট ডাউনলোড করুন" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -167,11 +167,11 @@ msgstr "কূটশব্দ" #: templates/personal.php:22 msgid "Your password was changed" -msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে" +msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "কূটশব্দ পরিবর্তন করা সম্ভব হলো না" +msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" #: templates/personal.php:24 msgid "Current password" @@ -187,11 +187,11 @@ msgstr "প্রদর্শন" #: templates/personal.php:27 msgid "Change password" -msgstr "কূটশব্দ পরিবর্তন কর" +msgstr "কূটশব্দ পরিবর্তন করুন" #: templates/personal.php:33 msgid "Email" -msgstr "ই-মেইল" +msgstr "ই-মেইল " #: templates/personal.php:34 msgid "Your email address" @@ -199,7 +199,7 @@ 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" @@ -207,19 +207,19 @@ msgstr "ভাষা" #: templates/personal.php:47 msgid "Help translate" -msgstr "অনুবাদ করতে সাহায্য করুন" +msgstr "অনুবাদ করতে সহায়তা করুন" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "ভার্সন" #: templates/personal.php:65 msgid "" @@ -229,27 +229,27 @@ msgid "" "licensed under the AGPL." -msgstr "তৈরি করেছেন ownCloud community, যার উৎস কোড AGPLএর অধীনে লাইেসন্সকৃত." +msgstr "তৈলী করেছেন ownCloud সম্প্রদায়, যার উৎস কোডটি AGPL এর অধীনে লাইসেন্সকৃত।" #: templates/users.php:21 templates/users.php:81 msgid "Name" -msgstr "নাম" +msgstr "রাম" #: templates/users.php:26 templates/users.php:83 templates/users.php:103 msgid "Groups" -msgstr "গোষ্ঠী" +msgstr "গোষ্ঠীসমূহ" #: templates/users.php:32 msgid "Create" -msgstr "তৈরি কর" +msgstr "তৈরী কর" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "পূর্বনির্ধারিত সংরক্ষণাগার" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "অসীম" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -257,15 +257,15 @@ msgstr "অন্যান্য" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "গোষ্ঠী প্রশাসন" +msgstr "গোষ্ঠী প্রশাসক" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "সংরক্ষণাগার" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "পূর্বনির্ধারিত" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 509354b9d6..75f4261e13 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,9 +7,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: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:27+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -32,31 +32,31 @@ msgstr "" #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "হোস্ট" #: templates/settings.php:15 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "SSL আবশ্যক না হলে আপনি এই প্রটোকলটি মুছে ফেলতে পারেন । এরপর শুরু করুন এটা দিয়ে ldaps://" #: templates/settings.php:16 msgid "Base DN" -msgstr "" +msgstr "ভিত্তি DN" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।" #: templates/settings.php:17 msgid "User DN" -msgstr "" +msgstr "ব্যবহারকারি DN" #: templates/settings.php:17 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. পরিচয় গোপন রেখে অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" #: templates/settings.php:18 msgid "Password" @@ -64,119 +64,119 @@ msgstr "কূটশব্দ" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "অজ্ঞাতকুলশীল অধিগমনের জন্য DN এবং কূটশব্দটি ফাঁকা রাখুন।" #: templates/settings.php:19 msgid "User Login Filter" -msgstr "" +msgstr "ব্যবহারকারির প্রবেশ ছাঁকনী" #: templates/settings.php:19 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "প্রবেশের চেষ্টা করার সময় প্রযোজ্য ছাঁকনীটি নির্ধারণ করবে। প্রবেশের সময় ব্যবহারকারী নামটি %%uid দিয়ে প্রতিস্থাপিত হবে।" #: templates/settings.php:19 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "%%uid স্থানধারক ব্যবহার করুন, উদাহরণঃ \"uid=%%uid\"" #: templates/settings.php:20 msgid "User List Filter" -msgstr "" +msgstr "ব্যবহারকারী তালিকা ছাঁকনী" #: templates/settings.php:20 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "ব্যবহারকারী উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।" #: templates/settings.php:20 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "কোন স্থানধারক ব্যতীত, যেমনঃ \"objectClass=person\"।" #: templates/settings.php:21 msgid "Group Filter" -msgstr "" +msgstr "গোষ্ঠী ছাঁকনী" #: templates/settings.php:21 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "গোষ্ঠীসমূহ উদ্ধার করার সময় প্রয়োগের জন্য ছাঁকনী নির্ধারণ করবে।" #: templates/settings.php:21 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "কোন স্থান ধারক ব্যতীত, উদাহরণঃ\"objectClass=posixGroup\"।" #: templates/settings.php:24 msgid "Port" -msgstr "" +msgstr "পোর্ট" #: templates/settings.php:25 msgid "Base User Tree" -msgstr "" +msgstr "ভিত্তি ব্যবহারকারি বৃক্ষাকারে" #: templates/settings.php:26 msgid "Base Group Tree" -msgstr "" +msgstr "ভিত্তি গোষ্ঠী বৃক্ষাকারে" #: templates/settings.php:27 msgid "Group-Member association" -msgstr "" +msgstr "গোষ্ঠী-সদস্য সংস্থাপন" #: templates/settings.php:28 msgid "Use TLS" -msgstr "" +msgstr "TLS ব্যবহার কর" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "SSL সংযোগের জন্য এটি ব্যবহার করবেন না, তাহলে ব্যর্থ হবেনই।" #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "বর্ণ অসংবেদী LDAP সার্ভার (উইন্ডোজ)" #: templates/settings.php:30 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।" #: templates/settings.php:30 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "শুধুমাত্র যদি এই বিকল্পটি ব্যবহার করেই সংযোগ কার্যকরী হয় তবে আপনার ownCloud সার্ভারে LDAP সার্ভারের SSL সনদপত্রটি আমদানি করুন।" #: templates/settings.php:30 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "অনুমোদিত নয়, শুধুমাত্র পরীক্ষামূলক ব্যবহারের জন্য।" #: templates/settings.php:31 msgid "User Display Name Field" -msgstr "" +msgstr "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র" #: templates/settings.php:31 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "ব্যবহারকারীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" #: templates/settings.php:32 msgid "Group Display Name Field" -msgstr "" +msgstr "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "গোষ্ঠীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" #: templates/settings.php:34 msgid "in bytes" -msgstr "" +msgstr "বাইটে" #: templates/settings.php:36 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "সেকেন্ডে। কোন পরিবর্তন ক্যাসে খালি করবে।" #: templates/settings.php:37 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।" #: templates/settings.php:39 msgid "Help" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index 3aa6ccffca..99d191a99b 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shubhra Paul , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-02 00:04+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 10:07+0000\n" +"Last-Translator: Shubhra Paul \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" @@ -19,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL:http://" #: templates/settings.php:6 msgid "" "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." -msgstr "" +msgstr "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." diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 9fd20a8ef1..c41d4cbd8b 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -4,13 +4,13 @@ # # Translators: # , 2012. -# , 2011-2012. +# , 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 \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!" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index c3c57eb4cd..159d191a91 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -7,15 +7,15 @@ # , 2012. # , 2012. # Josep Tomàs , 2012. -# , 2011-2012. +# , 2011-2013. # , 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 \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 07:36+0000\n" +"Last-Translator: rogerc \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 "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr " No s'ha pogut moure %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "No es pot canviar el nom del fitxer" + #: 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" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index e00aa1d03f..2148999dc1 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -6,13 +6,13 @@ # Jan Krejci , 2011. # Martin , 2011-2012. # Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012. +# Tomáš Chvátal , 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 \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 admin account" msgstr "Vytvořit účet správce" -#: 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í." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 9732a89e24..c5417ef868 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -5,14 +5,14 @@ # Translators: # Martin , 2011-2012. # Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012. +# Tomáš Chvátal , 2012-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 12:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 08:32+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,20 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Nelze přesunout %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Nelze přejmenovat soubor" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" @@ -57,21 +71,21 @@ msgstr "Zápis na disk selhal" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Nedostatek dostupného místa" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Neplatný adresář" #: appinfo/app.php:10 msgid "Files" msgstr "Soubory" -#: 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 "Zrušit sdílení" -#: 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 "Smazat" @@ -79,122 +93,134 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "nahradit" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "nahrazeno {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 "zpět" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "sdílení zrušeno pro {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "smazáno {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' je neplatným názvem souboru." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Název souboru nemůže být prázdný řetězec." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generuji ZIP soubor, může to nějakou dobu trvat." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Chyba odesílání" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zavřít" -#: 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 "Čekající" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: 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 "odesílám {count} souborů" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL nemůže být prázdná" -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "prozkoumáno {count} souborů" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba při prohledávání" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Název" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Změněno" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 složka" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 soubor" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} soubory" @@ -246,36 +272,36 @@ msgstr "Složka" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Odeslat" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Odeslaný soubor je příliš velký" -#: 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 "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/da/core.po b/l10n/da/core.po index 6fa4625012..f62c370f05 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -15,9 +15,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 21:57+0000\n" -"Last-Translator: cronner \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 \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,6 +572,11 @@ msgstr "forrige" msgid "next" msgstr "næste" +#: 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 "Sikkerhedsadvarsel!" diff --git a/l10n/da/files.po b/l10n/da/files.po index 0678675170..b2d80372d3 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ 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 12:30+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 \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,20 @@ msgstr "" "Language: da\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 "Ingen fil blev uploadet. Ukendt fejl." @@ -72,11 +86,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: 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 "Fjern deling" -#: 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 "Slet" @@ -84,122 +98,134 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "erstat" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "erstattede {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 "fortryd" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "ikke delte {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "slettede {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 "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "genererer ZIP-fil, det kan tage lidt tid." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Luk" -#: 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 "Afventer" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fil uploades" -#: 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} filer uploades" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URLen kan ikke være tom." -#: 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 "{count} filer skannet" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ændret" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -251,36 +277,36 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Download" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload for stor" -#: 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 "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/de/core.po b/l10n/de/core.po index 861465cce9..3a66b45941 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -7,7 +7,7 @@ # , 2011. # , 2012. # , 2011. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2011. # , 2012. @@ -23,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 13:50+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 13:25+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "Heute" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "Gestern" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "Vor Jahren" @@ -580,6 +580,11 @@ msgstr "Zurück" msgid "next" msgstr "Weiter" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Sicherheitswarnung!" diff --git a/l10n/de/files.po b/l10n/de/files.po index 03474bf54b..b87748be1a 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -5,7 +5,7 @@ # Translators: # , 2012. # , 2012. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2012. # Jan-Christoph Borchardt , 2011. @@ -25,9 +25,9 @@ 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 21:11+0000\n" -"Last-Translator: Linutux \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 \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,6 +35,20 @@ msgstr "" "Language: de\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 "Keine Datei hochgeladen. Unbekannter Fehler" @@ -82,11 +96,11 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: 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 "Nicht mehr freigeben" -#: 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 "Löschen" @@ -94,122 +108,134 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} wurde ersetzt" -#: 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 "rückgängig machen" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Freigabe von {files} aufgehoben" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} gelöscht" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' ist kein gültiger Dateiname." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Der Dateiname darf nicht leer sein." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Schließen" -#: 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 "Ausstehend" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: 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} Dateien werden hochgeladen" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Die URL darf nicht leer sein." -#: 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 "{count} Dateien wurden gescannt" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -261,36 +287,36 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload zu groß" -#: 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 "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 116cf3006c..b0ce05ca25 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -16,15 +16,16 @@ # , 2012. # , 2012. # Phi Lieb <>, 2012. +# , 2013. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 13:52+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 10:38+0000\n" +"Last-Translator: Valermos \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -98,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "Heute" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "Gestern" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "Vor Jahren" @@ -579,6 +580,11 @@ msgstr "Zurück" msgid "next" msgstr "Weiter" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Sicherheitshinweis!" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ff895f0d9c..ec85e5580e 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -6,7 +6,7 @@ # , 2012. # , 2012-2013. # , 2012. -# I Robot , 2012. +# I Robot , 2012-2013. # I Robot , 2012. # Jan-Christoph Borchardt , 2012. # Jan-Christoph Borchardt , 2011. @@ -18,6 +18,7 @@ # , 2012. # , 2012. # Phi Lieb <>, 2012. +# , 2013. # , 2012. # Thomas Müller <>, 2012. # , 2012. @@ -25,9 +26,9 @@ 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 21:31+0000\n" -"Last-Translator: a.tangemann \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 \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,6 +36,20 @@ msgstr "" "Language: de_DE\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 "Keine Datei hochgeladen. Unbekannter Fehler" @@ -72,7 +87,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "Nicht genug Speicher verfügbar" +msgstr "Nicht genügend Speicherplatz verfügbar" #: ajax/upload.php:69 msgid "Invalid directory." @@ -82,11 +97,11 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: 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 "Nicht mehr freigeben" -#: 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 "Löschen" @@ -94,122 +109,134 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} wurde ersetzt" -#: 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 "rückgängig machen" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Freigabe für {files} beendet" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} gelöscht" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' ist kein gültiger Dateiname." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Der Dateiname darf nicht leer sein." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Schließen" -#: 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 "Ausstehend" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: 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} Dateien wurden hochgeladen" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Die URL darf nicht leer sein." -#: 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 "{count} Dateien wurden gescannt" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -261,36 +288,36 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Hochladen" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Bitte laden Sie etwas hoch!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: 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 "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7a42857d69..71c93b2c81 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 13:25+0000\n" -"Last-Translator: Efstathios Iosifidis \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 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -571,6 +571,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 "Προειδοποίηση Ασφαλείας!" diff --git a/l10n/el/files.po b/l10n/el/files.po index bfb66198a0..6dbee32887 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,8 +14,8 @@ 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 12:30+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 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,20 @@ msgstr "" "Language: el\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 "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" @@ -71,11 +85,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 "Διαγραφή" @@ -83,122 +97,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 "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: 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 "1 αρχείο ανεβαίνει" -#: 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} αρχεία ανεβαίνουν" -#: 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" -msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του \"Shared\" είναι δεσμευμένη από το Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Η URL δεν πρέπει να είναι κενή." -#: 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 "{count} αρχεία ανιχνεύτηκαν" -#: 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 "1 φάκελος" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} αρχεία" @@ -250,36 +276,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 "Τρέχουσα αναζήτηση " diff --git a/l10n/eo/core.po b/l10n/eo/core.po index ae8dd9eeed..a443f9ad91 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -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-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 07:11+0000\n" -"Last-Translator: Mariano \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 \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -209,7 +209,7 @@ msgstr "Kunhavigi per ligilo" msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Pasvorto" @@ -315,7 +315,7 @@ msgid "Request failed!" msgstr "Peto malsukcesis!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Uzantonomo" @@ -529,29 +529,29 @@ msgstr "TTT-servoj sub via kontrolo" msgid "Log out" msgstr "Elsaluti" -#: 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 "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "memori" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Ensaluti" @@ -567,6 +567,11 @@ msgstr "maljena" msgid "next" msgstr "jena" +#: 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 "Sekureca averto!" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d91d11781c..9989b6eb9b 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ 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 12:30+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 \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: eo\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 "Neniu dosiero alŝutiĝis. Nekonata eraro." @@ -66,11 +80,11 @@ msgstr "" msgid "Files" msgstr "Dosieroj" -#: 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 "Malkunhavigi" -#: 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 "Forigi" @@ -78,122 +92,134 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "anstataŭiĝis {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 "malfari" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "malkunhaviĝis {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "foriĝis {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 "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Fermi" -#: 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 "Traktotaj" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: 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} dosieroj alŝutatas" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL ne povas esti malplena." -#: 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 "{count} dosieroj skaniĝis" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomo" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Grando" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifita" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosierujoj" @@ -245,36 +271,36 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Alŝuti" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Elŝuto tro larĝa" -#: 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 "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3aebf45eff..ffe01773be 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -5,7 +5,7 @@ # Translators: # , 2012. # Javier Llorente , 2012. -# , 2011-2012. +# , 2011-2013. # , 2012. # oSiNaReF <>, 2012. # Raul Fernandez Garcia , 2012. @@ -18,9 +18,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 11:51+0000\n" -"Last-Translator: malmirk \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:49+0000\n" +"Last-Translator: juanman \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -172,8 +172,8 @@ msgid "The object type is not specified." msgstr "El tipo de objeto no se ha especificado." #: 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 "Fallo" @@ -185,7 +185,7 @@ msgstr "El nombre de la app no se ha especificado." msgid "The required file {file} is not installed!" msgstr "El fichero {file} requerido, no está instalado." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error compartiendo" @@ -213,11 +213,11 @@ msgstr "Compartir con" msgid "Share with link" msgstr "Compartir con enlace" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protegido por contraseña" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Contraseña" @@ -282,23 +282,23 @@ msgstr "eliminar" msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al eliminar la fecha de caducidad" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -323,7 +323,7 @@ msgid "Request failed!" msgstr "Pedido fallado!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nombre de usuario" @@ -537,29 +537,29 @@ msgstr "servicios web bajo tu control" msgid "Log out" msgstr "Salir" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "¡Inicio de sesión automático rechazado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "recuérdame" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" @@ -575,6 +575,11 @@ msgstr "anterior" msgid "next" msgstr "siguiente" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "¡Advertencia de seguridad!" diff --git a/l10n/es/files.po b/l10n/es/files.po index beefcf059f..7ea7d7330c 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -7,7 +7,7 @@ # Agustin Ferrario , 2013. # , 2012. # Javier Llorente , 2012. -# , 2012. +# , 2012-2013. # Rubén Trujillo , 2012. # , 2011-2012. # , 2012. @@ -15,9 +15,9 @@ 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 13:10+0000\n" -"Last-Translator: Agustin Ferrario \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 \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,6 +25,20 @@ msgstr "" "Language: es\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 "Fallo no se subió el fichero" @@ -72,11 +86,11 @@ msgstr "Directorio invalido." msgid "Files" msgstr "Archivos" -#: 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 "Dejar 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 "Eliminar" @@ -84,122 +98,134 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "reemplazado {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 "deshacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} descompartidos" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminados" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' es un nombre de archivo inválido." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "El nombre de archivo no puede estar vacío." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generando un fichero ZIP, puede llevar un tiempo." -#: 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 ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "cerrrar" -#: 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 "Pendiente" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: 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 "Subiendo {count} archivos" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "La URL no puede estar vacía." -#: 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 "{count} archivos escaneados" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: 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} carpetas" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -251,36 +277,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde el enlace" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Subir" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: 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 "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Ahora escaneando" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 16b141f082..43ae151a75 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,9 +9,9 @@ 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 15:11+0000\n" -"Last-Translator: Agustin Ferrario \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 \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -566,6 +566,11 @@ msgstr "anterior" msgid "next" msgstr "siguiente" +#: 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 "¡Advertencia de seguridad!" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 8743c1e27a..d3f2c7ebc1 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,9 +9,9 @@ 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 13:11+0000\n" -"Last-Translator: Agustin Ferrario \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 \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,20 @@ msgstr "" "Language: es_AR\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 "El archivo no fue subido. Error desconocido" @@ -66,11 +80,11 @@ msgstr "Directorio invalido." msgid "Files" msgstr "Archivos" -#: 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 "Dejar 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 "Borrar" @@ -78,122 +92,134 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "reemplazado {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 "deshacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} se dejaron de compartir" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} borrados" -#: 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 "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generando un archivo ZIP, puede llevar un tiempo." -#: 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 fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Cerrar" -#: 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 "Pendiente" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: 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 "Subiendo {count} archivos" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "La URL no puede estar vacía" -#: 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 "{count} archivos escaneados" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -245,36 +271,36 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Subir" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: 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 "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 3d6dcf500f..7953c94046 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "Viga" @@ -175,7 +175,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 "Viga jagamisel" @@ -203,11 +203,11 @@ msgstr "Jaga" msgid "Share with link" msgstr "Jaga lingiga" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Parooliga kaitstud" -#: 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 "Parool" @@ -272,23 +272,23 @@ msgstr "kustuta" msgid "share" msgstr "jaga" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ msgstr "Taastamise e-kiri on saadetud." msgid "Request failed!" msgstr "Päring ebaõnnestus!" -#: 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 "Kasutajanimi" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "Loo admini konto" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Lisavalikud" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: 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 "kasutatakse" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Lõpeta seadistamine" @@ -527,29 +527,29 @@ msgstr "veebiteenused sinu kontrolli all" msgid "Log out" msgstr "Logi välja" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automaatne sisselogimine lükati tagasi!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Kui sa ei muutnud oma parooli hiljut, siis võib su kasutajakonto olla ohustatud!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "pea meeles" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Logi sisse" @@ -565,6 +565,11 @@ msgstr "eelm" msgid "next" msgstr "järgm" +#: 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 "turvahoiatus!" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 0bf6d42f8f..444a31d021 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ 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 12:30+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 \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: et_EE\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 "Ühtegi faili ei laetud üles. Tundmatu viga" @@ -66,11 +80,11 @@ msgstr "" msgid "Files" msgstr "Failid" -#: 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 "Lõpeta jagamine" -#: 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 "Kustuta" @@ -78,122 +92,134 @@ msgstr "Kustuta" msgid "Rename" msgstr "ümber" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "asenda" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "loobu" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "asendatud nimega {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 "tagasi" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "jagamata {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "kustutatud {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 "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-faili loomine, see võib veidi aega võtta." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Sulge" -#: 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 "Ootel" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: 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} faili üleslaadimist" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud " +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL ei saa olla tühi." -#: 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 "{count} faili skännitud" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Suurus" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muudetud" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fail" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} faili" @@ -245,36 +271,36 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Lae üles" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Lae alla" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: 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 "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 20402a0498..4825d0400e 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -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-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 11:46+0000\n" -"Last-Translator: Piarres Beobide \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 \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "Objetu mota ez dago zehaztuta." #: 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 "Errorea" @@ -177,7 +177,7 @@ msgstr "App izena ez dago zehaztuta." msgid "The required file {file} is not installed!" msgstr "Beharrezkoa den {file} fitxategia ez dago instalatuta!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -205,11 +205,11 @@ msgstr "Elkarbanatu honekin" msgid "Share with link" msgstr "Elkarbanatu lotura batekin" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: 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 "Pasahitza" @@ -274,23 +274,23 @@ msgstr "ezabatu" msgid "share" msgstr "elkarbanatu" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Eposta bidalia" @@ -314,8 +314,8 @@ msgstr "Berrezartzeko eposta bidali da." msgid "Request failed!" msgstr "Eskariak huts egin du!" -#: 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 "Erabiltzaile izena" @@ -404,44 +404,44 @@ msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri msgid "Create an admin account" msgstr "Sortu kudeatzaile kontu bat" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: 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 "erabiliko da" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Bukatu konfigurazioa" @@ -529,29 +529,29 @@ msgstr "web zerbitzuak zure kontrolpean" msgid "Log out" msgstr "Saioa bukatu" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Saio hasiera automatikoa ez onartuta!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "gogoratu" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Hasi saioa" @@ -567,6 +567,11 @@ msgstr "aurrekoa" msgid "next" msgstr "hurrengoa" +#: 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 "Segurtasun abisua" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 39f84f32b3..0cc98cedbd 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -10,8 +10,8 @@ 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 12:30+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 \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: eu\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 "Ez da fitxategirik igo. Errore ezezaguna" @@ -67,11 +81,11 @@ msgstr "" msgid "Files" msgstr "Fitxategiak" -#: 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 "Ez elkarbanatu" -#: 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 "Ezabatu" @@ -79,122 +93,134 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "ordezkatua {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 "desegin" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "elkarbanaketa utzita {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ezabatuta {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 "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Itxi" -#: 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 "Zain" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: 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} fitxategi igotzen" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URLa ezin da hutsik egon." -#: 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 "{count} fitxategi eskaneatuta" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Izena" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaina" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxategi" @@ -246,36 +272,36 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Igo" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Igotakoa handiegia da" -#: 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 "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 8b2531f874..6693df21f9 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "خطا" @@ -175,7 +175,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 "" @@ -203,11 +203,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 "گذرواژه" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "شناسه" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "لطفا یک شناسه برای مدیر بسازید" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "حرفه ای" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "استفاده خواهد شد" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "هاست پایگاه داده" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "اتمام نصب" @@ -527,29 +527,29 @@ msgstr "سرویس وب تحت کنترل شما" msgid "Log out" 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 "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "ورود" @@ -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 "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 2a5d7c6c14..ea5bfc082a 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ 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 12:30+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 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\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 "هیچ فایلی آپلود نشد.خطای ناشناس" @@ -67,11 +81,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 "پاک کردن" @@ -79,122 +93,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 "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" -#: 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 "" @@ -246,36 +272,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 "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: 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 "بازرسی کنونی" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index c7c2c1c4a1..8824e25a49 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,9 +14,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 13:22+0000\n" -"Last-Translator: Jiri Grönroos \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 \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -168,8 +168,8 @@ 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 "Virhe" @@ -181,7 +181,7 @@ msgstr "Sovelluksen nimeä ei ole määritelty." msgid "The required file {file} is not installed!" msgstr "Vaadittua tiedostoa {file} ei ole asennettu!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -209,11 +209,11 @@ msgstr "" msgid "Share with link" msgstr "Jaa linkillä" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Salasana" @@ -278,23 +278,23 @@ msgstr "poista" msgid "share" msgstr "jaa" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -319,7 +319,7 @@ msgid "Request failed!" msgstr "Pyyntö epäonnistui!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Käyttäjätunnus" @@ -533,29 +533,29 @@ msgstr "verkkopalvelut hallinnassasi" msgid "Log out" msgstr "Kirjaudu ulos" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automaattinen sisäänkirjautuminen hylättiin!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "muista" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Kirjaudu sisään" @@ -571,6 +571,11 @@ msgstr "edellinen" msgid "next" msgstr "seuraava" +#: 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 "Turvallisuusvaroitus!" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 9220162130..cf08585d92 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ 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 17:44+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 19:12+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,20 @@ msgstr "" "Language: fi_FI\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 "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Kohteen %s siirto ei onnistunut" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Tiedoston nimeäminen uudelleen ei onnistunut" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" @@ -69,11 +83,11 @@ msgstr "Virheellinen kansio." msgid "Files" msgstr "Tiedostot" -#: 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 "Peru jakaminen" -#: 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 "Poista" @@ -81,122 +95,134 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "korvaa" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "peru" -#: 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 "kumoa" -#: 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 "'.' on virheellinen nimi tiedostolle." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Tiedoston nimi ei voi olla tyhjä." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Sulje" -#: 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 "Odottaa" -#: 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 "Lähetys peruttu." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: 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 "Verkko-osoite ei voi olla tyhjä" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: 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 "Nimi" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Koko" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muutettu" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tiedostoa" @@ -246,38 +272,38 @@ msgstr "Kansio" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Linkistä" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Lähetä" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Lataa" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: 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 "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 0b52b4e2f6..4b62b76f91 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -4,15 +4,15 @@ # # Translators: # Jesse Jaara , 2012. -# Jiri Grönroos , 2012. +# Jiri Grönroos , 2012-2013. # , 2012. 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 \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 19:18+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -251,7 +251,7 @@ msgstr "" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Rajoittamaton" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -267,7 +267,7 @@ msgstr "" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Oletus" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 04a866c32f..0807b8ed65 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2012. +# Christophe Lherieau , 2012-2013. # , 2013. # , 2012. # , 2012. @@ -18,9 +18,9 @@ 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-03 10:24+0000\n" -"Last-Translator: dbasquin \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 15:29+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -575,6 +575,11 @@ msgstr "précédent" msgid "next" msgstr "suivant" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Alerte de sécurité !" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e08609ef35..cd05b6ab16 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2012. +# Christophe Lherieau , 2012-2013. # Cyril Glapa , 2012. # , 2013. # Geoffrey Guerrier , 2012. @@ -14,14 +14,14 @@ # Nahir Mohamed , 2012. # Robert Di Rosa <>, 2012. # , 2011. -# Romain DEP. , 2012. +# Romain DEP. , 2012-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 12:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:40+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,6 +29,20 @@ msgstr "" "Language: fr\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 "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Impossible de déplacer %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Impossible de renommer le fichier" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été chargé. Erreur inconnue" @@ -66,21 +80,21 @@ msgstr "Erreur d'écriture sur le disque" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Espace disponible insuffisant" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Dossier invalide." #: appinfo/app.php:10 msgid "Files" msgstr "Fichiers" -#: 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 "Ne plus partager" -#: 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 "Supprimer" @@ -88,122 +102,134 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "remplacer" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annuler" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} a été remplacé" -#: 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 "annuler" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Fichiers non partagés : {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "Fichiers supprimés : {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' n'est pas un nom de fichier valide." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Le nom de fichier ne peut être vide." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Fermer" -#: 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 "En cours" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: 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} fichiers téléversés" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "L'URL ne peut-être vide" -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fichiers indexés" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: 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 "Taille" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifié" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fichier" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fichiers" @@ -255,36 +281,36 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Envoyer" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" -msgstr "Téléchargement" +msgstr "Télécharger" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fichier trop volumineux" -#: 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 "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index be09fe8f50..df757df163 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -17,14 +17,14 @@ # , 2012. # Robert Di Rosa <>, 2012. # , 2011, 2012. -# Romain DEP. , 2012. +# Romain DEP. , 2012-2013. 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-03 10:33+0000\n" -"Last-Translator: dbasquin \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:45+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,7 +165,7 @@ msgstr "Clients" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "Télécharger des clients de bureau" +msgstr "Télécharger le client de synchronisation pour votre ordinateur" #: templates/personal.php:14 msgid "Download Android Client" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 4917efe050..1baa75ab8b 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau , 2013. # , 2012. # Robert Di Rosa <>, 2012. -# Romain DEP. , 2012. +# Romain DEP. , 2012-2013. 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-28 23:13+0000\n" -"Last-Translator: ouafnico \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:41+0000\n" +"Last-Translator: Romain DEP. \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 69256439a0..357aa690c3 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" -"PO-Revision-Date: 2012-12-31 09:32+0000\n" -"Last-Translator: mbouzada \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 \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -567,6 +567,11 @@ msgstr "anterior" msgid "next" msgstr "seguinte" +#: 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 "Advertencia de seguranza" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 9d4acd36d9..2390a546db 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# antiparvos , 2012. +# antiparvos , 2012-2013. # Xosé M. Lamas , 2012. 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 12:30+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 \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: gl\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 "Non se subiu ningún ficheiro. Erro descoñecido." @@ -56,21 +70,21 @@ msgstr "Erro ao escribir no disco" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "O espazo dispoñíbel é insuficiente" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "O directorio é incorrecto." #: appinfo/app.php:10 msgid "Files" msgstr "Ficheiros" -#: 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 "Deixar 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 "Eliminar" @@ -78,122 +92,134 @@ msgstr "Eliminar" msgid "Rename" msgstr "Mudar o nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "xa existe un {new_name}" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituír" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "substituír {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 "desfacer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} polo {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} sen compartir" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminados" -#: 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 "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "xerando un ficheiro ZIP, o que pode levar un anaco." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Pechar" -#: 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 "Pendentes" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 ficheiro subíndose" -#: 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} ficheiros subíndose" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL non pode quedar baleiro." -#: 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 "{count} ficheiros escaneados" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -245,36 +271,36 @@ msgstr "Cartafol" msgid "From link" msgstr "Dende a ligazón" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Enviar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar a subida" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada por aquí. Envía algo." -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Envío demasiado grande" -#: 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 "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarda." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/he/core.po b/l10n/he/core.po index 131ac2897e..027e294615 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -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-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 07:42+0000\n" -"Last-Translator: Yaron Shahrabani \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 \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,8 +165,8 @@ 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 "שגיאה" @@ -178,7 +178,7 @@ msgstr "שם היישום לא צוין." msgid "The required file {file} is not installed!" msgstr "הקובץ הנדרש {file} אינו מותקן!" -#: 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:44 templates/login.php:26 +#: 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 "הודעת הדוא״ל נשלחה" @@ -316,7 +316,7 @@ msgid "Request failed!" msgstr "הבקשה נכשלה!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "שם משתמש" @@ -530,29 +530,29 @@ msgstr "שירותי רשת בשליטתך" msgid "Log out" 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 "שכחת את ססמתך?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "כניסה" @@ -568,6 +568,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 "אזהרת אבטחה!" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5a1ed8223c..cbf762beda 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ 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 12:30+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 \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: he\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 "לא הועלה קובץ. טעות בלתי מזוהה." @@ -68,11 +82,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 "מחיקה" @@ -80,122 +94,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 "יוצר קובץ ZIP, אנא המתן." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: 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 "{count} קבצים נשלחים" -#: 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" -msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת 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 "{count} קבצים נסרקו" -#: 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 "{count} תיקיות" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} קבצים" @@ -247,36 +273,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 "הסריקה הנוכחית" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index ad1e340700..9e21f4363b 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -163,8 +163,8 @@ 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 "" @@ -176,7 +176,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 "" @@ -204,11 +204,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 "पासवर्ड" @@ -273,23 +273,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 "" @@ -313,8 +313,8 @@ 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 "प्रयोक्ता का नाम" @@ -403,44 +403,44 @@ msgstr "" msgid "Create an admin account" msgstr "व्यवस्थापक खाता बनाएँ" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "उन्नत" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "सेटअप समाप्त करे" @@ -528,29 +528,29 @@ msgstr "" msgid "Log out" 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 "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -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 "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 12a3b1fd15..c555c20841 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,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 \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: hi\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 "" @@ -64,11 +78,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 "" @@ -76,122 +90,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 "" @@ -243,36 +269,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 "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 3b78e7b8fd..afe9e17a5b 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -165,8 +165,8 @@ 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 "Pogreška" @@ -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 "Greška prilikom djeljenja" @@ -206,11 +206,11 @@ msgstr "Djeli sa" msgid "Share with link" msgstr "Djeli preko link-a" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zaštiti lozinkom" -#: 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 "Lozinka" @@ -275,23 +275,23 @@ msgstr "izbriši" msgid "share" msgstr "djeli" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +315,8 @@ 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 "Korisničko ime" @@ -405,44 +405,44 @@ msgstr "" msgid "Create an admin account" msgstr "Stvori administratorski račun" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Dodatno" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: 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 "će se koristiti" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Završi postavljanje" @@ -530,29 +530,29 @@ msgstr "web usluge pod vašom kontrolom" msgid "Log out" msgstr "Odjava" -#: 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 "Izgubili ste lozinku?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prijava" @@ -568,6 +568,11 @@ msgstr "prethodan" msgid "next" msgstr "sljedeći" +#: 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 "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index d47d5f18bd..e69aea6cf7 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,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 \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\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 "" @@ -67,11 +81,11 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: 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 "Prekini djeljenje" -#: 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 "Briši" @@ -79,122 +93,134 @@ msgstr "Briši" msgid "Rename" msgstr "Promjeni ime" -#: 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 "zamjeni" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "odustani" -#: 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 "vrati" -#: 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 "generiranje ZIP datoteke, ovo može potrajati." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zatvori" -#: 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 "U tijeku" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: 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 "Slanje poništeno." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: 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 "grečka prilikom skeniranja" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naziv" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja promjena" -#: 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 "" @@ -246,36 +272,36 @@ msgstr "mapa" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošalji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: 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 "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hu/core.po b/l10n/hu/core.po index 03c54c112f..34ccef27dd 100644 --- a/l10n/hu/core.po +++ b/l10n/hu/core.po @@ -7,9 +7,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: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \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 \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -564,6 +564,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 "" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index c3d83a15a0..4956069f94 100644 --- a/l10n/hu/files.po +++ b/l10n/hu/files.po @@ -7,8 +7,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:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: hu\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 "" @@ -64,11 +78,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 "" @@ -76,122 +90,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 "" @@ -243,36 +269,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 "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 40dde261a3..50ba444d42 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-01 00:04+0100\n" -"PO-Revision-Date: 2012-12-31 14:56+0000\n" -"Last-Translator: Laszlo Tornoci \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 \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -567,6 +567,11 @@ msgstr "előző" msgid "next" msgstr "következő" +#: 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 "Biztonsági figyelmeztetés!" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ab2c04997d..bf6a28272e 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth , 2012. +# , 2013. # , 2011. # Peter Borsa , 2011. 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 12:30+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 \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -20,6 +21,20 @@ msgstr "" "Language: hu_HU\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 "Nem történt feltöltés. Ismeretlen hiba" @@ -57,21 +72,21 @@ msgstr "Nem sikerült a lemezre történő írás" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Nincs elég szabad hely" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Érvénytelen mappa." #: appinfo/app.php:10 msgid "Files" msgstr "Fájlok" -#: 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 "Megosztás visszavonása" -#: 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 "Törlés" @@ -79,122 +94,134 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "mégse" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "a(z) {new_name} állományt kicseréltük" -#: 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 "visszavonás" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} fájl megosztása visszavonva" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} fájl törölve" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' fájlnév érvénytelen." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "A fájlnév nem lehet semmi." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fájl generálása, ez eltarthat egy ideig." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Bezárás" -#: 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 "Folyamatban" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: 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} fájl töltődik föl" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Érvénytelen mappanév. A \"Shared\" elnevezést az Owncloud rendszer használja." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Az URL nem lehet semmi." -#: 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 "{count} fájlt találtunk" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "Hiba a fájllista-ellenőrzés során" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Név" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Méret" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Módosítva" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fájl" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fájl" @@ -246,36 +273,36 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Feltöltés" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Letöltés" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: 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 "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index b00e728cc4..b307301795 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth , 2012. +# , 2013. # Peter Borsa , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 14:17+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 16:35+0000\n" +"Last-Translator: gyeben \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -246,11 +247,11 @@ msgstr "Létrehozás" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Alapértelmezett tárhely" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Korlátlan" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -262,11 +263,11 @@ msgstr "Csoportadminisztrátor" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Tárhely" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Alapértelmezett" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 655c88dd46..3e8274293c 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. 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 17:19+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 16:35+0000\n" +"Last-Translator: gyeben \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -108,7 +109,7 @@ msgstr "itt ne használjunk változót, pl. \"objectClass=posixGroup\"." #: templates/settings.php:24 msgid "Port" -msgstr "" +msgstr "Port" #: templates/settings.php:25 msgid "Base User Tree" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index cf1e1c8105..29a834b73e 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "" @@ -175,7 +175,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 "" @@ -203,11 +203,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 "Contrasigno" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "Nomine de usator" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "Crear un conto de administration" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar le base de datos" -#: 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 "essera usate" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -527,29 +527,29 @@ msgstr "servicios web sub tu controlo" msgid "Log out" msgstr "Clauder le session" -#: 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 "Tu perdeva le contrasigno?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "memora" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Aperir session" @@ -565,6 +565,11 @@ msgstr "prev" msgid "next" msgstr "prox" +#: 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 "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 7e27aa1727..48fee82947 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,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 \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: ia\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 "" @@ -66,11 +80,11 @@ msgstr "" msgid "Files" msgstr "Files" -#: 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 "Deler" @@ -78,122 +92,134 @@ msgstr "Deler" 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 "Clauder" -#: 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 "Nomine" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimension" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificate" -#: 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 "" @@ -245,36 +271,36 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Incargar" -#: 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 "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Discargar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: 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 "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 20b68e9ecf..bc8894d1f0 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -11,8 +11,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -165,8 +165,8 @@ 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 "gagal" @@ -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 "gagal ketika membagikan" @@ -206,11 +206,11 @@ msgstr "bagikan dengan" msgid "Share with link" msgstr "bagikan dengan tautan" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "lindungi dengan kata kunci" -#: 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 "Password" @@ -275,23 +275,23 @@ msgstr "hapus" msgid "share" msgstr "bagikan" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "dilindungi kata kunci" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "gagal melepas tanggal kadaluarsa" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "gagal memasang tanggal kadaluarsa" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +315,8 @@ 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 "Username" @@ -405,44 +405,44 @@ msgstr "" msgid "Create an admin account" msgstr "Buat sebuah akun admin" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Tingkat Lanjut" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurasi database" -#: 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 "akan digunakan" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Pengguna database" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Password database" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nama database" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "tablespace basis data" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Host database" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Selesaikan instalasi" @@ -530,29 +530,29 @@ msgstr "web service dibawah kontrol anda" msgid "Log out" msgstr "Keluar" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "login otomatis ditolak!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "apabila anda tidak merubah kata kunci belakangan ini, akun anda dapat di gunakan orang lain!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "mohon ubah kata kunci untuk mengamankan akun anda" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Lupa password anda?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "selalu login" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Masuk" @@ -568,6 +568,11 @@ msgstr "sebelum" msgid "next" msgstr "selanjutnya" +#: 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 "peringatan keamanan!" diff --git a/l10n/id/files.po b/l10n/id/files.po index d1498ef87e..cd2442d53b 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,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 \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\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 "" @@ -67,11 +81,11 @@ msgstr "" msgid "Files" msgstr "Berkas" -#: 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 "batalkan berbagi" -#: 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 "Hapus" @@ -79,122 +93,134 @@ msgstr "Hapus" 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 "mengganti" -#: 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 "batalkan" -#: 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 "batal dikerjakan" -#: 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 "membuat berkas ZIP, ini mungkin memakan waktu." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "tutup" -#: 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 "Menunggu" -#: 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 "Pengunggahan dibatalkan." -#: 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 "tautan tidak boleh kosong" + +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: 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 "Nama" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Ukuran" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: 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 "" @@ -246,36 +272,36 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Unggah" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Batal mengunggah" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Unduh" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Unggahan terlalu besar" -#: 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 "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silahkan tunggu." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Sedang memindai" diff --git a/l10n/is/core.po b/l10n/is/core.po index f21c418fab..b15e30cafe 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -4,13 +4,13 @@ # # Translators: # , 2012. -# , 2012. +# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 14:48+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 22:41+0000\n" "Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "Flokkur ekki gefin" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "Enginn flokkur til að bæta við?" +msgstr "Enginn flokkur til að bæta við?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " @@ -85,55 +85,55 @@ msgstr "Villa við að fjarlægja %s úr eftirlæti." msgid "Settings" msgstr "Stillingar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sek síðan" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 min síðan" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "í dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "í gær" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "síðasta ári" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "árum síðan" @@ -166,7 +166,7 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 #: js/share.js:566 msgid "Error" -msgstr "Villa" +msgstr "Villa" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -295,7 +295,7 @@ msgstr "Tölvupóstur sendur" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "endursetja ownCloud lykilorð" +msgstr "endursetja ownCloud lykilorð" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -356,7 +356,7 @@ msgstr "Vefstjórn" #: strings.php:9 msgid "Help" -msgstr "Help" +msgstr "Hjálp" #: templates/403.php:12 msgid "Access forbidden" @@ -364,7 +364,7 @@ msgstr "Aðgangur bannaður" #: templates/404.php:12 msgid "Cloud not found" -msgstr "Skýið finnst eigi" +msgstr "Ský finnst ekki" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -422,11 +422,11 @@ msgstr "verður notað" #: templates/installation.php:107 msgid "Database user" -msgstr "Notandi gagnagrunns" +msgstr "Gagnagrunns notandi" #: templates/installation.php:111 msgid "Database password" -msgstr "Lykilorð gagnagrunns" +msgstr "Gagnagrunns lykilorð" #: templates/installation.php:115 msgid "Database name" @@ -442,7 +442,7 @@ msgstr "Netþjónn gagnagrunns" #: templates/installation.php:134 msgid "Finish setup" -msgstr "Ljúka uppsetningu" +msgstr "Virkja uppsetningu" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" @@ -566,6 +566,11 @@ msgstr "fyrra" msgid "next" msgstr "næsta" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Öryggis aðvörun!" diff --git a/l10n/is/files.po b/l10n/is/files.po index a09396d6c0..f1c7c6d6dd 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. 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" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 22:46+0000\n" +"Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,9 +18,23 @@ msgstr "" "Language: is\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 "Gat ekki fært %s - Skrá með þessu nafni er þegar til" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Gat ekki fært %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Gat ekki endurskýrt skrá" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Engin skrá var send inn. Óþekkt villa." #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -55,21 +69,21 @@ msgstr "Tókst ekki að skrifa á disk" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Ekki nægt pláss tiltækt" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Ógild mappa." #: appinfo/app.php:10 msgid "Files" msgstr "Skrár" -#: 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 "Hætta deilingu" -#: 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 "Eyða" @@ -77,122 +91,134 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "endurskýrði {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 "afturkalla" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Hætti við deilingu á {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eyddi {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' er ekki leyfilegt nafn." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Nafn skráar má ekki vera tómt" + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "bý til ZIP skrá, það gæti tekið smá stund." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Villa við innsendingu" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Loka" -#: 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 "Bíður" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 skrá innsend" -#: 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} skrár innsendar" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ógilt nafn á möppu. Nafnið \"Shared\" er frátekið fyrir ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Vefslóð má ekki vera tóm." -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} skrár skimaðar" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "villa við skimun" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nafn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Stærð" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Breytt" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 skrá" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} skrár" @@ -244,36 +270,36 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Senda inn" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" -msgstr "Ekkert hér. Sendu eitthvað inn!" +msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" -msgstr "Innsend skrá of stór" +msgstr "Innsend skrá er of stór" -#: 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 "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 5b2d7ad671..f97f4611f7 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:53+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 22:58+0000\n" "Last-Translator: sveinn \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -110,11 +110,11 @@ msgstr "Veldu forrit" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "Skoða forrita síðuna hjá apps.owncloud.com" +msgstr "Skoða síðu forrits hjá apps.owncloud.com" #: templates/apps.php:32 msgid "-licensed by " -msgstr "" +msgstr "-leyfi skráð af " #: templates/help.php:3 msgid "User Documentation" @@ -257,7 +257,7 @@ msgstr "Annað" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "Hópa stjóri" +msgstr "Hópstjóri" #: templates/users.php:87 msgid "Storage" diff --git a/l10n/it/core.po b/l10n/it/core.po index d1d6f74af3..e2b2ba2f56 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -7,13 +7,13 @@ # Francesco Apruzzese , 2011, 2012. # , 2011, 2012. # , 2011. -# Vincenzo Reale , 2012. +# Vincenzo Reale , 2012-2013. 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 08:54+0000\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 05:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -166,8 +166,8 @@ msgid "The object type is not specified." msgstr "Il tipo di oggetto non è specificato." #: 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 "Errore" @@ -179,7 +179,7 @@ msgstr "Il nome dell'applicazione non è specificato." msgid "The required file {file} is not installed!" msgstr "Il file richiesto {file} non è installato!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -207,11 +207,11 @@ msgstr "Condividi con" msgid "Share with link" msgstr "Condividi con collegamento" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Password" @@ -276,23 +276,23 @@ msgstr "eliminare" msgid "share" msgstr "condividere" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Messaggio inviato" @@ -317,7 +317,7 @@ msgid "Request failed!" msgstr "Richiesta non riuscita!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nome utente" @@ -531,29 +531,29 @@ msgstr "servizi web nelle tue mani" msgid "Log out" msgstr "Esci" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Accesso automatico rifiutato." -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe essere stato compromesso." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "ricorda" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Accedi" @@ -569,6 +569,11 @@ msgstr "precedente" msgid "next" msgstr "successivo" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aggiornamento di ownCloud alla versione %s in corso, potrebbe richiedere del tempo." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Avviso di sicurezza" diff --git a/l10n/it/files.po b/l10n/it/files.po index 4dbd873f5d..89db9dc1bd 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,8 +11,8 @@ 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 18:21+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:53+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: it\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 "Impossibile spostare %s - un file con questo nome esiste già" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Impossibile spostare %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Impossibile rinominare il file" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" @@ -68,11 +82,11 @@ msgstr "Cartella non valida." msgid "Files" msgstr "File" -#: 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 "Rimuovi condivisione" -#: 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 "Elimina" @@ -80,122 +94,134 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annulla" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "sostituito {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 "annulla" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "non condivisi {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "eliminati {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' non è un nome file valido." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Il nome del file non può essere vuoto." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "creazione file ZIP, potrebbe richiedere del tempo." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Chiudi" -#: 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 "In corso" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: 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} file in fase di caricamentoe" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "L'URL non può essere vuoto." -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} file analizzati" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensione" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificato" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 file" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} file" @@ -247,36 +273,36 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Carica" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Scarica" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: 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 "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index ae1bd30ee4..d4c31fe92b 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -4,14 +4,14 @@ # # Translators: # Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012-2013. # , 2012. 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 11:56+0000\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 00:41+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -164,8 +164,8 @@ 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 "エラー" @@ -177,7 +177,7 @@ msgstr "アプリ名がしていされていません。" msgid "The required file {file} is not installed!" msgstr "必要なファイル {file} がインストールされていません!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -205,11 +205,11 @@ msgstr "共有者" msgid "Share with link" msgstr "URLリンクで共有" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "パスワード" @@ -274,23 +274,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 "メールを送信しました" @@ -315,7 +315,7 @@ msgid "Request failed!" msgstr "リクエスト失敗!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "ユーザ名" @@ -529,29 +529,29 @@ msgstr "管理下にあるウェブサービス" msgid "Log out" 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 "パスワードを忘れましたか?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "ログイン" @@ -567,6 +567,11 @@ msgstr "前" msgid "next" msgstr "次" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" + #: templates/verify.php:5 msgid "Security Warning!" msgstr "セキュリティ警告!" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 39ebcb8c95..74cabcaca6 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -4,16 +4,16 @@ # # Translators: # Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012-2013. # , 2012. # , 2012. 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 12:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 04:09+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,20 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "%s を移動できませんでした ― この名前のファイルはすでに存在します" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "%s を移動できませんでした" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "ファイル名の変更ができません" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" @@ -58,21 +72,21 @@ msgstr "ディスクへの書き込みに失敗しました" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "利用可能なスペースが十分にありません" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "無効なディレクトリです。" #: appinfo/app.php:10 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 "削除" @@ -80,122 +94,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 "{old_name} を {new_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 "ZIPファイルを生成中です、しばらくお待ちください。" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" -#: 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 "ファイルを1つアップロード中" -#: 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} ファイルをアップロード中" -#: 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" -msgstr "無効なフォルダ名です。\"Shared\" の利用は ownCloud が予約済みです。" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URLは空にできません。" -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ファイルをスキャン" -#: 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 "1 フォルダ" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ファイル" @@ -247,36 +273,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 "スキャン中" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 49ad2e0194..8af6e0abca 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "შეცდომა" @@ -175,7 +175,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 "შეცდომა გაზიარების დროს" @@ -203,11 +203,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 "პაროლი" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "მომხმარებელი" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "შექმენი ადმინ ექაუნტი" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "გამოყენებული იქნება" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "ბაზის მომხმარებელი" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "ბაზის პაროლი" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "ბაზის ჰოსტი" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" @@ -527,29 +527,29 @@ msgstr "თქვენი კონტროლის ქვეშ მყოფ msgid "Log out" 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 "დაგავიწყდათ პაროლი?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "შესვლა" @@ -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 "უსაფრთხოების გაფრთხილება!" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index ebcf1bec0d..27c92e92ba 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -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:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\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 "ZIP-ფაილის გენერირება, ამას ჭირდება გარკვეული დრო." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" -#: 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 "1 ფაილის ატვირთვა" -#: 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} ფაილი იტვირთება" -#: 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 "{count} ფაილი სკანირებულია" -#: 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 "1 საქაღალდე" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ფაილი" @@ -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 "მიმდინარე სკანირება" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 1f24c97277..24948c0676 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,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 \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:03+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,26 +24,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "User %s 가 당신과 파일을 공유하였습니다." #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "User %s 가 당신과 폴더를 공유하였습니다." #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "User %s 가 파일 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다." #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "User %s 가 폴더 \"%s\"를 당신과 공유하였습니다. 다운로드는 여기서 %s 할 수 있습니다." #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -164,8 +165,8 @@ 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 "오류" @@ -177,7 +178,7 @@ msgstr "앱 이름이 지정되지 않았습니다." msgid "The required file {file} is not installed!" msgstr "필요한 파일 {file}이(가) 설치되지 않았습니다!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -205,22 +206,22 @@ msgstr "다음으로 공유" msgid "Share with link" msgstr "URL 링크로 공유" -#: 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 "암호" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "이메일 주소" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "전송" #: js/share.js:177 msgid "Set expiration date" @@ -274,25 +275,25 @@ 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 "" +msgstr "전송 중..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "이메일 발송됨" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -314,8 +315,8 @@ 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 "사용자 이름" @@ -404,44 +405,44 @@ msgstr "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 msgid "Create an admin account" msgstr "관리자 계정 만들기" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "고급" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "데이터 폴더" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "사용될 예정" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "데이터베이스 호스트" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "설치 완료" @@ -529,29 +530,29 @@ msgstr "내가 관리하는 웹 서비스" msgid "Log out" 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 "암호를 잊으셨습니까?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "기억하기" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "로그인" @@ -567,6 +568,11 @@ msgstr "이전" msgid "next" msgstr "다음" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "보안 경고!" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 6eac0f74ad..1cbad6bb34 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,8 +11,8 @@ 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 12:30+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 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -20,6 +21,20 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\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 "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" @@ -57,21 +72,21 @@ msgstr "디스크에 쓰지 못했습니다" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "여유공간이 부족합니다" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "올바르지 않은 디렉토리입니다." #: appinfo/app.php:10 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 "삭제" @@ -79,122 +94,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 "{old_name}이(가) {new_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 "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다." -#: 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 "파일 1개 업로드 중" -#: 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}개 업로드 중" -#: 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" -msgstr "폴더 이름이 올바르지 않습니다. \"Shared\" 폴더는 ownCloud에서 예약되었습니다." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL을 입력해야 합니다." -#: 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 "파일 {count}개 검색됨" -#: 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 "폴더 1개" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "파일 1개" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "파일 {count}개" @@ -246,36 +273,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 "현재 검색" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 70d697575d..f43b896377 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # Shinjo Park , 2012. 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 \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:07+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,14 +48,14 @@ msgstr "Google 드라이브 저장소 설정 오류" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "경고\"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유애 연결이 불가능 합니다.. 시스템 관리자에게 요청하여 설치하시기 바랍니다." #: lib/config.php:435 msgid "" "Warning: 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." -msgstr "" +msgstr "경고PHP용 FTP 지원이 사용 불가능 하거나 설치되지 않았습니다. FTP 공유에 연결이 불가능 합니다. 시스템 관리자에게 요청하여 설치하시기 바랍니다. " #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +102,7 @@ msgid "Users" 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 "삭제" @@ -113,10 +114,10 @@ msgstr "사용자 외부 저장소 사용" msgid "Allow users to mount their own external storage" msgstr "사용자별 외부 저장소 마운트 허용" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL 루트 인증서" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "루트 인증서 가져오기" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index ea5f2c1fc6..0d027d7cdf 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. # , 2012. # Shinjo Park , 2012. @@ -10,9 +11,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 \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:26+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,23 +121,23 @@ msgstr "-라이선스 보유자 , 2013. # 남자사람 , 2012. # Shinjo Park , 2012. 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 \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 09:58+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,13 +25,13 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "경고user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "경고PHP LDAP 모듈이 설치되지 않았습니다. 백엔드가 동작하지 않을 것 입니다. 시스템관리자에게 요청하여 해당 모듈을 설치하시기 바랍니다." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 621bee7046..7baa17ed71 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # 남자사람 , 2012. 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 \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 10:31+0000\n" +"Last-Translator: aoiob4305 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "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." -msgstr "" +msgstr "ownCloud는 이 URL로 유저 인증을 보내게 되며, http 401 과 http 403은 인증 오류로, 그 외 코드는 인증이 올바른 것으로 해석합니다." diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 3917e9409c..1fb884c2fa 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "هه‌ڵه" @@ -175,7 +175,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 "" @@ -203,11 +203,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 "وشەی تێپەربو" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "ناوی به‌کارهێنه‌ر" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "هه‌ڵبژاردنی پیشكه‌وتوو" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "زانیاری فۆڵده‌ر" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "هۆستی داتابه‌یس" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" @@ -527,29 +527,29 @@ msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" msgid "Log out" 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 "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -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 "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index a191da3658..e85f7e1304 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,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 \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: ku_IQ\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 "" @@ -64,11 +78,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 "" @@ -76,122 +90,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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: 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 "" @@ -243,36 +269,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 "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index eacbddee62..e1b2e089fc 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "Fehler" @@ -175,7 +175,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 "" @@ -203,11 +203,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 "Passwuert" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "Benotzernumm" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "En Admin Account uleeën" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Daten Dossier" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Datebank konfiguréieren" -#: 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 "wärt benotzt ginn" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Installatioun ofschléissen" @@ -527,29 +527,29 @@ msgstr "Web Servicer ënnert denger Kontroll" msgid "Log out" msgstr "Ausloggen" -#: 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 "Passwuert vergiess?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "verhalen" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log dech an" @@ -565,6 +565,11 @@ msgstr "zeréck" msgid "next" msgstr "weider" +#: 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 "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index f749e860e9..e664d38cc3 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -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 \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: lb\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 "Dateien" -#: 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 "Läschen" @@ -77,122 +91,134 @@ msgstr "Läschen" 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 "ersetzen" -#: 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 "ofbriechen" -#: 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 "réckgängeg man" -#: 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 "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zoumaachen" -#: 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 "Upload ofgebrach." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: 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 "Numm" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Gréisst" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Geännert" -#: 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 "Dossier" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Eroplueden" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Eroflueden" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Upload ze grouss" -#: 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 "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index ecc372bdfe..a73a86f5f4 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -163,8 +163,8 @@ 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 "Klaida" @@ -176,7 +176,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 "Klaida, dalijimosi metu" @@ -204,11 +204,11 @@ msgstr "Dalintis su" msgid "Share with link" msgstr "Dalintis nuoroda" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: 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 "Slaptažodis" @@ -273,23 +273,23 @@ msgstr "ištrinti" msgid "share" msgstr "dalintis" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -313,8 +313,8 @@ 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 "Prisijungimo vardas" @@ -403,44 +403,44 @@ msgstr "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per i msgid "Create an admin account" msgstr "Sukurti administratoriaus paskyrą" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Išplėstiniai" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: 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 "bus naudojama" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Baigti diegimą" @@ -528,29 +528,29 @@ msgstr "jūsų valdomos web paslaugos" msgid "Log out" msgstr "Atsijungti" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatinis prisijungimas atmestas!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali būti pavojuje!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "prisiminti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prisijungti" @@ -566,6 +566,11 @@ msgstr "atgal" msgid "next" msgstr "kitas" +#: 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 "Saugumo pranešimas!" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index e82e8e9846..0b5d2d78f5 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,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 \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "" @@ -67,11 +81,11 @@ msgstr "" msgid "Files" msgstr "Failai" -#: 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 "Nebesidalinti" -#: 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 "Ištrinti" @@ -79,122 +93,134 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "pakeiskite {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 "anuliuoti" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "nebesidalinti {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "ištrinti {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 "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Užverti" -#: 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 "Laukiantis" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: 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} įkeliami failai" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: 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 "{count} praskanuoti failai" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dydis" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Pakeista" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 failas" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} failai" @@ -246,36 +272,36 @@ msgstr "Katalogas" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Įkelti" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: 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 "Bandomų įkelti failų dydis viršija maksimalų leidžiamą šiame serveryje" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 404800bf2b..81112f772f 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "Kļūme" @@ -175,7 +175,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 "" @@ -203,11 +203,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 "Parole" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "Lietotājvārds" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nokonfigurēt datubā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 "tiks izmantots" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datubāzes mājvieta" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Pabeigt uzstādījumus" @@ -527,29 +527,29 @@ msgstr "" msgid "Log out" msgstr "Izlogoties" -#: 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 "Aizmirsāt paroli?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "atcerēties" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Ielogoties" @@ -565,6 +565,11 @@ msgstr "iepriekšējā" msgid "next" msgstr "nākamā" +#: 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 "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 8d7b3dbc08..7b978c86d8 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,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 \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\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 "" @@ -66,11 +80,11 @@ msgstr "" msgid "Files" msgstr "Faili" -#: 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 "Pārtraukt līdzdalīšanu" -#: 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 "Izdzēst" @@ -78,122 +92,134 @@ msgstr "Izdzēst" msgid "Rename" msgstr "Pārdēvēt" -#: 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 "aizvietot" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Ieteiktais nosaukums" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "atcelt" -#: 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 "vienu soli atpakaļ" -#: 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 "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: 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 "Gaida savu kārtu" -#: 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 "Augšuplāde ir atcelta" -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: 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 "Nosaukums" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Izmērs" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Izmainīts" -#: 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 "" @@ -245,36 +271,36 @@ msgstr "Mape" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Augšuplādet" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Atcelt augšuplādi" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšuplādēt" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Lejuplādēt" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fails ir par lielu lai to augšuplādetu" -#: 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 "Jūsu augšuplādējamie faili pārsniedz servera pieļaujamo failu augšupielādes apjomu" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Šobrīd tiek pārbaudīti" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 6fd1d14dd6..26defed1f7 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -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-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 12:49+0000\n" -"Last-Translator: Georgi Stanojevski \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 \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,8 +164,8 @@ 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 "Грешка" @@ -177,7 +177,7 @@ msgstr "Името на апликацијата не е специфицира msgid "The required file {file} is not installed!" msgstr "Задолжителната датотека {file} не е инсталирана!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -205,11 +205,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:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Лозинка" @@ -274,23 +274,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 "Е-порака пратена" @@ -315,7 +315,7 @@ msgid "Request failed!" msgstr "Барањето не успеа!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Корисничко име" @@ -529,29 +529,29 @@ msgstr "веб сервиси под Ваша контрола" msgid "Log out" 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 "Ја заборавивте лозинката?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "запамти" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Најава" @@ -567,6 +567,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 "Безбедносно предупредување." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 861290c50d..5c3bf73323 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ 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 12:30+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 \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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 "Ниту еден фајл не се вчита. Непозната грешка" @@ -67,11 +81,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 "Избриши" @@ -79,122 +93,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 "Се генерира ZIP фајлот, ќе треба извесно време." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: 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 "1 датотека се подига" -#: 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} датотеки се подигаат" -#: 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" -msgstr "Неправилно име на папка. Користењето на „Shared“ е резервирано за 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 "{count} датотеки скенирани" -#: 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 "1 папка" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеки" @@ -246,36 +272,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 "Моментално скенирам" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 8c3a71a020..4d033dbb5f 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -164,8 +164,8 @@ 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 "Ralat" @@ -177,7 +177,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 "" @@ -205,11 +205,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 "Kata laluan" @@ -274,23 +274,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 "" @@ -314,8 +314,8 @@ 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 "Nama pengguna" @@ -404,44 +404,44 @@ msgstr "" msgid "Create an admin account" msgstr "buat akaun admin" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: 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 "akan digunakan" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Setup selesai" @@ -529,29 +529,29 @@ msgstr "Perkhidmatan web di bawah kawalan anda" msgid "Log out" msgstr "Log keluar" -#: 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 "Hilang kata laluan?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ingat" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log masuk" @@ -567,6 +567,11 @@ msgstr "sebelum" msgid "next" msgstr "seterus" +#: 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 "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 772c7c7ac4..5ae3ad9c1a 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ 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 12:30+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 \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\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 "Tiada fail dimuatnaik. Ralat tidak diketahui." @@ -68,11 +82,11 @@ msgstr "" msgid "Files" msgstr "fail" -#: 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 "Padam" @@ -80,122 +94,134 @@ msgstr "Padam" 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 "ganti" -#: 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 "Batal" -#: 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 "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Tutup" -#: 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 "Dalam proses" -#: 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 "Muatnaik dibatalkan." -#: 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 "Nama " -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Saiz" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: 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 "" @@ -247,36 +273,36 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Muat naik" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Muat turun" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Muat naik terlalu besar" -#: 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 "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index df292b0cea..f51cf3fe9b 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,9 +14,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 16:28+0000\n" -"Last-Translator: espenbye \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 \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -571,6 +571,11 @@ msgstr "forrige" msgid "next" msgstr "neste" +#: 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 "Sikkerhetsadvarsel!" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index efc1669f39..d6d18d6614 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ 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 12:30+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 \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,20 @@ msgstr "" "Language: nb_NO\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 "Ingen filer ble lastet opp. Ukjent feil." @@ -73,11 +87,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: 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 "Avslutt deling" -#: 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 "Slett" @@ -85,122 +99,134 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "erstatt" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "erstatt {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 "angre" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "slettet {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 "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "opprettet ZIP-fil, dette kan ta litt tid" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Lukk" -#: 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 "Ventende" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: 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} filer laster opp" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL-en kan ikke være tom." -#: 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 "{count} filer lest inn" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "feil under skanning" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endret" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -252,36 +278,36 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Last opp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Last ned" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Opplasting for stor" -#: 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 "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 322c4e3bbf..e7b0b0ce69 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2012. # Erik Bent , 2012. @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 17:28+0000\n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 20:49+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -578,6 +578,11 @@ msgstr "vorige" msgid "next" msgstr "volgende" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Updaten ownCloud naar versie %s, dit kan even duren." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Beveiligingswaarschuwing!" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f4f6a49c8a..9471312dac 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2011. # , 2012. @@ -18,8 +18,8 @@ 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 12:30+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 \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -28,6 +28,20 @@ msgstr "" "Language: nl\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 "Er was geen bestand geladen. Onbekende fout" @@ -65,21 +79,21 @@ msgstr "Schrijven naar schijf mislukt" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Niet genoeg ruimte beschikbaar" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Ongeldige directory." #: appinfo/app.php:10 msgid "Files" msgstr "Bestanden" -#: 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 "Stop delen" -#: 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 "Verwijder" @@ -87,122 +101,134 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "vervang" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "verving {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 "ongedaan maken" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "delen gestopt {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "verwijderde {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' is een ongeldige bestandsnaam." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Bestandsnaam kan niet leeg zijn." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "aanmaken ZIP-file, dit kan enige tijd duren." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Sluit" -#: 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 "Wachten" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: 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} bestanden aan het uploaden" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL kan niet leeg zijn." -#: 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 "{count} bestanden gescanned" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naam" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 map" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 bestand" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} bestanden" @@ -254,36 +280,36 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Upload" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Download" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Bestanden te groot" -#: 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 "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1828079d89..ed543c241b 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. # , 2011. # , 2012. # , 2012. @@ -18,9 +18,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 \n" +"POT-Creation-Date: 2013-01-08 00:30+0100\n" +"PO-Revision-Date: 2013-01-07 20:48+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -255,11 +255,11 @@ msgstr "Creëer" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Default opslag" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ongelimiteerd" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -271,11 +271,11 @@ msgstr "Groep beheerder" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Opslag" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Default" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index dad899207e..aeb254d738 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -163,8 +163,8 @@ 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 "Feil" @@ -176,7 +176,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 "" @@ -204,11 +204,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 "Passord" @@ -273,23 +273,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 "" @@ -313,8 +313,8 @@ 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 "Brukarnamn" @@ -403,44 +403,44 @@ msgstr "" msgid "Create an admin account" msgstr "Lag ein admin-konto" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurer databasen" -#: 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 "vil bli nytta" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Fullfør oppsettet" @@ -528,29 +528,29 @@ msgstr "Vev tjenester under din kontroll" msgid "Log out" msgstr "Logg ut" -#: 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 "Gløymt passordet?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "hugs" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Logg inn" @@ -566,6 +566,11 @@ msgstr "førre" msgid "next" msgstr "neste" +#: 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 "" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index e9aca8b687..28e98a9cd5 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,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 \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: nn_NO\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 "" @@ -66,11 +80,11 @@ msgstr "" msgid "Files" msgstr "Filer" -#: 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 "Slett" @@ -78,122 +92,134 @@ msgstr "Slett" 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 "Lukk" -#: 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 "Namn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storleik" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endra" -#: 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 "" @@ -245,36 +271,36 @@ msgstr "Mappe" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Last opp" -#: 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 "Ingenting her. Last noko opp!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Last ned" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "For stor opplasting" -#: 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 "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." -#: 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 "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 696e6808a5..cf638fc7cc 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "Error" @@ -175,7 +175,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 "Error al partejar" @@ -203,11 +203,11 @@ msgstr "Parteja amb" msgid "Share with link" msgstr "Parteja amb lo ligam" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Parat per senhal" -#: 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 "Senhal" @@ -272,23 +272,23 @@ msgstr "escafa" msgid "share" msgstr "parteja" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -312,8 +312,8 @@ 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 "Nom d'usancièr" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "Crea un compte admin" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: 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 "serà utilizat" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Configuracion acabada" @@ -527,29 +527,29 @@ msgstr "Services web jos ton contraròtle" msgid "Log out" msgstr "Sortida" -#: 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 "L'as perdut lo senhal ?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "bremba-te" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Dintrada" @@ -565,6 +565,11 @@ msgstr "dariièr" msgid "next" msgstr "venent" +#: 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 "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index abbd15f4a2..63681ee834 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -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 \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: oc\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 "Fichièrs" -#: 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 "Non parteja" -#: 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 "Escafa" @@ -77,122 +91,134 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: 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 "remplaça" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anulla" -#: 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 "defar" -#: 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 "Fichièr ZIP a se far, aquò pòt trigar un briu." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Error d'amontcargar" -#: 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 "Al esperar" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: 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 "Amontcargar anullat." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: 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 "error pendant l'exploracion" -#: 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 "Talha" -#: 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 "" -#: 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 "Dorsièr" msgid "From link" msgstr "" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Amontcarga" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: 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 "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 494afd0475..d4c9b68557 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # Kamil Domański , 2011. # , 2012. # Marcin Małecki , 2011, 2012. @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 09:39+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 08:40+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,55 +93,55 @@ msgstr "Błąd usunięcia %s z ulubionych." msgid "Settings" msgstr "Ustawienia" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minute temu" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 godzine temu" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "dziś" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ostani miesiąc" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ostatni rok" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "lat temu" @@ -171,8 +171,8 @@ msgid "The object type is not specified." msgstr "Typ obiektu nie jest określony." #: 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 "Błąd" @@ -184,7 +184,7 @@ msgstr "Nazwa aplikacji nie jest określona." msgid "The required file {file} is not installed!" msgstr "Żądany plik {file} nie jest zainstalowany!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -212,11 +212,11 @@ msgstr "Współdziel z" msgid "Share with link" msgstr "Współdziel z link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zabezpieczone hasłem" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Hasło" @@ -281,23 +281,23 @@ msgstr "usuń" msgid "share" msgstr "współdziel" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Błąd niszczenie daty wygaśnięcia" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Wyślij Email" @@ -322,7 +322,7 @@ msgid "Request failed!" msgstr "Próba nieudana!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Nazwa użytkownika" @@ -536,29 +536,29 @@ msgstr "usługi internetowe pod kontrolą" msgid "Log out" msgstr "Wylogowuje użytkownika" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatyczne logowanie odrzucone!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Jeśli nie było zmianie niedawno hasło, Twoje konto może być zagrożone!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Proszę zmienić swoje hasło, aby zabezpieczyć swoje konto ponownie." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "Zapamiętanie" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Zaloguj" @@ -574,6 +574,11 @@ msgstr "wstecz" msgid "next" msgstr "naprzód" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Ostrzeżenie o zabezpieczeniach!" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 66e7875a12..64357ad825 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # Marcin Małecki , 2011-2012. # , 2011. # , 2012. @@ -14,8 +14,8 @@ 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 12:30+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 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,20 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Plik nie został załadowany. Nieznany błąd" @@ -61,21 +75,21 @@ msgstr "Błąd zapisu na dysk" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Za mało miejsca" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Zła ścieżka." #: appinfo/app.php:10 msgid "Files" msgstr "Pliki" -#: 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 "Nie udostępniaj" -#: 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 "Usuwa element" @@ -83,122 +97,134 @@ msgstr "Usuwa element" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zastap" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "zastąpiony {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 "wróć" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiony {new_name} z {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "Udostępniane wstrzymane {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "usunięto {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' jest nieprawidłową nazwą pliku." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Nazwa pliku nie może być pusta." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Generowanie pliku ZIP, może potrwać pewien czas." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zamknij" -#: 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 "Oczekujące" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 plik wczytany" -#: 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} przesyłanie plików" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Błędna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL nie może być pusty." -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nazwa" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Rozmiar" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 folder" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 plik" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} pliki" @@ -250,36 +276,36 @@ msgstr "Katalog" msgid "From link" msgstr "Z linku" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Prześlij" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Przestań wysyłać" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Brak zawartości. Proszę wysłać pliki!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Wysyłany plik ma za duży rozmiar" -#: 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 "Pliki które próbujesz przesłać, przekraczają maksymalną, dopuszczalną wielkość." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 50ee10108d..5f22822bc4 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012. +# Cyryl Sochacki , 2012-2013. # , 2012. # Kamil Domański , 2011. # Marcin Małecki , 2011, 2012. @@ -17,9 +17,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 \n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 08:51+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -127,27 +127,27 @@ msgstr "-licencjonowane przez \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -161,8 +161,8 @@ 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 "" @@ -174,7 +174,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 "" @@ -202,11 +202,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 "" @@ -271,23 +271,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 "" @@ -311,8 +311,8 @@ 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 "Nazwa użytkownika" @@ -401,44 +401,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,29 +526,29 @@ msgstr "" msgid "Log out" 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 "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -564,6 +564,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 "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 84d6007fd2..4c12f2aa8c 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,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 \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "" @@ -64,11 +78,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 "" @@ -76,122 +90,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 "" @@ -243,36 +269,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 "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 3930ee5623..075f189c2c 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -17,8 +17,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -171,8 +171,8 @@ msgid "The object type is not specified." msgstr "O tipo de objeto não foi especificado." #: 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 "Erro" @@ -184,7 +184,7 @@ msgstr "O nome do app não foi especificado." msgid "The required file {file} is not installed!" msgstr "O arquivo {file} necessário não está instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -212,11 +212,11 @@ msgstr "Compartilhar com" msgid "Share with link" msgstr "Compartilhar com link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger com senha" -#: 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 "Senha" @@ -281,23 +281,23 @@ msgstr "remover" msgid "share" msgstr "compartilhar" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -321,8 +321,8 @@ msgstr "Email de redefinição de senha enviado." msgid "Request failed!" msgstr "A requisição falhou!" -#: 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 "Nome de Usuário" @@ -411,44 +411,44 @@ msgstr "Seu diretório de dados e seus arquivos estão, provavelmente, acessíve msgid "Create an admin account" msgstr "Criar uma conta de administrador" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: 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 "será usado" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuário de banco de dados" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Banco de dados do host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Concluir configuração" @@ -536,29 +536,29 @@ msgstr "web services sob seu controle" msgid "Log out" msgstr "Sair" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Entrada Automática no Sistema Rejeitada!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor troque sua senha para tornar sua conta segura novamente." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Esqueçeu sua senha?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "lembrete" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log in" @@ -574,6 +574,11 @@ msgstr "anterior" msgid "next" msgstr "próximo" +#: 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 "Aviso de Segurança!" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 8df95d7daf..105d7c9638 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,8 +15,8 @@ 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 12:30+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 \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,20 @@ msgstr "" "Language: pt_BR\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 "Nenhum arquivo foi transferido. Erro desconhecido" @@ -72,11 +86,11 @@ msgstr "" msgid "Files" msgstr "Arquivos" -#: 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 "Descompartilhar" -#: 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 "Excluir" @@ -84,122 +98,134 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "substituído {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 "desfazer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} não compartilhados" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} apagados" -#: 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 "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "gerando arquivo ZIP, isso pode levar um tempo." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Fechar" -#: 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 "Pendente" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: 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 "Enviando {count} arquivos" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de pasta inválido. O nome \"Shared\" é reservado pelo Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL não pode ficar em branco" -#: 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 "{count} arquivos scaneados" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "erro durante verificação" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} arquivos" @@ -251,36 +277,36 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Carregar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Baixar" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Arquivo muito grande" -#: 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 "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 92daefee09..55b05e3b89 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. # Duarte Velez Grilo , 2012. # , 2011, 2012. # Helder Meneses , 2012. @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 01:27+0000\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 00:22+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -89,55 +89,55 @@ msgstr "Erro a remover %s dos favoritos." msgid "Settings" msgstr "Definições" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Falta 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoje" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ontem" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ultímo mês" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "meses atrás" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ano passado" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anos atrás" @@ -167,8 +167,8 @@ msgid "The object type is not specified." msgstr "O tipo de objecto não foi especificado" #: 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 "Erro" @@ -180,7 +180,7 @@ msgstr "O nome da aplicação não foi especificado" msgid "The required file {file} is not installed!" msgstr "O ficheiro necessário {file} não está instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -208,11 +208,11 @@ msgstr "Partilhar com" msgid "Share with link" msgstr "Partilhar com link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Palavra chave" @@ -277,23 +277,23 @@ msgstr "apagar" msgid "share" msgstr "partilhar" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-mail enviado com sucesso!" @@ -318,7 +318,7 @@ msgid "Request failed!" msgstr "O pedido falhou!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Utilizador" @@ -532,29 +532,29 @@ msgstr "serviços web sob o seu controlo" msgid "Log out" msgstr "Sair" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Login automático rejeitado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sido comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Esqueceu a sua password?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" @@ -570,6 +570,11 @@ msgstr "anterior" msgid "next" msgstr "seguinte" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "A Actualizar o ownCloud para a versão %s, esta operação pode demorar." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Aviso de Segurança!" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index df8a73ee30..74b9f45b85 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,8 +12,8 @@ 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 15:33+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:21+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,20 @@ msgstr "" "Language: pt_PT\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 "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Não foi possível move o ficheiro %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Não foi possível renomear o ficheiro" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" @@ -69,11 +83,11 @@ msgstr "Directório Inválido" msgid "Files" msgstr "Ficheiros" -#: 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 "Deixar de partilhar" -#: 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 "Apagar" @@ -81,122 +95,134 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "substituir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Sugira um nome" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "{new_name} substituido" -#: 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 "desfazer" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "{files} não partilhado(s)" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "{files} eliminado(s)" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' não é um nome de ficheiro válido!" + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "O nome do ficheiro não pode estar vazio." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "a gerar o ficheiro ZIP, poderá demorar algum tempo." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Erro no envio" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Fechar" -#: 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 "Pendente" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: 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 "A carregar {count} ficheiros" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nome de pasta inválido! O uso de \"Shared\" (Partilhado) está reservado pelo OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "O URL não pode estar vazio." -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -248,36 +274,36 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Enviar" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Transferir" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Envio muito grande" -#: 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 "Os ficheiros que está a tentar enviar excedem o tamanho máximo de envio permitido neste servidor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 1596bc408e..bc3d07b17c 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 00:19+0000\n" -"Last-Translator: laurentiucristescu \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 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -569,6 +569,11 @@ msgstr "precedentul" msgid "next" msgstr "următorul" +#: 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 "Advertisment de Securitate" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index a3dee090ef..055036e3d8 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ 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 12:30+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 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,20 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2: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 "Nici un fișier nu a fost încărcat. Eroare necunoscută" @@ -69,11 +83,11 @@ msgstr "" msgid "Files" msgstr "Fișiere" -#: 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 "Anulează partajarea" -#: 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 "Șterge" @@ -81,122 +95,134 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "anulare" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "inlocuit {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 "Anulează ultima acțiune" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "nedistribuit {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "Sterse {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 "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "se generază fișierul ZIP, va dura ceva timp." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Eroare la încărcare" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Închide" -#: 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 "În așteptare" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: 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} fisiere incarcate" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nume de folder invalid. Numele este rezervat pentru OwnCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Adresa URL nu poate fi goală." -#: 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 "{count} fisiere scanate" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nume" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensiune" -#: 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 folder" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fisier" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fisiere" @@ -248,36 +274,36 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Încarcă" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Descarcă" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: 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 "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 6d05bc9e9d..f6eb332d6b 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -16,9 +16,9 @@ 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 18:19+0000\n" -"Last-Translator: sam002 \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 \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -170,8 +170,8 @@ 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 "Ошибка" @@ -183,7 +183,7 @@ msgstr "Имя приложения не указано" msgid "The required file {file} is not installed!" msgstr "Необходимый файл {file} не установлен!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -211,11 +211,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 "Пароль" @@ -280,23 +280,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 "Письмо отправлено" @@ -320,8 +320,8 @@ 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 "Имя пользователя" @@ -410,44 +410,44 @@ msgstr "Ваши каталоги данных и файлы, вероятно, msgid "Create an admin account" msgstr "Создать учётную запись администратора" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "будет использовано" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "Хост базы данных" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Завершить установку" @@ -535,29 +535,29 @@ msgstr "Сетевые службы под твоим контролем" msgid "Log out" 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 "Забыли пароль?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "запомнить" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Войти" @@ -573,6 +573,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 "Предупреждение безопасности!" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 7081267e64..05c0023619 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,8 +17,8 @@ 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 12:30+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 \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,20 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Файл не был загружен. Неизвестная ошибка" @@ -74,11 +88,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 "Удалить" @@ -86,122 +100,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 "создание ZIP-файла, это может занять некоторое время." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: 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 "загружается 1 файл" -#: 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} файлов загружается" -#: 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" -msgstr "Не правильное имя папки. Имя \"Shared\" резервировано в 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 "{count} файлов просканировано" -#: 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 "1 папка" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлов" @@ -253,36 +279,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 "Текущее сканирование" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index c94ef7d516..73807cdb09 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 08:08+0000\n" -"Last-Translator: AnnaSch \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 \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\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 "Предупреждение системы безопасности!" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index f8f0840c93..5c40bd57bd 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,8 +9,8 @@ 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 12:30+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 \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Файл не был загружен. Неизвестная ошибка" @@ -66,11 +80,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 "Удалить" @@ -78,122 +92,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 "Cовместное использование прекращено {файлы}" -#: 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 "Создание ZIP-файла, это может занять некоторое время." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" -#: 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 "загрузка 1 файла" -#: 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" -msgstr "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL не должен быть пустым." -#: 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 "1 папка" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{количество} файлов" @@ -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 "Отмена загрузки" -#: 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 "Текущее сканирование" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 34d894bfea..ec48367e16 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -164,8 +164,8 @@ 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 "දෝෂයක්" @@ -177,7 +177,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 "" @@ -205,11 +205,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 "මුර පදය " @@ -274,23 +274,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 "" @@ -314,8 +314,8 @@ 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 "පරිශීලක නම" @@ -404,44 +404,44 @@ msgstr "ඔබගේ දත්ත ඩිරෙක්ටරිය හා ගො msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "දියුණු/උසස්" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "දත්ත ෆෝල්ඩරය" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "භාවිතා වනු ඇත" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" @@ -529,29 +529,29 @@ msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවා msgid "Log out" 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 "මුරපදය අමතකද?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "ප්‍රවේශවන්න" @@ -567,6 +567,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 "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index ce3d8e19e6..b905772406 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ 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 12:30+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 \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: si_LK\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 "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" @@ -66,11 +80,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 "මකන්න" @@ -78,122 +92,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 "1 ගොනුවක් උඩගත කෙරේ" -#: 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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: 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 "1 ෆොල්ඩරයක්" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -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 "උඩුගත කිරීම අත් හරින්න" -#: 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 "වර්තමාන පරික්ෂාව" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index b227585630..18a21cd799 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -11,8 +11,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "Nešpecifikovaný 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 "Nešpecifikované meno aplikácie." msgid "The required file {file} is not installed!" msgstr "Požadovaný súbor {file} nie je inštalovaný!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -206,11 +206,11 @@ msgstr "Zdieľať s" msgid "Share with link" msgstr "Zdieľať cez odkaz" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Chrániť heslom" -#: 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 "zmazať" msgid "share" msgstr "zdieľať" -#: 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ánené heslom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu vypršania platnosti" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu vypršania platnosti" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -315,8 +315,8 @@ msgstr "Obnovovací email bol odoslaný." msgid "Request failed!" msgstr "Požiadavka zlyhala!" -#: 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 "Prihlasovacie meno" @@ -405,44 +405,44 @@ msgstr "Váš priečinok s dátami a Vaše súbory sú pravdepodobne dostupné z msgid "Create an admin account" msgstr "Vytvoriť administrátorský účet" -#: 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 "Priečinok dát" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Nastaviť databázu" -#: 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žité" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Dokončiť inštaláciu" @@ -530,29 +530,29 @@ msgstr "webové služby pod vašou kontrolou" msgid "Log out" msgstr "Odhlásiť" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatické prihlásenie bolo zamietnuté!" -#: 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ávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný." -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie Vášho účtu" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "zapamätať" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Prihlásiť sa" @@ -568,6 +568,11 @@ msgstr "späť" msgid "next" msgstr "ďalej" +#: 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 "Bezpečnostné varovanie!" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 6e4cd38270..1d4d69bb59 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,8 +11,8 @@ 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 12:30+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 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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 "Žiaden súbor nebol odoslaný. Neznáma chyba" @@ -68,11 +82,11 @@ msgstr "" msgid "Files" msgstr "Súbory" -#: 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 "Nezdielať" -#: 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 "Odstrániť" @@ -80,122 +94,134 @@ msgstr "Odstrániť" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "prepísaný {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 "vrátiť" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "zdieľanie zrušené pre {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "zmazané {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 "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "generujem ZIP-súbor, môže to chvíľu trvať." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Chyba odosielania" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zavrieť" -#: 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 "Čaká sa" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: 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} súborov odosielaných" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Nesprávne meno adresára. Použitie slova \"Shared\" (Zdieľané) je vyhradené službou ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL nemôže byť prázdne" -#: 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 "{count} súborov prehľadaných" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Meno" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veľkosť" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Upravené" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 súbor" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} súborov" @@ -247,36 +273,36 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Odoslať" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Stiahnuť" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Odosielaný súbor je príliš veľký" -#: 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 "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Práve prehliadané" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 679277649a..7e3caa36f5 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -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-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 16:29+0000\n" -"Last-Translator: Peter Peroša \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 \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,8 +165,8 @@ msgid "The object type is not specified." msgstr "Vrsta predmeta ni podana." #: 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 "Napaka" @@ -178,7 +178,7 @@ msgstr "Ime aplikacije ni podano." msgid "The required file {file} is not installed!" msgstr "Zahtevana datoteka {file} ni nameščena!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -206,11 +206,11 @@ msgstr "Omogoči souporabo z" msgid "Share with link" msgstr "Omogoči souporabo s povezavo" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Geslo" @@ -275,23 +275,23 @@ msgstr "izbriše" msgid "share" msgstr "določi souporabo" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Pošiljam ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-pošta je bila poslana" @@ -316,7 +316,7 @@ msgid "Request failed!" msgstr "Zahtevek je spodletel!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Uporabniško Ime" @@ -530,29 +530,29 @@ msgstr "spletne storitve pod vašim nadzorom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Samodejno prijavljanje je zavrnjeno!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Če vašega gesla niste nedavno spremenili, je vaš račun lahko ogrožen!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Spremenite geslo za izboljšanje zaščite računa." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "Zapomni si me" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Prijava" @@ -568,6 +568,11 @@ msgstr "nazaj" msgid "next" msgstr "naprej" +#: 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 "Varnostno opozorilo!" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 5958b77029..5ed732142e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ 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 12:30+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 \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\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 "Nobena datoteka ni naložena. Neznana napaka." @@ -68,11 +82,11 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: 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 "Odstrani iz souporabe" -#: 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 "Izbriši" @@ -80,122 +94,134 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "zamenjano je ime {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 "razveljavi" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "zamenjano ime {new_name} z imenom {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "odstranjeno iz souporabe {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "izbrisano {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 "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Ustvarjanje datoteke ZIP. To lahko traja nekaj časa." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Napaka med nalaganjem" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Zapri" -#: 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 "V čakanju ..." -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: 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 "nalagam {count} datotek" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "Naslov URL ne sme biti prazen." -#: 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 "{count} files scanned" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} datotek" @@ -247,36 +273,36 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Pošlji" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni ničesar. Naložite kaj!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Prejmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Nalaganje ni mogoče, ker je preveliko" -#: 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 "Datoteke, ki jih želite naložiti, presegajo največjo dovoljeno velikost na tem strežniku." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 994085414f..3fb069e1e2 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -161,8 +161,8 @@ 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 "" @@ -174,7 +174,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 "" @@ -202,11 +202,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 "" @@ -271,23 +271,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 "" @@ -311,8 +311,8 @@ 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 "" @@ -401,44 +401,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,29 +526,29 @@ msgstr "" msgid "Log out" 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 "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -564,6 +564,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 "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index efe363e09e..57c754a69e 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,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 \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: sq\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 "" @@ -64,11 +78,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 "" @@ -76,122 +90,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 "" @@ -243,36 +269,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 "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 9bf9f33c5e..f934d66c73 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -164,8 +164,8 @@ 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 "Грешка" @@ -177,7 +177,7 @@ msgstr "Име програма није унето." msgid "The required file {file} is not installed!" msgstr "Потребна датотека {file} није инсталирана." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -205,11 +205,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 "Лозинка" @@ -274,23 +274,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 "" @@ -314,8 +314,8 @@ 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 "Корисничко име" @@ -404,44 +404,44 @@ msgstr "Тренутно су ваши подаци и датотеке дост msgid "Create an admin account" msgstr "Направи административни налог" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "ће бити коришћен" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "Домаћин базе" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Заврши подешавање" @@ -529,29 +529,29 @@ msgstr "веб сервиси под контролом" msgid "Log out" 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 "Изгубили сте лозинку?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "упамти" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Пријава" @@ -567,6 +567,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 "Сигурносно упозорење!" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 19a9c5e5c0..7459361190 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,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 \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "" @@ -67,11 +81,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 "Обриши" @@ -79,122 +93,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 "правим ZIP датотеку…" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" -#: 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 "Отпремам 1 датотеку" -#: 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} датотеке/а" -#: 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" -msgstr "Неисправан назив фасцикле. „Дељено“ користи Оунклауд." +#: 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 "Скенирано датотека: {count}" -#: 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 "1 фасцикла" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеке/а" @@ -246,36 +272,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 "Тренутно скенирање" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index d005ce3076..656f2cb83d 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "" @@ -175,7 +175,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 "" @@ -203,11 +203,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 "Lozinka" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "Korisničko ime" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "Napravi administrativni nalog" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Facikla podataka" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Podešavanje baze" -#: 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 "će biti korišćen" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Završi podešavanje" @@ -527,29 +527,29 @@ msgstr "" msgid "Log out" msgstr "Odjava" -#: 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 "Izgubili ste lozinku?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "upamti" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -565,6 +565,11 @@ msgstr "prethodno" msgid "next" msgstr "sledeće" +#: 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 "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index be81ff388b..81511f85a8 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -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 \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Fajlovi" -#: 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 "Obriši" @@ -77,122 +91,134 @@ msgstr "Obriši" 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 "Zatvori" -#: 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 "Ime" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja izmena" -#: 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 "Pošalji" -#: 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 "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: 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 "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: 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 "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index ec20f3de3d..2a96ecd716 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -6,15 +6,15 @@ # Christer Eriksson , 2012. # Daniel Sandman , 2012. # , 2011. -# Magnus Höglund , 2012. +# Magnus Höglund , 2012-2013. # , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-26 00:11+0100\n" -"PO-Revision-Date: 2012-12-25 08:10+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 07:40+0000\n" "Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -89,55 +89,55 @@ msgstr "Fel vid borttagning av %s från favoriter." msgid "Settings" msgstr "Inställningar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "i dag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "i går" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "förra månaden" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "månader sedan" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "förra året" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "år sedan" @@ -570,6 +570,11 @@ msgstr "föregående" msgid "next" msgstr "nästa" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Uppdaterar ownCloud till version %s, detta kan ta en stund." + #: templates/verify.php:5 msgid "Security Warning!" msgstr "Säkerhetsvarning!" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index ae07b2b0da..16e2e10256 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -5,7 +5,7 @@ # Translators: # Christer Eriksson , 2012. # Daniel Sandman , 2012. -# Magnus Höglund , 2012. +# Magnus Höglund , 2012-2013. # , 2012. # , 2011, 2012. # , 2012. @@ -13,8 +13,8 @@ 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 12:30+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 \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,20 @@ msgstr "" "Language: sv\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 "Ingen fil uppladdad. Okänt fel" @@ -60,21 +74,21 @@ msgstr "Misslyckades spara till disk" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Inte tillräckligt med utrymme tillgängligt" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Felaktig mapp." #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: 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 "Sluta dela" -#: 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 "Radera" @@ -82,122 +96,134 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "ersätt" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "ersatt {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 "ångra" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "stoppad delning {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "raderade {files}" -#: js/files.js:33 +#: js/files.js:31 +msgid "'.' is an invalid file name." +msgstr "'.' är ett ogiltigt filnamn." + +#: js/files.js:36 +msgid "File name cannot be empty." +msgstr "Filnamn kan inte vara tomt." + +#: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "genererar ZIP-fil, det kan ta lite tid." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Stäng" -#: 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 "Väntar" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 filuppladdning" -#: 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} filer laddas upp" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL kan inte vara tom." -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" + +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storlek" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ändrad" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -249,36 +275,36 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Ladda upp" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "För stor uppladdning" -#: 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 "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 454448de31..6558c4d5af 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "வழு" @@ -175,7 +175,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 "பகிரும் போதான வழு" @@ -203,11 +203,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 "கடவுச்சொல்" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "பயனாளர் பெயர்" @@ -402,44 +402,44 @@ msgstr "உங்களுடைய தரவு அடைவு மற்று msgid "Create an admin account" msgstr " நிர்வாக கணக்கொன்றை உருவாக்குக" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "மேம்பட்ட" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "தரவு கோப்புறை" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "பயன்படுத்தப்படும்" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" @@ -527,29 +527,29 @@ msgstr "உங்கள் கட்டுப்பாட்டின் கீ msgid "Log out" 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 "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "புகுபதிகை" @@ -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 "பாதுகாப்பு எச்சரிக்கை!" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 86eaae3dd5..5c90380e9a 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -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-05 00:02+0100\n" -"PO-Revision-Date: 2013-01-04 12:30+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 \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: ta_LK\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 "பகிரப்படாதது {கோப்புகள்}" -#: 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 " ZIP கோப்பு உருவாக்கப்படுகின்றது, இது சில நேரம் ஆகலாம்." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" -#: 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 "1 கோப்பு பதிவேற்றப்படுகிறது" -#: 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" -msgstr "செல்லுபடியற்ற கோப்புறை பெயர். \"பகிர்வின்\" பாவனை Owncloud இனால் ஒதுக்கப்பட்டுள்ளது" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL வெறுமையாக இருக்கமுடியாது." -#: 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 "1 கோப்புறை" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 கோப்பு" -#: 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 "தற்போது வருடப்படுபவை" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 6be8fc8018..cf942aa821 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "" -#: 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 "" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" 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 "" -#: 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 "" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "" @@ -564,6 +564,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 "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 75c8980fa8..6f509fb1ff 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,20 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\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 "" @@ -64,11 +78,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 "" @@ -76,122 +90,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 "" @@ -243,36 +269,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 "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index e43c114369..ac1fed301a 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 9036d8d309..e017b4bd81 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index a260296a66..bb256dbbf3 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 7890541413..379072c4af 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 7da716a8aa..4ceda32bb3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f933cb0382..be2ac33514 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index fc4eb6385e..e3da6808aa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 6189b17c9a..eb2179f0e9 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 0138e60fb8..181be943eb 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:04+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -163,8 +163,8 @@ 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 "พบข้อผิดพลาด" @@ -176,7 +176,7 @@ msgstr "ชื่อของแอปยังไม่ได้รับกา msgid "The required file {file} is not installed!" msgstr "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -204,11 +204,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 "รหัสผ่าน" @@ -273,23 +273,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 "" @@ -313,8 +313,8 @@ 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 "ชื่อผู้ใช้งาน" @@ -403,44 +403,44 @@ msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ msgid "Create an admin account" msgstr "สร้าง บัญชีผู้ดูแลระบบ" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "จะถูกใช้" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "Database host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" @@ -528,29 +528,29 @@ msgstr "web services under your control" msgid "Log out" 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 "ลืมรหัสผ่าน?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "เข้าสู่ระบบ" @@ -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 "คำเตือนเพื่อความปลอดภัย!" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 4ba029facf..290a7cebd8 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ 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 12:30+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 \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\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 "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" @@ -66,11 +80,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 "ลบ" @@ -78,122 +92,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 "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: 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 "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: 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} ไฟล์" -#: 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" -msgstr "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL ไม่สามารถเว้นว่างได้" -#: 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 "สแกนไฟล์แล้ว {count} ไฟล์" -#: 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 "1 โฟลเดอร์" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ไฟล์" @@ -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 "ยกเลิกการอัพโหลด" -#: 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 "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 7058a258c8..d8d8d152b7 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -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-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 12:25+0000\n" -"Last-Translator: Necdet Yücel \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 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -568,6 +568,11 @@ msgstr "önceki" msgid "next" msgstr "sonraki" +#: 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 "Güvenlik Uyarısı!" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 0346536aa7..641b6c26f9 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ 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 12:30+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 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,20 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\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 "Dosya yüklenmedi. Bilinmeyen hata" @@ -69,11 +83,11 @@ msgstr "" msgid "Files" msgstr "Dosyalar" -#: 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 "Paylaşılmayan" -#: 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 "Sil" @@ -81,122 +95,134 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "değiştir" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "iptal" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "değiştirilen {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 "geri al" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "paylaşılmamış {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "silinen {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 "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "ZIP dosyası oluşturuluyor, biraz sürebilir." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Kapat" -#: 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 "Bekliyor" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: 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} dosya yükleniyor" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Geçersiz dizin ismi. \"Shared\" dizini OwnCloud tarafından kullanılmaktadır." +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL boş olamaz." -#: 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 "{count} dosya tarandı" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "tararamada hata oluşdu" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ad" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Boyut" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 dosya" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosya" @@ -248,36 +274,36 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Yükle" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "İndir" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Yüklemeniz çok büyük" -#: 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 "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 6fa7d5e24e..df066c2f2b 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -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-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 15:49+0000\n" -"Last-Translator: volodya327 \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 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,8 +165,8 @@ 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 "Помилка" @@ -178,7 +178,7 @@ msgstr "Не визначено ім'я програми." msgid "The required file {file} is not installed!" msgstr "Необхідний файл {file} не встановлено!" -#: 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 "Ел. пошта надіслана" @@ -315,8 +315,8 @@ 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 "Ім'я користувача" @@ -405,44 +405,44 @@ msgstr "Ваш каталог з даними та Ваші файли можл msgid "Create an admin account" msgstr "Створити обліковий запис адміністратора" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Додатково" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "буде використано" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "Хост бази даних" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Завершити налаштування" @@ -530,29 +530,29 @@ msgstr "веб-сервіс під вашим контролем" msgid "Log out" 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 "Забули пароль?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Вхід" @@ -568,6 +568,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 "Попередження про небезпеку!" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 4e662e7cff..12e46e92ae 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ 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 12:30+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 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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 "Не завантажено жодного файлу. Невідома помилка" @@ -67,11 +81,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 "Видалити" @@ -79,122 +93,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 "Створення ZIP-файлу, це може зайняти певний час." -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: 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 "1 файл завантажується" -#: 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} файлів завантажується" -#: 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" -msgstr "Невірне ім'я каталогу. Використання \"Shared\" зарезервовано Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL не може бути пустим." -#: 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 "{count} файлів проскановано" -#: 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 "1 папка" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлів" @@ -246,36 +272,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 "Поточне сканування" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index bb3bb8b48d..54b468ce53 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -12,8 +12,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -166,8 +166,8 @@ msgid "The object type is not specified." msgstr "Loại đối tượng không được chỉ định." #: 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 "Lỗi" @@ -179,7 +179,7 @@ msgstr "Tên ứng dụng không được chỉ định." msgid "The required file {file} is not installed!" msgstr "Tập tin cần thiết {file} không được cài đặt!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -207,11 +207,11 @@ msgstr "Chia sẻ với" msgid "Share with link" msgstr "Chia sẻ với liên kết" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: 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 "Mật khẩu" @@ -276,23 +276,23 @@ msgstr "xóa" msgid "share" msgstr "chia sẻ" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" @@ -316,8 +316,8 @@ msgstr "Thiết lập lại email gởi." msgid "Request failed!" msgstr "Yêu cầu của bạn không thành công !" -#: 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 "Tên người dùng" @@ -406,44 +406,44 @@ msgstr "Thư mục dữ liệu và những tập tin của bạn có thể dễ msgid "Create an admin account" msgstr "Tạo một tài khoản quản trị" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Nâng cao" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Cấu hình cơ sở dữ liệu" -#: 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 "được sử dụng" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Database host" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Cài đặt hoàn tất" @@ -531,29 +531,29 @@ msgstr "các dịch vụ web dưới sự kiểm soát của bạn" msgid "Log out" msgstr "Đăng xuất" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Tự động đăng nhập đã bị từ chối !" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tài khoản của bạn có thể gặp nguy hiểm!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Đăng nhập" @@ -569,6 +569,11 @@ msgstr "Lùi lại" msgid "next" msgstr "Kế tiếp" +#: 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 "Cảnh báo bảo mật !" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 072b6a52b7..972bed7967 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ 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 12:30+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 \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\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 "Không có tập tin nào được tải lên. Lỗi không xác định" @@ -68,11 +82,11 @@ msgstr "" msgid "Files" msgstr "Tập tin" -#: 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 "Không chia sẽ" -#: 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 "Xóa" @@ -80,122 +94,134 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "replace" msgstr "thay thế" -#: js/filelist.js:199 +#: js/filelist.js:205 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:199 js/filelist.js:201 +#: js/filelist.js:205 js/filelist.js:207 msgid "cancel" msgstr "hủy" -#: js/filelist.js:248 +#: js/filelist.js:254 msgid "replaced {new_name}" msgstr "đã thay thế {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 "lùi lại" -#: js/filelist.js:250 +#: js/filelist.js:256 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:282 +#: js/filelist.js:288 msgid "unshared {files}" msgstr "hủy chia sẽ {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" msgstr "đã xóa {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 "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." msgstr "Tạo tập tin ZIP, điều này có thể làm mất một chút thời gian" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" -#: js/files.js:212 +#: js/files.js:224 msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:229 +#: js/files.js:241 msgid "Close" msgstr "Đóng" -#: 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 "Chờ" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: 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} tập tin đang tải lên" -#: js/files.js:343 js/files.js:376 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:445 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "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." -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "Tên thư mục không hợp lệ. Sử dụng \"Chia sẻ\" được dành riêng bởi Owncloud" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL không được để trống." -#: 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 "{count} tập tin đã được quét" -#: js/files.js:707 +#: js/files.js:735 msgid "error while scanning" msgstr "lỗi trong khi quét" -#: js/files.js:780 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Tên" -#: js/files.js:781 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:782 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:801 +#: js/files.js:829 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tập tin" @@ -247,36 +273,36 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:35 +#: templates/index.php:18 msgid "Upload" msgstr "Tải lên" -#: templates/index.php:43 +#: templates/index.php:41 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:58 +#: templates/index.php:56 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:72 +#: templates/index.php:70 msgid "Download" msgstr "Tải xuống" -#: templates/index.php:104 +#: templates/index.php:102 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: 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 "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:111 +#: templates/index.php:109 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index ad918d8e01..22b5d6cdfc 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -163,8 +163,8 @@ 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 "错误" @@ -176,7 +176,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 "分享出错" @@ -204,11 +204,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 "密码" @@ -273,23 +273,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 "" @@ -313,8 +313,8 @@ 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 "用户名" @@ -403,44 +403,44 @@ msgstr "您的数据文件夹和您的文件或许能够从互联网访问。own msgid "Create an admin account" msgstr "建立一个 管理帐户" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "进阶" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "数据存放文件夹" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "将会使用" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "数据库主机" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "完成安装" @@ -528,29 +528,29 @@ msgstr "你控制下的网络服务" msgid "Log out" 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 "忘记密码?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "备忘" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "登陆" @@ -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 "安全警告!" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 7bb14a3205..b066b89ba0 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ 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 12:30+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 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\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 "没有上传文件。未知错误" @@ -66,11 +80,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 "删除" @@ -78,122 +92,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 "已用 {old_name} 替换 {new_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 "正在生成ZIP文件,这可能需要点时间" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" -#: 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 "Pending" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: 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} 个文件正在上传" -#: 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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:699 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} 个文件已扫描" -#: 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 "1 个文件夹" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -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 "取消上传" -#: 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 "正在扫描" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 2742708ecc..8b6fa46a9a 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,9 +12,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 14:31+0000\n" -"Last-Translator: Dianjin Wang <1132321739qq@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 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -569,6 +569,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 "安全警告!" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 6a22db26f1..9d7a6aacba 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -12,8 +12,8 @@ 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 12:30+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 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,20 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\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 "没有文件被上传。未知错误" @@ -69,11 +83,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 "删除" @@ -81,122 +95,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 "已将 {old_name}替换成 {new_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 "正在生成 ZIP 文件,可能需要一些时间" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: 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 "1个文件上传中" -#: 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} 个文件上传中" -#: 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" -msgstr "无效的文件夹名称。”Shared“ 是 Owncloud 保留字符。" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL不能为空" -#: 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 "{count} 个文件已扫描。" -#: 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 "1个文件夹" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -248,36 +274,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 "当前扫描" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 27fcd9c0a1..c6e8fb669f 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ 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 "" @@ -175,7 +175,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 "" @@ -203,11 +203,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 "" @@ -272,23 +272,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 "" @@ -312,8 +312,8 @@ 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 "" @@ -402,44 +402,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -527,29 +527,29 @@ msgstr "" msgid "Log out" 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 "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -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 "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 7bd0e19490..56eb4f59e2 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,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 \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\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 "" @@ -64,11 +78,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 "" @@ -76,122 +90,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 "" @@ -243,36 +269,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 "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 9e9cb51587..45d59ebdf4 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -6,13 +6,14 @@ # Donahue Chuang , 2012. # , 2012. # Ming Yi Wu , 2012. +# , 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-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:18+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,38 +24,38 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "用戶 %s 與您分享了一個檔案" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "用戶 %s 與您分享了一個資料夾" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "未提供分類類型。" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "無分類添加?" +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 @@ -66,75 +67,75 @@ msgstr "不支援的物件類型" #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "未提供 %s ID 。" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "加入 %s 到最愛時發生錯誤。" #: 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 msgid "Error removing %s from favorites." -msgstr "" +msgstr "從最愛移除 %s 時發生錯誤。" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" msgstr "設定" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 個小時前" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" -msgstr "{hours} 個小時前" +msgstr "{hours} 小時前" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "今天" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "昨天" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "上個月" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "幾個月前" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "去年" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "幾年前" @@ -161,23 +162,23 @@ msgstr "Ok" #: 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 msgid "The object type is not specified." -msgstr "" +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 "錯誤" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "沒有詳述APP名稱." +msgstr "沒有指定 app 名稱。" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "沒有安裝所需的檔案 {file} !" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -187,11 +188,11 @@ msgstr "取消分享時發生錯誤" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "修改權限時發生錯誤" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "由 {owner} 分享給您和 {group}" #: js/share.js:153 msgid "Shared with you by {owner}" @@ -199,28 +200,28 @@ msgstr "{owner} 已經和您分享" #: js/share.js:158 msgid "Share with" -msgstr "與分享" +msgstr "與...分享" #: js/share.js:163 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 "密碼" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "將連結 email 給別人" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "寄出" #: js/share.js:177 msgid "Set expiration date" @@ -232,15 +233,15 @@ msgstr "到期日" #: js/share.js:210 msgid "Share via email:" -msgstr "透過email分享:" +msgstr "透過 email 分享:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "沒有找到任何人" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "不允許重新分享" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -274,25 +275,25 @@ 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 "密碼保護" +msgstr "受密碼保護" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +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 "" +msgstr "正在寄出..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email 已寄出" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -300,28 +301,28 @@ msgstr "ownCloud 密碼重設" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "請循以下聯結重設你的密碼: (聯結) " +msgstr "請循以下聯結重設你的密碼: {link}" #: 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." -msgstr "重設郵件已送出." +msgstr "重設郵件已送出。" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "請求失敗!" +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 "使用者名稱" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "要求重設" +msgstr "請求重設" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -361,7 +362,7 @@ msgstr "幫助" #: templates/403.php:12 msgid "Access forbidden" -msgstr "禁止存取" +msgstr "存取被拒" #: templates/404.php:12 msgid "Cloud not found" @@ -373,7 +374,7 @@ msgstr "編輯分類" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "添加" +msgstr "增加" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" @@ -383,13 +384,13 @@ msgstr "安全性警告" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "沒有可用的隨機數字產生器, 請啟用 PHP 中 OpenSSL 擴充功能." +msgstr "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。" #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。" #: templates/installation.php:32 msgid "" @@ -398,50 +399,50 @@ msgid "" "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." -msgstr "" +msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" #: templates/installation.php:36 msgid "Create an admin account" msgstr "建立一個管理者帳號" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "進階" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "將會使用" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "完成設定" @@ -523,35 +524,35 @@ msgstr "十二月" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "網路服務已在你控制" +msgstr "網路服務在您控制之下" #: templates/layout.user.php:45 msgid "Log out" msgstr "登出" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "自動登入被拒!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +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 "記住" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "登入" @@ -567,15 +568,20 @@ msgstr "上一頁" msgid "next" msgstr "下一頁" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" + #: templates/verify.php:5 msgid "Security Warning!" -msgstr "安全性警告!" +msgstr "安全性警告!" #: templates/verify.php:6 msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "請輸入您的密碼。
基於安全性的理由,您有時候可能會被要求再次輸入密碼。" #: templates/verify.php:16 msgid "Verify" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 53c704dd1a..bed97e748a 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -6,14 +6,15 @@ # Donahue Chuang , 2012. # , 2012. # Eddy Chang , 2012. +# , 2013. # ywang , 2012. 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 12:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:24+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,9 +22,23 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "無法移動 %s - 同名的檔案已經存在" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "無法移動 %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "無法重新命名檔案" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" -msgstr "沒有檔案被上傳. 未知的錯誤." +msgstr "沒有檔案被上傳。未知的錯誤。" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" @@ -32,17 +47,17 @@ msgstr "無錯誤,檔案上傳成功" #: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" #: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制" +msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" #: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "只有部分檔案被上傳" +msgstr "只有檔案的一部分被上傳" #: ajax/upload.php:27 msgid "No file was uploaded" @@ -58,21 +73,21 @@ msgstr "寫入硬碟失敗" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "沒有足夠的可用空間" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "無效的資料夾。" #: appinfo/app.php:10 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 "刪除" @@ -80,122 +95,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 "" +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 "" +msgstr "已取消分享 {files}" -#: js/filelist.js:284 +#: js/filelist.js:290 msgid "deleted {files}" -msgstr "" +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 "" +msgstr "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。" -#: js/files.js:174 +#: js/files.js:186 msgid "generating ZIP-file, it may take some time." -msgstr "產生壓縮檔, 它可能需要一段時間." +msgstr "產生 ZIP 壓縮檔,這可能需要一段時間。" -#: js/files.js:212 +#: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" -#: 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 "" +msgstr "等候中" -#: js/files.js:268 +#: js/files.js:280 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: 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} 個檔案正在上傳" -#: 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 "檔案上傳中. 離開此頁面將會取消上傳." +msgstr "檔案上傳中。離開此頁面將會取消上傳。" -#: js/files.js:515 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用" +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL 不能為空白." -#: js/files.js:699 +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" + +#: js/files.js:727 msgid "{count} files scanned" -msgstr "" +msgstr "{count} 個檔案已掃描" -#: 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 "1 個資料夾" -#: js/files.js:803 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:811 +#: js/files.js:839 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:813 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 個檔案" @@ -205,15 +232,15 @@ msgstr "檔案處理" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "最大上傳容量" +msgstr "最大上傳檔案大小" #: templates/admin.php:10 msgid "max. possible: " -msgstr "最大允許: " +msgstr "最大允許:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "針對多檔案和目錄下載是必填的" +msgstr "針對多檔案和目錄下載是必填的。" #: templates/admin.php:17 msgid "Enable ZIP-download" @@ -225,7 +252,7 @@ msgstr "0代表沒有限制" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "針對ZIP檔案最大輸入大小" +msgstr "針對 ZIP 檔案最大輸入大小" #: templates/admin.php:26 msgid "Save" @@ -245,38 +272,38 @@ msgstr "資料夾" #: templates/index.php:14 msgid "From link" -msgstr "" +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 "沒有任何東西。請上傳內容!" +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 "你試圖上傳的檔案已超過伺服器的最大容量限制。 " +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 "目前掃描" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 6168a8b0d3..59f4edcfa6 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -5,6 +5,7 @@ # Translators: # Donahue Chuang , 2012. # , 2012. +# , 2013. # , 2012. # , 2012. # , 2012. @@ -13,9 +14,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 \n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,27 +124,27 @@ msgstr "-核准: " #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "用戶說明文件" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "管理者說明文件" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "線上說明文件" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "論壇" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Bugtracker" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "商用支援" #: templates/personal.php:8 #, php-format @@ -156,15 +157,15 @@ msgstr "客戶" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "下載桌面客戶端" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "下載 Android 客戶端" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "下載 iOS 客戶端" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -216,15 +217,15 @@ msgstr "幫助翻譯" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "版本" #: templates/personal.php:65 msgid "" @@ -250,11 +251,11 @@ msgstr "創造" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "預設儲存區" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "無限制" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -266,11 +267,11 @@ msgstr "群組 管理員" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "儲存區" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "預設" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/zu_ZA/core.po b/l10n/zu_ZA/core.po index 57a6cff989..c5466fa4b4 100644 --- a/l10n/zu_ZA/core.po +++ b/l10n/zu_ZA/core.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-01-07 00:04+0100\n" +"PO-Revision-Date: 2013-01-06 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -161,8 +161,8 @@ 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 "" @@ -174,7 +174,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 "" @@ -202,11 +202,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 "" @@ -271,23 +271,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 "" @@ -311,8 +311,8 @@ 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 "" @@ -401,44 +401,44 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" 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 "" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" 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 "" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "" @@ -526,29 +526,29 @@ msgstr "" msgid "Log out" 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 "" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "" @@ -564,6 +564,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 "" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index 86f620523c..d9c0a65c13 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,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 \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: zu_ZA\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 "" @@ -64,11 +78,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 "" @@ -76,122 +90,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 "" @@ -243,36 +269,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 "" diff --git a/lib/connector/sabre/ServiceUnavailable.php b/lib/connector/sabre/ServiceUnavailable.php new file mode 100644 index 0000000000..c1cc815c98 --- /dev/null +++ b/lib/connector/sabre/ServiceUnavailable.php @@ -0,0 +1,22 @@ + + * + * @license AGPL3 + */ + +class Sabre_DAV_Exception_ServiceUnavailable extends Sabre_DAV_Exception { + + /** + * Returns the HTTP statuscode for this exception + * + * @return int + */ + public function getHTTPCode() { + + return 503; + } +} diff --git a/lib/connector/sabre/client.php b/lib/connector/sabre/client.php deleted file mode 100644 index 8df5fb9a9a..0000000000 --- a/lib/connector/sabre/client.php +++ /dev/null @@ -1,173 +0,0 @@ - - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see . - * - */ - -class OC_Connector_Sabre_Client extends Sabre_DAV_Client { - - protected $trustedCertificates; - - /** - * Add trusted root certificates to the webdav client. - * - * The parameter certificates should be a absulute path to a file which contains - * all trusted certificates - * - * @param string $certificates - */ - public function addTrustedCertificates($certificates) { - $this->trustedCertificates = $certificates; - } - - /** - * Copied from SabreDAV with some modification to use user defined curlSettings - * Performs an actual HTTP request, and returns the result. - * - * If the specified url is relative, it will be expanded based on the base - * url. - * - * The returned array contains 3 keys: - * * body - the response body - * * httpCode - a HTTP code (200, 404, etc) - * * headers - a list of response http headers. The header names have - * been lowercased. - * - * @param string $method - * @param string $url - * @param string $body - * @param array $headers - * @return array - */ - public function request($method, $url = '', $body = null, $headers = array()) { - - $url = $this->getAbsoluteUrl($url); - - $curlSettings = array( - CURLOPT_RETURNTRANSFER => true, - // Return headers as part of the response - CURLOPT_HEADER => true, - CURLOPT_POSTFIELDS => $body, - // Automatically follow redirects - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_MAXREDIRS => 5, - ); - - if($this->trustedCertificates) { - $curlSettings[CURLOPT_CAINFO] = $this->trustedCertificates; - } - - switch ($method) { - case 'HEAD' : - - // do not read body with HEAD requests (this is neccessary because cURL does not ignore the body with HEAD - // requests when the Content-Length header is given - which in turn is perfectly valid according to HTTP - // specs...) cURL does unfortunately return an error in this case ("transfer closed transfer closed with - // ... bytes remaining to read") this can be circumvented by explicitly telling cURL to ignore the - // response body - $curlSettings[CURLOPT_NOBODY] = true; - $curlSettings[CURLOPT_CUSTOMREQUEST] = 'HEAD'; - break; - - default: - $curlSettings[CURLOPT_CUSTOMREQUEST] = $method; - break; - - } - - // Adding HTTP headers - $nHeaders = array(); - foreach($headers as $key=>$value) { - - $nHeaders[] = $key . ': ' . $value; - - } - $curlSettings[CURLOPT_HTTPHEADER] = $nHeaders; - - if ($this->proxy) { - $curlSettings[CURLOPT_PROXY] = $this->proxy; - } - - if ($this->userName && $this->authType) { - $curlType = 0; - if ($this->authType & self::AUTH_BASIC) { - $curlType |= CURLAUTH_BASIC; - } - if ($this->authType & self::AUTH_DIGEST) { - $curlType |= CURLAUTH_DIGEST; - } - $curlSettings[CURLOPT_HTTPAUTH] = $curlType; - $curlSettings[CURLOPT_USERPWD] = $this->userName . ':' . $this->password; - } - - list( - $response, - $curlInfo, - $curlErrNo, - $curlError - ) = $this->curlRequest($url, $curlSettings); - - $headerBlob = substr($response, 0, $curlInfo['header_size']); - $response = substr($response, $curlInfo['header_size']); - - // In the case of 100 Continue, or redirects we'll have multiple lists - // of headers for each separate HTTP response. We can easily split this - // because they are separated by \r\n\r\n - $headerBlob = explode("\r\n\r\n", trim($headerBlob, "\r\n")); - - // We only care about the last set of headers - $headerBlob = $headerBlob[count($headerBlob)-1]; - - // Splitting headers - $headerBlob = explode("\r\n", $headerBlob); - - $headers = array(); - foreach($headerBlob as $header) { - $parts = explode(':', $header, 2); - if (count($parts)==2) { - $headers[strtolower(trim($parts[0]))] = trim($parts[1]); - } - } - - $response = array( - 'body' => $response, - 'statusCode' => $curlInfo['http_code'], - 'headers' => $headers - ); - - if ($curlErrNo) { - throw new Sabre_DAV_Exception('[CURL] Error while making request: ' . $curlError . ' (error code: ' . $curlErrNo . ')'); - } - - if ($response['statusCode']>=400) { - switch ($response['statusCode']) { - case 404: - throw new Sabre_DAV_Exception_NotFound('Resource ' . $url . ' not found.'); - break; - - default: - throw new Sabre_DAV_Exception('HTTP error response. (errorcode ' . $response['statusCode'] . ')'); - } - } - - return $response; - - } -} \ No newline at end of file diff --git a/lib/connector/sabre/maintenanceplugin.php b/lib/connector/sabre/maintenanceplugin.php new file mode 100644 index 0000000000..329fa4443a --- /dev/null +++ b/lib/connector/sabre/maintenanceplugin.php @@ -0,0 +1,56 @@ + + * + * @license AGPL3 + */ + +require 'ServiceUnavailable.php'; + +class OC_Connector_Sabre_MaintenancePlugin extends Sabre_DAV_ServerPlugin +{ + + /** + * Reference to main server object + * + * @var Sabre_DAV_Server + */ + private $server; + + /** + * This initializes the plugin. + * + * This function is called by Sabre_DAV_Server, after + * addPlugin is called. + * + * This method should set up the required event subscriptions. + * + * @param Sabre_DAV_Server $server + * @return void + */ + public function initialize(Sabre_DAV_Server $server) { + + $this->server = $server; + $this->server->subscribeEvent('beforeMethod', array($this, 'checkMaintenanceMode'), 10); + } + + /** + * This method is called before any HTTP method and returns http status code 503 + * in case the system is in maintenance mode. + * + * @throws Sabre_DAV_Exception_ServiceUnavailable + * @internal param string $method + * @return bool + */ + public function checkMaintenanceMode() { + if (OC_Config::getValue('maintenance', false)) { + throw new Sabre_DAV_Exception_ServiceUnavailable(); + } + + return true; + } +} diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 3eb0660d94..31f37458b8 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -1,4 +1,34 @@ "Лично", -"Authentication error" => "Проблем с идентификацията" +"Help" => "Помощ", +"Personal" => "Лични", +"Settings" => "Настройки", +"Users" => "Потребители", +"Apps" => "Приложения", +"Admin" => "Админ", +"ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", +"Files need to be downloaded one by one." => "Файловете трябва да се изтеглят един по един.", +"Back to Files" => "Назад към файловете", +"Selected files too large to generate zip file." => "Избраните файлове са прекалено големи за генерирането на ZIP архив.", +"Application is not enabled" => "Приложението не е включено.", +"Authentication error" => "Възникна проблем с идентификацията", +"Token expired. Please reload page." => "Ключът е изтекъл, моля презаредете страницата", +"Files" => "Файлове", +"Text" => "Текст", +"Images" => "Снимки", +"seconds ago" => "преди секунди", +"1 minute ago" => "преди 1 минута", +"%d minutes ago" => "преди %d минути", +"1 hour ago" => "преди 1 час", +"%d hours ago" => "преди %d часа", +"today" => "днес", +"yesterday" => "вчера", +"%d days ago" => "преди %d дни", +"last month" => "последният месец", +"%d months ago" => "преди %d месеца", +"last year" => "последната година", +"years ago" => "последните години", +"%s is available. Get more information" => "%s е налична. Получете повече информация", +"up to date" => "е актуална", +"updates check is disabled" => "проверката за обновления е изключена", +"Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" ); diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index 275d3c0f05..cb6ff4455a 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -2,17 +2,28 @@ "Help" => "সহায়িকা", "Personal" => "ব্যক্তিগত", "Settings" => "নিয়ামকসমূহ", -"Users" => "ব্যবহারকারিবৃন্দ", -"Apps" => "অ্যাপস", +"Users" => "ব্যভহারকারী", +"Apps" => "অ্যাপ", "Admin" => "প্রশাসক", -"Authentication error" => "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে", +"ZIP download is turned off." => "ZIP ডাউনলোড বন্ধ করা আছে।", +"Files need to be downloaded one by one." => "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।", +"Back to Files" => "ফাইলে ফিরে চল", +"Selected files too large to generate zip file." => "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।", +"Application is not enabled" => "অ্যাপ্লিকেসনটি সক্রিয় নয়", +"Authentication error" => "অনুমোদন ঘটিত সমস্যা", +"Token expired. Please reload page." => "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।", "Files" => "ফাইল", "seconds ago" => "সেকেন্ড পূর্বে", -"1 minute ago" => "1 মিনিট পূর্বে", +"1 minute ago" => "১ মিনিট পূর্বে", +"%d minutes ago" => "%d মিনিট পূর্বে", "1 hour ago" => "1 ঘন্টা পূর্বে", "today" => "আজ", "yesterday" => "গতকাল", -"last month" => "গতমাস", +"%d days ago" => "%d দিন পূর্বে", +"last month" => "গত মাস", "last year" => "গত বছর", -"years ago" => "বছর পূর্বে" +"years ago" => "বছর পূর্বে", +"%s is available. Get more information" => "%s এখন সুলভ। আরও জানুন", +"up to date" => "সর্বশেষ", +"updates check is disabled" => "পরিবর্ধন পরীক্ষণ করা বন্ধ রাখা হয়েছে" ); diff --git a/lib/public/share.php b/lib/public/share.php index d736871d24..8c0cfc16b4 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -37,7 +37,8 @@ class Share { const SHARE_TYPE_REMOTE = 6; /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask - * Construct permissions for share() and setPermissions with Or (|) e.g. Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE + * Construct permissions for share() and setPermissions with Or (|) + * e.g. Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE * Check if permission is granted with And (&) e.g. Check if delete is granted: if ($permissions & PERMISSION_DELETE) * Remove permissions with And (&) and Not (~) e.g. Remove the update permission: $permissions &= ~PERMISSION_UPDATE * Apps are required to handle permissions on their own, this class only stores and manages the permissions of shares @@ -66,14 +67,17 @@ class Share { public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { if (self::isEnabled()) { if (!isset(self::$backendTypes[$itemType])) { - self::$backendTypes[$itemType] = array('class' => $class, 'collectionOf' => $collectionOf, 'supportedFileExtensions' => $supportedFileExtensions); + self::$backendTypes[$itemType] = array('class' => $class, + 'collectionOf' => $collectionOf, + 'supportedFileExtensions' => $supportedFileExtensions); if(count(self::$backendTypes) === 1) { \OC_Util::addScript('core', 'share'); \OC_Util::addStyle('core', 'share'); } return true; } - \OC_Log::write('OCP\Share', 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'].' is already registered for '.$itemType, \OC_Log::WARN); + \OC_Log::write('OCP\Share', 'Sharing backend '.$class.' not registered, ' + .self::$backendTypes[$itemType]['class'].' is already registered for '.$itemType, \OC_Log::WARN); } return false; } @@ -99,8 +103,20 @@ class Share { * @param int Number of items to return (optional) Returns all by default * @return Return depends on format */ - public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, $limit, $includeCollections); + public static function getItemsSharedWith($itemType, + $format = self::FORMAT_NONE, + $parameters = null, + $limit = -1, + $includeCollections = false) { + return self::getItems($itemType, + null, + self::$shareTypeUserAndGroups, + \OC_User::getUser(), + null, + $format, + $parameters, + $limit, + $includeCollections); } /** @@ -110,8 +126,20 @@ class Share { * @param int Format (optional) Format type must be defined by the backend * @return Return depends on format */ - public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections); + public static function getItemSharedWith($itemType, + $itemTarget, + $format = self::FORMAT_NONE, + $parameters = null, + $includeCollections = false) { + return self::getItems($itemType, + $itemTarget, + self::$shareTypeUserAndGroups, + \OC_User::getUser(), + null, + $format, + $parameters, + 1, + $includeCollections); } /** @@ -121,8 +149,20 @@ class Share { * @param int Format (optional) Format type must be defined by the backend * @return Return depends on format */ - public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections, true); + public static function getItemSharedWithBySource($itemType, + $itemSource, + $format = self::FORMAT_NONE, + $parameters = null, + $includeCollections = false) { + return self::getItems($itemType, + $itemSource, + self::$shareTypeUserAndGroups, + \OC_User::getUser(), + null, + $format, + $parameters, + 1, + $includeCollections, true); } /** @@ -133,7 +173,14 @@ class Share { * @return Item */ public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { - return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1); + return self::getItems($itemType, + $itemSource, + self::SHARE_TYPE_LINK, + null, + $uidOwner, + self::FORMAT_NONE, + null, + 1); } /** @@ -142,7 +189,7 @@ class Share { * @return Item */ public static function getShareByToken($token) { - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?',1); + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); $result = $query->execute(array($token)); if (\OC_DB::isError($result)) { \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); @@ -157,8 +204,20 @@ class Share { * @param int Number of items to return (optional) Returns all by default * @return Return depends on format */ - public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, $parameters, $limit, $includeCollections); + public static function getItemsShared($itemType, + $format = self::FORMAT_NONE, + $parameters = null, + $limit = -1, + $includeCollections = false) { + return self::getItems($itemType, + null, + null, + null, + \OC_User::getUser(), + $format, + $parameters, + $limit, + $includeCollections); } /** @@ -168,8 +227,20 @@ class Share { * @param int Format (optional) Format type must be defined by the backend * @return Return depends on format */ - public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, $parameters, -1, $includeCollections); + public static function getItemShared($itemType, + $itemSource, + $format = self::FORMAT_NONE, + $parameters = null, + $includeCollections = false) { + return self::getItems($itemType, + $itemSource, + null, + null, + \OC_User::getUser(), + $format, + $parameters, + -1, + $includeCollections); } /** @@ -199,14 +270,26 @@ class Share { if ($sharingPolicy == 'groups_only') { $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); if (empty($inGroup)) { - $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; + $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member' + .' of any groups that '.$uidOwner.' is a member of'; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } } // Check if the item source is already shared with the user, either from the same owner or a different user - if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same owner and is not a user share, this use case is for increasing permissions for a specific user + $checkExists = self::getItems($itemType, + $itemSource, + self::$shareTypeUserAndGroups, + $shareWith, + null, + self::FORMAT_NONE, + null, + 1, + true, + true); + if ($checkExists) { + // Only allow the same share to occur again if it is the same owner and is not a user share, + // this use case is for increasing permissions for a specific user if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); @@ -220,14 +303,26 @@ class Share { throw new \Exception($message); } if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { - $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner.' is not a member of the group '.$shareWith; + $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner + .' is not a member of the group '.$shareWith; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } // Check if the item source is already shared with the group, either from the same owner or a different user // The check for each user in the group is done inside the put() function - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same owner and is not a group share, this use case is for increasing permissions for a specific user + $checkExists = self::getItems($itemType, + $itemSource, + self::SHARE_TYPE_GROUP, + $shareWith, + null, + self::FORMAT_NONE, + null, + 1, + true, + true); + if ($checkExists) { + // Only allow the same share to occur again if it is the same owner and is not a group share, + // this use case is for increasing permissions for a specific user if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); @@ -242,7 +337,15 @@ class Share { } else if ($shareType === self::SHARE_TYPE_LINK) { if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { // when updating a link share - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1)) { + $checkExists = self::getItems($itemType, + $itemSource, + self::SHARE_TYPE_LINK, + null, + $uidOwner, + self::FORMAT_NONE, + null, + 1); + if ($checkExists) { // remember old token $oldToken = $checkExists['token']; //delete the old share @@ -262,7 +365,14 @@ class Share { } else { $token = \OC_Util::generate_random_bytes(self::TOKEN_LENGTH); } - $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, $token); + $result = self::put($itemType, + $itemSource, + $shareType, + $shareWith, + $uidOwner, + $permissions, + null, + $token); if ($result) { return $token; } else { @@ -305,19 +415,26 @@ class Share { if ($parentFolder && $files = \OC_Files::getDirectoryContent($itemSource)) { for ($i = 0; $i < count($files); $i++) { $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource)); - if ($files[$i]['mimetype'] == 'httpd/unix-directory' && $children = \OC_Files::getDirectoryContent($name, '/')) { + if ($files[$i]['mimetype'] == 'httpd/unix-directory' + && $children = \OC_Files::getDirectoryContent($name, '/') + ) { // Continue scanning into child folders array_push($files, $children); } else { // Check file extension for an equivalent item type to convert to $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1)); foreach (self::$backends as $type => $backend) { - if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) { + if (isset($backend->dependsOn) + && $backend->dependsOn == 'file' + && isset($backend->supportedFileExtensions) + && in_array($extension, $backend->supportedFileExtensions) + ) { $itemType = $type; break; } } - // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted + // Pass on to put() to check if this item should be converted, + // the item won't be inserted into the database unless it can be converted self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder); } } @@ -339,7 +456,15 @@ class Share { * @return Returns true on success or false on failure */ public static function unshare($itemType, $itemSource, $shareType, $shareWith) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1)) { + $item = self::getItems($itemType, + $itemSource, + $shareType, + $shareWith, + \OC_User::getUser(), + self::FORMAT_NONE, + null, + 1); + if ($item) { self::delete($item['id']); return true; } @@ -353,7 +478,8 @@ class Share { * @return Returns true on success or false on failure */ public static function unshareAll($itemType, $itemSource) { - if ($shares = self::getItemShared($itemType, $itemSource)) { + $shares = self::getItemShared($itemType, $itemSource); + if ($shares) { foreach ($shares as $share) { self::delete($share['id']); } @@ -372,11 +498,27 @@ class Share { * */ public static function unshareFromSelf($itemType, $itemTarget) { - if ($item = self::getItemSharedWith($itemType, $itemTarget)) { + $item = self::getItemSharedWith($itemType, $itemTarget); + if ($item) { if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - // Insert an extra row for the group share and set permission to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], $item['id'], self::$shareTypeGroupUserUnique, \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], $item['file_target'])); + // Insert an extra row for the group share and set permission to 0 + // to prevent it from showing up for the user + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (' + .'`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, ' + .'`uid_owner`, `permissions`, `stime`, `file_source`, `file_target`' + .') VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + $query->execute(array( + $item['item_type'], + $item['item_source'], + $item['item_target'], + $item['id'], + self::$shareTypeGroupUserUnique, + \OC_User::getUser(), + $item['uid_owner'], + 0, + $item['stime'], + $item['file_source'], + $item['file_target'])); \OC_DB::insertid('*PREFIX*share'); // Delete all reshares by this user of the group share self::delete($item['id'], true, \OC_User::getUser()); @@ -403,13 +545,24 @@ class Share { * @return Returns true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { - // Check if this item is a reshare and verify that the permissions granted don't exceed the parent shared item + $item = self::getItems($itemType, + $itemSource, + $shareType, + $shareWith, + \OC_User::getUser(), + self::FORMAT_NONE, + null, + 1, + false); + if ($item) { + // Check if this item is a reshare and + // verify that the permissions granted don't exceed the parent shared item if (isset($item['parent'])) { $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); $result = $query->execute(array($item['parent']))->fetchRow(); if (~(int)$result['permissions'] & $permissions) { - $message = 'Setting permissions for '.$itemSource.' failed, because the permissions exceed permissions granted to '.\OC_User::getUser(); + $message = 'Setting permissions for '.$itemSource.' failed, ' + .'because the permissions exceed permissions granted to '.\OC_User::getUser(); \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } @@ -426,9 +579,12 @@ class Share { $parents = array($item['id']); while (!empty($parents)) { $parents = "'".implode("','", $parents)."'"; - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $query = \OC_DB::prepare('SELECT `id`, `permissions`' + .' FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')'); $result = $query->execute(); - // Reset parents array, only go through loop again if items are found that need permissions removed + // Reset parents array, + // only go through loop again if items are found that need permissions removed $parents = array(); while ($item = $result->fetchRow()) { // Check if permissions need to be removed @@ -442,7 +598,9 @@ class Share { // Remove the permissions for all reshares of this item if (!empty($ids)) { $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ? WHERE `id` IN ('.$ids.')'); + $query = \OC_DB::prepare('UPDATE `*PREFIX*share`' + .' SET `permissions` = `permissions` & ?' + .' WHERE `id` IN ('.$ids.')'); $query->execute(array($permissions)); } } @@ -455,7 +613,16 @@ class Share { } public static function setExpirationDate($itemType, $itemSource, $date) { - if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false)) { + $items = self::getItems($itemType, + $itemSource, + null, + null, + \OC_User::getUser(), + self::FORMAT_NONE, + null, + -1, + false); + if ($items) { if (!empty($items)) { if ($date == '') { $date = null; @@ -517,7 +684,8 @@ class Share { if (!self::getBackend($itemType) instanceof Share_Backend_Collection) { unset($collectionTypes[0]); } - // Return array if collections were found or the item type is a collection itself - collections can be inside collections + // Return array if collections were found or the item type is a collection itself + // - collections can be inside collections if (count($collectionTypes) > 0) { return $collectionTypes; } @@ -528,7 +696,8 @@ class Share { * @brief Get shared items from the database * @param string Item type * @param string Item source or target (optional) - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, + * $shareTypeUserAndGroups, or $shareTypeGroupUserUnique * @param string User or group the item is being shared with * @param string User that is the owner of shared items (optional) * @param int Format to convert items to with formatItems() @@ -540,7 +709,16 @@ class Share { * See public functions getItem(s)... for parameter usage * */ - private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false) { + private static function getItems($itemType, + $item = null, + $shareType = null, + $shareWith = null, + $uidOwner = null, + $format = self::FORMAT_NONE, + $parameters = null, + $limit = -1, + $includeCollections = false, + $itemShareWithBySource = false) { if (!self::isEnabled()) { if ($limit == 1 || (isset($uidOwner) && isset($item))) { return false; @@ -549,7 +727,8 @@ class Share { } } $backend = self::getBackend($itemType); - // Get filesystem root to add it to the file target and remove from the file source, match file_source with the file cache + // Get filesystem root to add it to the file target and remove from the file source, + // match file_source with the file cache if ($itemType == 'file' || $itemType == 'folder') { $root = \OC_Filesystem::getRoot(); $where = 'INNER JOIN `*PREFIX*fscache` ON `file_source` = `*PREFIX*fscache`.`id`'; @@ -652,7 +831,8 @@ class Share { } if ($limit != -1 && !$includeCollections) { if ($shareType == self::$shareTypeUserAndGroups) { - // Make sure the unique user target is returned if it exists, unique targets should follow the group share in the database + // Make sure the unique user target is returned if it exists, + // unique targets should follow the group share in the database // If the limit is not 1, the filtering can be done later $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; } @@ -668,23 +848,34 @@ class Share { // TODO Optimize selects if ($format == self::FORMAT_STATUSES) { if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `file_source`, `path`, `expiration`'; + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, ' + .'`share_type`, `file_source`, `path`, `expiration`'; } else { $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`'; } } else { if (isset($uidOwner)) { if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`, `token`'; + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, ' + .'`share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`, `token`'; } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`, `stime`, `file_source`, `expiration`, `token`'; + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, ' + .'`permissions`, `stime`, `file_source`, `expiration`, `token`'; } } else { if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`'; + if (($itemType == 'file' || $itemType == 'folder') + && $format == \OC_Share_Backend_File::FORMAT_FILE_APP + || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT + ) { + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, ' + .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, ' + .'`expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, ' + .'`versioned`, `writable`'; } else { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`'; + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, ' + .'`*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, ' + .'`path`, `file_target`, `permissions`, `stime`, `expiration`, `token`'; } } else { $select = '*'; @@ -695,7 +886,9 @@ class Share { $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); $result = $query->execute($queryArgs); if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, \OC_Log::ERROR); + \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) + . ', select=' . $select + . ' where=' . $where, \OC_Log::ERROR); } $items = array(); $targets = array(); @@ -712,7 +905,8 @@ class Share { } else if (!isset($uidOwner)) { // Check if the same target already exists if (isset($targets[$row[$column]])) { - // Check if the same owner shared with the user twice through a group and user share - this is allowed + // Check if the same owner shared with the user twice through a group and user share + // - this is allowed $id = $targets[$row[$column]]; if ($items[$id]['uid_owner'] == $row['uid_owner']) { // Switch to group share type to ensure resharing conditions aren't bypassed @@ -720,8 +914,11 @@ class Share { $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; $items[$id]['share_with'] = $row['share_with']; } - // Switch ids if sharing permission is granted on only one share to ensure correct parent is used if resharing - if (~(int)$items[$id]['permissions'] & PERMISSION_SHARE && (int)$row['permissions'] & PERMISSION_SHARE) { + // Switch ids if sharing permission is granted on only one share + // to ensure correct parent is used if resharing + if (~(int)$items[$id]['permissions'] & PERMISSION_SHARE + && (int)$row['permissions'] & PERMISSION_SHARE + ) { $items[$row['id']] = $items[$id]; unset($items[$id]); $id = $row['id']; @@ -764,7 +961,9 @@ class Share { } // Check if this is a collection of the requested item type if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { - if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof Share_Backend_Collection) { + if (($collectionBackend = self::getBackend($row['item_type'])) + && $collectionBackend instanceof Share_Backend_Collection + ) { // Collections can be inside collections, check if the item is a collection if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { $collectionItems[] = $row; @@ -856,10 +1055,18 @@ class Share { * @param bool|array Parent folder target (optional) * @return bool Returns true on success or false on failure */ - private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null, $token = null) { + private static function put($itemType, + $itemSource, + $shareType, + $shareWith, + $uidOwner, + $permissions, + $parentFolder = null, + $token = null) { $backend = self::getBackend($itemType); // Check if this is a reshare - if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { + $checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true); + if ($checkReshare) { // Check if attempting to share back to owner if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the original sharer'; @@ -869,7 +1076,8 @@ class Share { // Check if share permissions is granted if ((int)$checkReshare['permissions'] & PERMISSION_SHARE) { if (~(int)$checkReshare['permissions'] & $permissions) { - $message = 'Sharing '.$itemSource.' failed, because the permissions exceed permissions granted to '.$uidOwner; + $message = 'Sharing '.$itemSource.' failed, ' + .'because the permissions exceed permissions granted to '.$uidOwner; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } else { @@ -891,7 +1099,8 @@ class Share { $suggestedItemTarget = null; $suggestedFileTarget = null; if (!$backend->isValidSource($itemSource, $uidOwner)) { - $message = 'Sharing '.$itemSource.' failed, because the sharing backend for '.$itemType.' could not find its source'; + $message = 'Sharing '.$itemSource.' failed, ' + .'because the sharing backend for '.$itemType.' could not find its source'; \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } @@ -913,14 +1122,27 @@ class Share { $fileSource = null; } } - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`,' + .' `share_type`, `share_with`, `uid_owner`, `permissions`,' + .' `stime`, `file_source`, `file_target`, `token`' + .') VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); // Share with a group if ($shareType == self::SHARE_TYPE_GROUP) { - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); + $groupItemTarget = self::generateTarget($itemType, + $itemSource, + $shareType, + $shareWith['group'], + $uidOwner, + $suggestedItemTarget); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); + $groupFileTarget = self::generateTarget('file', + $filePath, + $shareType, + $shareWith['group'], + $uidOwner, + $suggestedFileTarget); // Set group default file target for future use $parentFolders[0]['folder'] = $groupFileTarget; } else { @@ -929,21 +1151,50 @@ class Share { $parent = $parentFolder[0]['id']; } } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); + $groupFileTarget = self::generateTarget('file', + $filePath, + $shareType, + $shareWith['group'], + $uidOwner, + $suggestedFileTarget); } } else { $groupFileTarget = null; } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); + $query->execute(array( + $itemType, + $itemSource, + $groupItemTarget, + $parent, + $shareType, + $shareWith['group'], + $uidOwner, + $permissions, + time(), + $fileSource, + $groupFileTarget, + $token)); // Save this id, any extra rows for this group share will need to reference it $parent = \OC_DB::insertid('*PREFIX*share'); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent); + $itemTarget = self::generateTarget($itemType, + $itemSource, + self::SHARE_TYPE_USER, + $uid, + $uidOwner, + $suggestedItemTarget, + $parent); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); + $fileTarget = self::generateTarget('file', + $filePath, + self::SHARE_TYPE_USER, + $uid, + $uidOwner, + $suggestedFileTarget, + $parent); if ($fileTarget != $groupFileTarget) { $parentFolders[$uid]['folder'] = $fileTarget; } @@ -952,7 +1203,13 @@ class Share { $parent = $parentFolder[$uid]['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); + $fileTarget = self::generateTarget('file', + $filePath, + self::SHARE_TYPE_USER, + $uid, + $uidOwner, + $suggestedFileTarget, + $parent); } } else { $fileTarget = null; @@ -973,7 +1230,19 @@ class Share { )); // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), $fileSource, $fileTarget, $token)); + $query->execute(array( + $itemType, + $itemSource, + $itemTarget, + $parent, + self::$shareTypeGroupUserUnique, + $uid, + $uidOwner, + $permissions, + time(), + $fileSource, + $fileTarget, + $token)); $id = \OC_DB::insertid('*PREFIX*share'); } } @@ -982,23 +1251,50 @@ class Share { return $parentFolders; } } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); + $itemTarget = self::generateTarget($itemType, + $itemSource, + $shareType, + $shareWith, + $uidOwner, + $suggestedItemTarget); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); + $fileTarget = self::generateTarget('file', + $filePath, + $shareType, + $shareWith, + $uidOwner, + $suggestedFileTarget); $parentFolders['folder'] = $fileTarget; } else { $fileTarget = $parentFolder['folder'].$itemSource; $parent = $parentFolder['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); + $fileTarget = self::generateTarget('file', + $filePath, + $shareType, + $shareWith, + $uidOwner, + $suggestedFileTarget); } } else { $fileTarget = null; } - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, $permissions, time(), $fileSource, $fileTarget, $token)); + $query->execute(array( + $itemType, + $itemSource, + $itemTarget, + $parent, + $shareType, + $shareWith, + $uidOwner, + $permissions, + time(), + $fileSource, + $fileTarget, + $token)); $id = \OC_DB::insertid('*PREFIX*share'); \OC_Hook::emit('OCP\Share', 'post_shared', array( 'itemType' => $itemType, @@ -1033,7 +1329,13 @@ class Share { * @param int The id of the parent group share (optional) * @return string Item target */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) { + private static function generateTarget($itemType, + $itemSource, + $shareType, + $shareWith, + $uidOwner, + $suggestedTarget = null, + $groupParent = null) { $backend = self::getBackend($itemType); if ($shareType == self::SHARE_TYPE_LINK) { if (isset($suggestedTarget)) { @@ -1099,18 +1401,43 @@ class Share { // Find similar targets to improve backend's chances to generate a unqiue target if ($userAndGroups) { if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with`' + .' IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array( + self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with`' + .' IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array( + $itemType, + self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); } } else { if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` = ? AND `share_with` = ?'); + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` = ?' + .' AND `share_with` = ?'); $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `share_type` = ?' + .' AND `share_with` = ?'); $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); } } @@ -1138,21 +1465,43 @@ class Share { $parents = array($parent); while (!empty($parents)) { $parents = "'".implode("','", $parents)."'"; - // Check the owner on the first search of reshares, useful for finding and deleting the reshares by a single user of a group share + // Check the owner on the first search of reshares, + // useful for finding and deleting the reshares by a single user of a group share if (count($ids) == 1 && isset($uidOwner)) { - $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); + $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' + .' FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')' + .' AND `uid_owner` = ?'); $result = $query->execute(array($uidOwner)); } else { - $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' + .' FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')'); $result = $query->execute(); } // Reset parents array, only go through loop again if items are found $parents = array(); while ($item = $result->fetchRow()) { - // Search for a duplicate parent share, this occurs when an item is shared to the same user through a group and user or the same item is shared by different users + // Search for a duplicate parent share, + // this occurs when an item is shared to the same user through a group and user + // or the same item is shared by different users $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `item_type` = ? AND `item_target` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\') AND `uid_owner` != ? AND `id` != ?'); - $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, $item['uid_owner'], $item['parent']))->fetchRow(); + $query = \OC_DB::prepare('SELECT `id`, `permissions`' + .' FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `item_target` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' + .' AND `uid_owner` != ?' + .' AND `id` != ?'); + $duplicateParent = $query->execute(array( + $item['item_type'], + $item['item_target'], + self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique, + $item['uid_owner'], + $item['parent']))->fetchRow(); if ($duplicateParent) { // Change the parent to the other item id if share permission is granted if ($duplicateParent['permissions'] & PERMISSION_SHARE) { @@ -1181,7 +1530,10 @@ class Share { public static function post_deleteUser($arguments) { // Delete any items shared with the deleted user - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' + .' WHERE `share_with` = ?' + .' AND `share_type` = ?' + .' OR `share_type` = ?'); $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); // Delete any items the deleted user shared $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); @@ -1195,21 +1547,46 @@ class Share { // Find the group shares and check if the user needs a unique target $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`,' + .' `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`)' + .' VALUES (?,?,?,?,?,?,?,?,?,?,?)'); while ($item = $result->fetchRow()) { if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { $itemTarget = null; } else { - $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + $itemTarget = self::generateTarget($item['item_type'], + $item['item_source'], + self::SHARE_TYPE_USER, + $arguments['uid'], + $item['uid_owner'], + $item['item_target'], + $item['id']); } if (isset($item['file_source'])) { - $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + $fileTarget = self::generateTarget($item['item_type'], + $item['item_source'], + self::SHARE_TYPE_USER, + $arguments['uid'], + $item['uid_owner'], + $item['file_target'], + $item['id']); } else { $fileTarget = null; } // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { - $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], $item['stime'], $item['file_source'], $fileTarget)); + $query->execute(array($item['item_type'], + $item['item_source'], + $itemTarget, + $item['id'], + self::$shareTypeGroupUserUnique, + $arguments['uid'], + $item['uid_owner'], + $item['permissions'], + $item['stime'], + $item['file_source'], + $fileTarget)); \OC_DB::insertid('*PREFIX*share'); } } @@ -1217,8 +1594,15 @@ class Share { public static function post_removeFromGroup($arguments) { // TODO Don't call if user deleted? - $query = \OC_DB::prepare('SELECT `id`, `share_type` FROM `*PREFIX*share` WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'], self::$shareTypeGroupUserUnique, $arguments['uid'])); + $query = \OC_DB::prepare('SELECT `id`, `share_type`' + .' FROM `*PREFIX*share`' + .' WHERE (`share_type` = ? AND `share_with` = ?)' + .' OR (`share_type` = ? AND `share_with` = ?)'); + $result = $query->execute(array( + self::SHARE_TYPE_GROUP, + $arguments['gid'], + self::$shareTypeGroupUserUnique, + $arguments['uid'])); while ($item = $result->fetchRow()) { if ($item['share_type'] == self::SHARE_TYPE_GROUP) { // Delete all reshares by this user of the group share @@ -1275,10 +1659,13 @@ interface Share_Backend { * @param int Format * @return ? * - * The items array is a 3-dimensional array with the item_source as the first key and the share id as the second key to an array with the share info. + * The items array is a 3-dimensional array with the item_source as the first key + * and the share id as the second key to an array with the share info. * The key/value pairs included in the share info depend on the function originally called: - * If called by getItem(s)Shared: id, item_type, item, item_source, share_type, share_with, permissions, stime, file_source - * If called by getItem(s)SharedWith: id, item_type, item, item_source, item_target, share_type, share_with, permissions, stime, file_source, file_target + * If called by getItem(s)Shared: id, item_type, item, item_source, + * share_type, share_with, permissions, stime, file_source + * If called by getItem(s)SharedWith: id, item_type, item, item_source, + * item_target, share_type, share_with, permissions, stime, file_source, file_target * This function allows the backend to control the output of shared items with custom formats. * It is only called through calls to the public getItem(s)Shared(With) functions. */ @@ -1311,7 +1698,8 @@ interface Share_Backend_Collection extends Share_Backend { /** * @brief Get the sources of the children of the item * @param string Item source - * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable + * @return array Returns an array of children each inside an array with the keys: + * source, target, and file_path if applicable */ public function getChildren($itemSource); diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 89066d2baa..853e12812e 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,29 +1,9 @@ "Е-пощата е записана", -"Invalid email" => "Неправилна е-поща", -"OpenID Changed" => "OpenID е сменено", -"Invalid request" => "Невалидна заявка", -"Authentication error" => "Проблем с идентификацията", -"Language changed" => "Езика е сменен", -"Disable" => "Изключване", -"Enable" => "Включване", -"Saving..." => "Записване...", -"Select an App" => "Изберете програма", -"Clients" => "Клиенти", +"Authentication error" => "Възникна проблем с идентификацията", +"Enable" => "Включено", "Password" => "Парола", -"Unable to change your password" => "Невъзможна промяна на паролата", -"Current password" => "Текуща парола", -"New password" => "Нова парола", -"show" => "показва", -"Change password" => "Промяна на парола", -"Email" => "Е-поща", -"Your email address" => "Адресът на е-пощата ви", -"Fill in an email address to enable password recovery" => "Въведете е-поща за възстановяване на паролата", -"Language" => "Език", -"Help translate" => "Помощ за превода", +"Email" => "E-mail", "Name" => "Име", "Groups" => "Групи", -"Create" => "Ново", -"Other" => "Друго", "Delete" => "Изтриване" ); diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 0b7983c6c1..49b86c0e5e 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,46 +1,63 @@ "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না", -"Group already exists" => "গোষ্ঠীটি বিদ্যমান", -"Unable to add group" => "গোষ্ঠী যোগ করতে পারা গেল না", -"Could not enable app. " => "অ্যাপ সক্রিয় করা সম্ভব হলো না", -"Email saved" => "ই-মেইল সংরক্ষণ করা হয়েছে", +"Unable to load list from App Store" => "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", +"Group already exists" => "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", +"Unable to add group" => "গোষ্ঠী যোগ করা সম্ভব হলো না", +"Could not enable app. " => "অ্যপটি সক্রিয় করতে সক্ষম নয়।", +"Email saved" => "ই-মেইল সংরক্ষন করা হয়েছে", "Invalid email" => "ই-মেইলটি সঠিক নয়", "OpenID Changed" => "OpenID পরিবর্তন করা হয়েছে", -"Invalid request" => "অননুমোদিত অনুরোধ", -"Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না", -"Authentication error" => "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে", -"Unable to delete user" => "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না", +"Invalid request" => "অনুরোধটি যথাযথ নয়", +"Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না ", +"Authentication error" => "অনুমোদন ঘটিত সমস্যা", +"Unable to delete user" => "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না ", "Language changed" => "ভাষা পরিবর্তন করা হয়েছে", +"Admins can't remove themself from the admin group" => "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না", +"Unable to add user to group %s" => " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না ", +"Unable to remove user from group %s" => "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না", "Disable" => "নিষ্ক্রিয়", -"Enable" => "সক্রিয়", -"Saving..." => "সংরক্ষণ করা হচ্ছে....", -"__language_name__" => "_ভাষার_নাম_", +"Enable" => "সক্রিয় ", +"Saving..." => "সংরক্ষণ করা হচ্ছে..", +"__language_name__" => "__language_name__", "Add your App" => "আপনার অ্যাপটি যোগ করুন", "More Apps" => "আরও অ্যাপ", "Select an App" => "অ্যাপ নির্বাচন করুন", -"See application page at apps.owncloud.com" => "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com", -"-licensed by " => "-লাইসেন্স করিয়েছেন ", +"See application page at apps.owncloud.com" => "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন", +"-licensed by " => "-লাইসেন্সধারী ", +"User Documentation" => "ব্যবহারকারী সহায়িকা", +"Administrator Documentation" => "প্রশাসক সহায়িকা", +"Online Documentation" => "অনলাইন সহায়িকা", "Forum" => "ফোরাম", "Bugtracker" => "বাগট্র্যাকার", "Commercial Support" => "বাণিজ্যিক সাপোর্ট", +"You have used %s of the available %s" => "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।", "Clients" => "ক্লায়েন্ট", "Download Desktop Clients" => "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন", +"Download Android Client" => "অ্যান্ড্রয়েড ক্লায়েন্ট ডাউনলোড করুন", +"Download iOS Client" => "iOS ক্লায়েন্ট ডাউনলোড করুন", "Password" => "কূটশব্দ", -"Your password was changed" => "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে", -"Unable to change your password" => "কূটশব্দ পরিবর্তন করা সম্ভব হলো না", +"Your password was changed" => "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে ", +"Unable to change your password" => "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়", "Current password" => "বর্তমান কূটশব্দ", "New password" => "নতুন কূটশব্দ", "show" => "প্রদর্শন", -"Change password" => "কূটশব্দ পরিবর্তন কর", -"Email" => "ই-মেইল", +"Change password" => "কূটশব্দ পরিবর্তন করুন", +"Email" => "ই-মেইল ", "Your email address" => "আপনার ই-মেইল ঠিকানা", +"Fill in an email address to enable password recovery" => "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন", "Language" => "ভাষা", -"Help translate" => "অনুবাদ করতে সাহায্য করুন", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "তৈরি করেছেন ownCloud community, যার উৎস কোড AGPLএর অধীনে লাইেসন্সকৃত.", -"Name" => "নাম", -"Groups" => "গোষ্ঠী", -"Create" => "তৈরি কর", +"Help translate" => "অনুবাদ করতে সহায়তা করুন", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন", +"Version" => "ভার্সন", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "তৈলী করেছেন ownCloud সম্প্রদায়, যার উৎস কোডটি AGPL এর অধীনে লাইসেন্সকৃত।", +"Name" => "রাম", +"Groups" => "গোষ্ঠীসমূহ", +"Create" => "তৈরী কর", +"Default Storage" => "পূর্বনির্ধারিত সংরক্ষণাগার", +"Unlimited" => "অসীম", "Other" => "অন্যান্য", -"Group Admin" => "গোষ্ঠী প্রশাসন", +"Group Admin" => "গোষ্ঠী প্রশাসক", +"Storage" => "সংরক্ষণাগার", +"Default" => "পূর্বনির্ধারিত", "Delete" => "মুছে ফেল" ); diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 5700f86036..cf80b5187e 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -53,7 +53,9 @@ "Name" => "Nimi", "Groups" => "Ryhmät", "Create" => "Luo", +"Unlimited" => "Rajoittamaton", "Other" => "Muu", "Group Admin" => "Ryhmän ylläpitäjä", +"Default" => "Oletus", "Delete" => "Poista" ); diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index a8367ef458..0004d24fc7 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -31,7 +31,7 @@ "Commercial Support" => "Support commercial", "You have used %s of the available %s" => "Vous avez utilisé %s des %s disponibles", "Clients" => "Clients", -"Download Desktop Clients" => "Télécharger des clients de bureau", +"Download Desktop Clients" => "Télécharger le client de synchronisation pour votre ordinateur", "Download Android Client" => "Télécharger le client Android", "Download iOS Client" => "Télécharger le client iOS", "Password" => "Mot de passe", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 5fdc11e44f..26a52bd616 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -53,7 +53,11 @@ "Name" => "Név", "Groups" => "Csoportok", "Create" => "Létrehozás", +"Default Storage" => "Alapértelmezett tárhely", +"Unlimited" => "Korlátlan", "Other" => "Más", "Group Admin" => "Csoportadminisztrátor", +"Storage" => "Tárhely", +"Default" => "Alapértelmezett", "Delete" => "Törlés" ); diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 2056dfc5b7..7f5fa38413 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -21,7 +21,8 @@ "Add your App" => "Bæta við forriti", "More Apps" => "Fleiri forrit", "Select an App" => "Veldu forrit", -"See application page at apps.owncloud.com" => "Skoða forrita síðuna hjá apps.owncloud.com", +"See application page at apps.owncloud.com" => "Skoða síðu forrits hjá apps.owncloud.com", +"-licensed by " => "-leyfi skráð af ", "User Documentation" => "Notenda handbók", "Administrator Documentation" => "Stjórnenda handbók", "Online Documentation" => "Handbók á netinu", @@ -55,7 +56,7 @@ "Default Storage" => "Sjálfgefin gagnageymsla", "Unlimited" => "Ótakmarkað", "Other" => "Annað", -"Group Admin" => "Hópa stjóri", +"Group Admin" => "Hópstjóri", "Storage" => "gagnapláss", "Default" => "Sjálfgefið", "Delete" => "Eyða" diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 6556e1b93b..21724a1782 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -23,8 +23,16 @@ "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "-licensed by " => "-라이선스 보유자 ", +"User Documentation" => "유저 문서", +"Administrator Documentation" => "관리자 문서", +"Online Documentation" => "온라인 문서", +"Forum" => "포럼", +"Bugtracker" => "버그트래커", "You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", "Clients" => "고객", +"Download Desktop Clients" => "데스크탑 클라이언트 다운로드", +"Download Android Client" => "안드로이드 클라이언트 다운로드", +"Download iOS Client" => "iOS 클라이언트 다운로드", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", @@ -37,11 +45,18 @@ "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오.", "Language" => "언어", "Help translate" => "번역 돕기", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "파일 매니저에서 사용자의 ownCloud에 접속하기 위해 이 주소를 사용하십시요.", +"Version" => "버젼", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다.", "Name" => "이름", "Groups" => "그룹", "Create" => "만들기", +"Default Storage" => "기본 저장소", +"Unlimited" => "무제한", "Other" => "기타", "Group Admin" => "그룹 관리자", +"Storage" => "저장소", +"Default" => "기본값", "Delete" => "삭제" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 583c044ba4..ca7e84ce6c 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -53,7 +53,11 @@ "Name" => "Naam", "Groups" => "Groepen", "Create" => "Creëer", +"Default Storage" => "Default opslag", +"Unlimited" => "Ongelimiteerd", "Other" => "Andere", "Group Admin" => "Groep beheerder", +"Storage" => "Opslag", +"Default" => "Default", "Delete" => "verwijderen" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 1008726d36..87fd9fb331 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -23,8 +23,17 @@ "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed by " => "-licencjonowane przez ", +"User Documentation" => "Dokumentacja użytkownika", +"Administrator Documentation" => "Dokumentacja Administratora", +"Online Documentation" => "Dokumentacja Online", +"Forum" => "Forum", +"Bugtracker" => "Zgłaszanie błędów", +"Commercial Support" => "Wsparcie komercyjne", "You have used %s of the available %s" => "Korzystasz z %s z dostępnych %s", "Clients" => "Klienci", +"Download Desktop Clients" => "Pobierz klienta dla Komputera", +"Download Android Client" => "Pobierz klienta dla Androida", +"Download iOS Client" => "Pobierz klienta dla iOS", "Password" => "Hasło", "Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", @@ -37,11 +46,18 @@ "Fill in an email address to enable password recovery" => "Proszę wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasła", "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików", +"Version" => "Wersja", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL.", "Name" => "Nazwa", "Groups" => "Grupy", "Create" => "Utwórz", +"Default Storage" => "Domyślny magazyn", +"Unlimited" => "Bez limitu", "Other" => "Inne", "Group Admin" => "Grupa Admin", +"Storage" => "Magazyn", +"Default" => "Domyślny", "Delete" => "Usuń" ); diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index d25ae4e149..255eb5ee2c 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -23,8 +23,17 @@ "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed by " => "-核准: ", +"User Documentation" => "用戶說明文件", +"Administrator Documentation" => "管理者說明文件", +"Online Documentation" => "線上說明文件", +"Forum" => "論壇", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "商用支援", "You have used %s of the available %s" => "您已經使用了 %s ,目前可用空間為 %s", "Clients" => "客戶", +"Download Desktop Clients" => "下載桌面客戶端", +"Download Android Client" => "下載 Android 客戶端", +"Download iOS Client" => "下載 iOS 客戶端", "Password" => "密碼", "Your password was changed" => "你的密碼已更改", "Unable to change your password" => "無法變更你的密碼", @@ -37,11 +46,18 @@ "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Language" => "語言", "Help translate" => "幫助翻譯", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "在您的檔案管理員中使用這個地址來連線到 ownCloud", +"Version" => "版本", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud 社區開發,源代碼AGPL許可證下發布。", "Name" => "名稱", "Groups" => "群組", "Create" => "創造", +"Default Storage" => "預設儲存區", +"Unlimited" => "無限制", "Other" => "其他", "Group Admin" => "群組 管理員", +"Storage" => "儲存區", +"Default" => "預設", "Delete" => "刪除" );