diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-14 10:33:17 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-14 10:33:17 +0100 |
commit | cd802ed45bca8fabb0252e40ab14fa8bb0f935ec (patch) | |
tree | af942be7c337826104cefb31b02755f75e3d9efa | |
parent | e0173303e6a3ff2048422f47db7ce3d97a70c761 (diff) | |
parent | c29310aaef636b98e52672e3005343aa6f978076 (diff) | |
download | nextcloud-server-cd802ed45bca8fabb0252e40ab14fa8bb0f935ec.tar.gz nextcloud-server-cd802ed45bca8fabb0252e40ab14fa8bb0f935ec.zip |
Merge branch 'master' of github.com:owncloud/core
429 files changed, 7494 insertions, 5960 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000000..1021eae0f64 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,37 @@ +## Submitting issues + +If you have questions about how to use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. + +### Guidelines +* Report the issue using our [template][template], it includes all the informations we need to track down the issue. +* This repository is *only* for issues within the ownCloud core code. Issues in other compontents should be reported in their own repositores: + - [Android client](https://github.com/owncloud/android/issues) + - [iOS client](https://github.com/owncloud/ios-issues/issues) + - [Desktop client](https://github.com/owncloud/mirall/issues) + - [ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Calendar, Contacts...) +* Search the existing issues first, it's likely that your issue was already reported. + +If your issue appears to be a bug, and hasn't been reported, open a new issue. + +Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. + +[template]: https://raw.github.com/owncloud/core/master/issue_template.md +[mailinglist]: https://mail.kde.org/mailman/listinfo/owncloud +[forum]: http://forum.owncloud.org/ +[irc]: http://webchat.freenode.net/?channels=owncloud&uio=d4 + +## Contributing to Source Code + +Thanks for wanting to contribute source code to ownCloud. That's great! + +Before we're able to merge your code into the ownCloud core, you need to sign our [Contributor Agreement][agreement]. + +Please read the [Developer Manuals][devmanual] to get useful infos like how to create your first application or how to test the ownCloud code with phpunit. + +[agreement]: http://owncloud.org/about/contributor-agreement/ +[devmanual]: http://owncloud.org/dev/ + +## Translations +Please submit translations via [Transifex][transifex]. + +[transifex]: https://www.transifex.com/projects/p/owncloud/ diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 5612716b7e4..4ebc3f42d9f 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 cb0bec399d1..89b4d4bba73 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 1713bcc22ce..6a78a1e0d75 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 99c39f0acdb..36a1e5c954b 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 22d701d8ff9..66697bbbf56 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 ba2495eb728..bb298431e84 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -26,19 +26,19 @@ Files={ }); procesSelection(); }, - isFileNameValid:function (name) { - if (name === '.') { - $('#notification').text(t('files', "'.' is an invalid file name.")); - $('#notification').fadeIn(); - return false; - } - if (name.length == 0) { - $('#notification').text(t('files', "File name cannot be empty.")); - $('#notification').fadeIn(); - return false; - } - - // check for invalid characters + 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 var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*']; for (var i = 0; i < invalid_characters.length; i++) { if (name.indexOf(invalid_characters[i]) != -1) { @@ -246,12 +246,12 @@ $(document).ready(function() { } }); }else{ - var dropTarget = $(e.originalEvent.target).closest('tr'); - if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder - var dirName = dropTarget.attr('data-file') - } + var dropTarget = $(e.originalEvent.target).closest('tr'); + if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder + var dirName = dropTarget.attr('data-file') + } - var date=new Date(); + var date=new Date(); if(files){ for(var i=0;i<files.length;i++){ if(files[i].size>0){ @@ -304,9 +304,9 @@ $(document).ready(function() { var jqXHR = $('#file_upload_start').fileupload('send', {files: files[i], formData: function(form) { var formArray = form.serializeArray(); - // array index 0 contains the max files size - // array index 1 contains the request token - // array index 2 contains the directory + // array index 0 contains the max files size + // array index 1 contains the request token + // array index 2 contains the directory formArray[2]['value'] = dirName; return formArray; }}).success(function(result, textStatus, jqXHR) { @@ -317,13 +317,14 @@ $(document).ready(function() { $('#notification').fadeIn(); } var file=response[0]; - // TODO: this doesn't work if the file name has been changed server side + // TODO: this doesn't work if the file name has been changed server side delete uploadingFiles[dirName][file.name]; - if ($.assocArraySize(uploadingFiles[dirName]) == 0) { - delete uploadingFiles[dirName]; - } + if ($.assocArraySize(uploadingFiles[dirName]) == 0) { + delete uploadingFiles[dirName]; + } + //TODO update file upload size limit - var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') + var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') var currentUploads = parseInt(uploadtext.attr('currentUploads')); currentUploads -= 1; uploadtext.attr('currentUploads', currentUploads); @@ -351,6 +352,7 @@ $(document).ready(function() { } else { uploadtext.text(t('files', '{count} files uploading', {count: currentUploads})); } + delete uploadingFiles[dirName][fileName]; $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); $('#notification').fadeIn(); @@ -374,8 +376,10 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { + Files.cancelUpload(this.files[0].name); $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); $('#fileList > tr').not('[data-mime]').fadeOut(); @@ -384,6 +388,7 @@ $(document).ready(function() { }) .error(function(jqXHR, textStatus, errorThrown) { if(errorThrown === 'abort') { + Files.cancelUpload(this.files[0].name); $('#notification').hide(); $('#notification').text(t('files', 'Upload cancelled.')); $('#notification').fadeIn(); @@ -404,8 +409,10 @@ $(document).ready(function() { if(size==t('files','Pending')){ $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); } + //TODO update file upload size limit FileList.loadingDone(file.name, file.id); } else { + //TODO Files.cancelUpload(/*where do we get the filename*/); $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); $('#fileList > tr').not('[data-mime]').fadeOut(); @@ -446,7 +453,7 @@ $(document).ready(function() { // http://stackoverflow.com/a/6700/11236 var size = 0, key; for (key in obj) { - if (obj.hasOwnProperty(key)) size++; + if (obj.hasOwnProperty(key)) size++; } return size; }; @@ -489,7 +496,7 @@ $(document).ready(function() { $('#new').removeClass('active'); $('#new li').each(function(i,element){ if($(element).children('p').length==0){ - $(element).children('input').remove(); + $(element).children('form').remove(); $(element).append('<p>'+$(element).data('text')+'</p>'); } }); @@ -508,7 +515,7 @@ $(document).ready(function() { $('#new li').each(function(i,element){ if($(element).children('p').length==0){ - $(element).children('input').remove(); + $(element).children('form').remove(); $(element).append('<p>'+$(element).data('text')+'</p>'); } }); @@ -517,23 +524,32 @@ $(document).ready(function() { var text=$(this).children('p').text(); $(this).data('text',text); $(this).children('p').remove(); + var form=$('<form></form>'); var input=$('<input>'); - $(this).append(input); + form.append(input); + $(this).append(form); input.focus(); - input.change(function(){ - if (type != 'web' && !Files.isFileNameValid($(this).val())) { - return; - } else if( type == 'folder' && $('#dir').val() == '/' && $(this).val() == 'Shared') { - $('#notification').text(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud')); + form.submit(function(event){ + event.stopPropagation(); + event.preventDefault(); + var newname=input.val(); + if(type == 'web' && newname.length == 0) { + $('#notification').text(t('files', 'URL cannot be empty.')); $('#notification').fadeIn(); - return; + return false; + } else if (type != 'web' && !Files.isFileNameValid(newname)) { + return false; + } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { + $('#notification').text(t('files','Invalid folder name. Usage of \'Shared\' is reserved by Owncloud')); + $('#notification').fadeIn(); + return false; } if (FileList.lastAction) { FileList.lastAction(); } - var name = getUniqueName($(this).val()); - if (name != $(this).val()) { - FileList.checkName(name, $(this).val(), true); + var name = getUniqueName(newname); + if (newname != name) { + FileList.checkName(name, newname, true); var hidden = true; } else { var hidden = false; @@ -577,7 +593,7 @@ $(document).ready(function() { break; case 'web': if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ - name='http://'.name; + name='http://'+name; } var localName=name; if(localName.substr(localName.length-1,1)=='/'){//strip / @@ -616,8 +632,8 @@ $(document).ready(function() { }); break; } - var li=$(this).parent(); - $(this).remove(); + var li=form.parent(); + form.remove(); li.append('<p>'+li.data('text')+'</p>'); $('#new>a').click(); }); diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index b527b0e027f..bc10979611b 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -1,28 +1,22 @@ <?php $TRANSLATIONS = array( -"There is no error, the file uploaded with success" => "Файлът е качен успешно", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата.", -"The uploaded file was only partially uploaded" => "Файлът е качен частично", -"No file was uploaded" => "Фахлът не бе качен", -"Missing a temporary folder" => "Липсва временната папка", -"Failed to write to disk" => "Грешка при запис на диска", +"Missing a temporary folder" => "Липсва временна папка", "Files" => "Файлове", "Delete" => "Изтриване", -"Upload Error" => "Грешка при качване", -"Upload cancelled." => "Качването е отменено.", +"Rename" => "Преименуване", +"replace" => "препокриване", +"cancel" => "отказ", +"undo" => "възтановяване", +"Upload cancelled." => "Качването е спряно.", "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"Maximum upload size" => "Макс. размер за качване", -"0 is unlimited" => "0 означава без ограничение", +"Maximum upload size" => "Максимален размер за качване", +"0 is unlimited" => "Ползвайте 0 за без ограничения", "Save" => "Запис", -"New" => "Нов", -"Text file" => "Текстов файл", +"New" => "Ново", "Folder" => "Папка", "Upload" => "Качване", -"Cancel upload" => "Отказване на качването", -"Nothing in here. Upload something!" => "Няма нищо, качете нещо!", +"Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", "Download" => "Изтегляне", -"Upload too large" => "Файлът е прекалено голям", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра.", -"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте." +"Upload too large" => "Файлът който сте избрали за качване е прекалено голям" ); diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 45cf1c2313d..e55c8811393 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -1,46 +1,71 @@ <?php $TRANSLATIONS = array( +"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 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 c30f3a97add..f6ddbcd8e18 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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:", @@ -34,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 a7ccd3187f6..65ac4b04931 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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:", @@ -34,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 e2fd0c8c18f..02c177a2f1c 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 5f4778eb867..089ce1c0a26 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits.", +"Could not move %s" => "Konnte %s nicht verschieben", +"Unable to rename file" => "Konnte Datei nicht umbenennen", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", @@ -8,7 +11,7 @@ "Missing a temporary folder" => "Temporärer Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Not enough space available" => "Nicht genug Speicherplatz verfügbar", -"Invalid directory." => "Ungültiges Verzeichnis.", +"Invalid directory." => "Ungültiges Verzeichnis", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", "Delete" => "Löschen", @@ -22,6 +25,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 +37,8 @@ "{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", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten.", "{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 3ba32229070..5cd4ef70425 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits", +"Could not move %s" => "Konnte %s nicht verschieben", +"Unable to rename file" => "Konnte Datei nicht umbenennen", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", @@ -7,7 +10,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 +25,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 +37,8 @@ "{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.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten", "{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 60be0bc7aac..3c1ac538091 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 c371334933d..92c03ee8826 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 a92720581b8..885ed3770e9 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "No se puede mover %s - Ya existe un archivo con ese nombre", +"Could not move %s" => "No se puede mover %s", +"Unable to rename file" => "No se puede renombrar el archivo", "No file was uploaded. Unknown error" => "Fallo no se subió el fichero", "There is no error, the file uploaded with success" => "No se ha producido ningún error, el archivo se ha subido con éxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini", @@ -34,7 +37,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 9375954c02e..6863f701e65 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 0dfc7b5bcd5..6996b0a7918 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 e141fa65726..96f59a668e9 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 00f8ded5163..e7e4b044372 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 95405a81a86..f14759ff8f0 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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:", @@ -34,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", @@ -59,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 eb9503d6cad..c15066163cf 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Non se moveu %s - Xa existe un ficheiro con ese nome.", +"Could not move %s" => "Non se puido mover %s", +"Unable to rename file" => "Non se pode renomear o ficheiro", "No file was uploaded. Unknown error" => "Non se subiu ningún ficheiro. Erro descoñecido.", "There is no error, the file uploaded with success" => "Non hai erros. O ficheiro enviouse correctamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini", @@ -22,6 +25,8 @@ "replaced {new_name} with {old_name}" => "substituír {new_name} polo {old_name}", "unshared {files}" => "{files} sen compartir", "deleted {files}" => "{files} eliminados", +"'.' is an invalid file name." => "'.' é un nonme de ficheiro non válido", +"File name cannot be empty." => "O nome de ficheiro non pode estar baldeiro", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten.", "generating ZIP-file, it may take some time." => "xerando un ficheiro ZIP, o que pode levar un anaco.", "Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes", @@ -32,7 +37,8 @@ "{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.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de cartafol non válido. O uso de 'Shared' está reservado por Owncloud", "{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 971933f2310..bac9a8a6a53 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 cb06fe087e6..b0d46ee7a2c 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 1f8cb444d26..5d934e97e7b 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 bca878873ac..2eff686611a 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 e74bfae2e8c..a54e424694f 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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:", @@ -34,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 bc7be7ea695..4621cc5d4ea 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"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 upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:", @@ -34,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 9d46afc97e9..928b7cbb7e4 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"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 upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:", @@ -34,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" => "폴더 이름이 유효하지 않습니다. ", "{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 49995f8df86..d6cf6450792 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "Close" => "داخستن", +"URL cannot be empty." => "ناونیشانی بهستهر نابێت بهتاڵ بێت.", "Name" => "ناو", "Save" => "پاشکهوتکردن", "Folder" => "بوخچه", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 9eb11360fed..3f48a69874e 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 f97228ecd1b..9be868164b1 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 22fd68214eb..77219abcf20 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -34,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 e485fdc6c3e..b96048cf002 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 5f266bd7cd4..ece24c7a2fa 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 36c9d6e62aa..fb22894b34e 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 b09c8f39c8b..c34a341e53f 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( +"Could not move %s" => "Nu s-a putut muta %s", +"Unable to rename file" => "Nu s-a putut redenumi fișierul", "No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută", "There is no error, the file uploaded with success" => "Nicio eroare, fișierul a fost încărcat cu succes", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ", @@ -7,6 +9,8 @@ "No file was uploaded" => "Niciun fișier încărcat", "Missing a temporary folder" => "Lipsește un dosar temporar", "Failed to write to disk" => "Eroare la scriere pe disc", +"Not enough space available" => "Nu este suficient spațiu disponibil", +"Invalid directory." => "Director invalid.", "Files" => "Fișiere", "Unshare" => "Anulează partajarea", "Delete" => "Șterge", @@ -20,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", "unshared {files}" => "nedistribuit {files}", "deleted {files}" => "Sterse {files}", +"'.' is an invalid file name." => "'.' este un nume invalid de fișier.", +"File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.", "generating ZIP-file, it may take some time." => "se generază fișierul ZIP, va dura ceva timp.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.", @@ -30,7 +36,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 403bd5c0982..49ead61f67e 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( +"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 upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:", @@ -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}" => "заменено {new_name} на {old_name}", "unshared {files}" => "не опубликованные {files}", "deleted {files}" => "удаленные {files}", +"'.' is an invalid file name." => "'.' - неправильное имя файла.", +"File name cannot be empty." => "Имя файла не может быть пустым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", "generating ZIP-file, it may take some time." => "создание 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." => "Ссылка не может быть пустой.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "{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 d7d3d37613a..16bcc54e59f 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 be33077f811..e1e06c4f814 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 1043e7ae9d9..003b1aff225 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 f07751073c4..2a0f4506386 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 48b258862b5..ecde8be4cc0 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 f04ae0ac228..7277ec17852 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -22,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.", @@ -32,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 b68ad8f02c6..16cab5cf963 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 f6b3b1c56f1..3fda142a4e9 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 80182d8ec80..b32da7de25e 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 4daa2d628c7..eba48a41cb6 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 b14186d9615..7d5c5290502 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 cad4b95c6aa..e60df8291a9 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 1188c252922..0b26a4b174f 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 7b55b547148..7f0f44baca9 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,30 +1,45 @@ <?php $TRANSLATIONS = array( -"No file was uploaded. Unknown error" => "沒有檔案被上傳. 未知的錯誤.", +"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 edf048c7e13..2e0772443f2 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -14,7 +14,8 @@ data-type='web'><p><?php echo $l->t('From link');?></p></li> </ul> </div> - <div id="upload" class="button"> + <div id="upload" class="button" + title="<?php echo $l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize'] ?>"> <form data-upload-id='1' id="data-upload-form" class="file_upload_form" @@ -31,10 +32,7 @@ value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)"> <input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir"> <input type="file" id="file_upload_start" name='files[]'/> - <a href="#" class="svg" onclick="return false;" - title="<?php echo $l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize'] ?>"></a> - - <iframe name="file_upload_target_1" class="file_upload_target" src=""></iframe> + <a href="#" class="svg" onclick="return false;"></a> </form> </div> <div id="uploadprogresswrapper"> diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php new file mode 100644 index 00000000000..cb1613ef375 --- /dev/null +++ b/apps/files_encryption/l10n/bg_BG.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "Криптиране", +"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 00000000000..c8f041d7622 --- /dev/null +++ b/apps/files_encryption/l10n/bn_BD.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "সংকেতায়ন", +"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 48779581846..1f2c29d54c5 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -1,4 +1,18 @@ <?php $TRANSLATIONS = array( +"Access granted" => "Достъпът е даден", +"Grant access" => "Даване на достъп", +"Fill out all required fields" => "Попълнете всички задължителни полета", +"External Storage" => "Външно хранилище", +"Backend" => "Администрация", +"Configuration" => "Конфигурация", +"Options" => "Опции", +"None set" => "Няма избрано", +"All Users" => "Всички потребители", "Groups" => "Групи", -"Delete" => "Изтриване" +"Users" => "Потребители", +"Delete" => "Изтриване", +"Enable User External Storage" => "Вкл. на поддръжка за външно потр. хранилище", +"Allow users to mount their own external storage" => "Позволено е на потребителите да ползват тяхно лично външно хранилище", +"SSL root certificates" => "SSL основни сертификати", +"Import Root Certificate" => "Импортиране на основен сертификат" ); diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index ad983b52e43..a4a2b23030b 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -1,6 +1,24 @@ <?php $TRANSLATIONS = array( -"Backend" => "প্রশাসক", -"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/lib/webdav.php b/apps/files_external/lib/webdav.php index 68aca228bc5..6c5bc579c30 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 00000000000..ac94358c4f9 --- /dev/null +++ b/apps/files_sharing/l10n/bg_BG.php @@ -0,0 +1,9 @@ +<?php $TRANSLATIONS = array( +"Password" => "Парола", +"Submit" => "Потвърждение", +"%s shared the folder %s with you" => "%s сподели папката %s с Вас", +"%s shared the file %s with you" => "%s сподели файла %s с Вас", +"Download" => "Изтегляне", +"No preview available for" => "Няма наличен преглед за", +"web services under your control" => "уеб услуги под Ваш контрол" +); diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index 785dfcd2f1d..c3af434ee29 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,6 +1,9 @@ <?php $TRANSLATIONS = array( "Password" => "কূটশব্দ", -"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 fef0ed8a8c2..487b9e79961 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 00000000000..98b5f4113ae --- /dev/null +++ b/apps/files_versions/l10n/bg_BG.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"History" => "История", +"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 d44ea131313..88349342fa9 100644 --- a/apps/files_versions/l10n/bn_BD.php +++ b/apps/files_versions/l10n/bn_BD.php @@ -1,3 +1,8 @@ <?php $TRANSLATIONS = array( -"Enable" => "সক্রিয়" +"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 00000000000..c064534a6b8 --- /dev/null +++ b/apps/user_ldap/l10n/bg_BG.php @@ -0,0 +1,4 @@ +<?php $TRANSLATIONS = array( +"Password" => "Парола", +"Help" => "Помощ" +); diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index eca40c171f8..094b20cad2d 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -1,4 +1,37 @@ <?php $TRANSLATIONS = array( +"Host" => "হোস্ট", +"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/he.php b/apps/user_ldap/l10n/he.php new file mode 100644 index 00000000000..d33ecaadf05 --- /dev/null +++ b/apps/user_ldap/l10n/he.php @@ -0,0 +1,12 @@ +<?php $TRANSLATIONS = array( +"Host" => "מארח", +"User DN" => "DN משתמש", +"Password" => "סיסמא", +"For anonymous access, leave DN and Password empty." => "לגישה אנונימית, השאר את הDM והסיסמא ריקים.", +"User Login Filter" => "סנן כניסת משתמש", +"User List Filter" => "סנן רשימת משתמשים", +"Group Filter" => "סנן קבוצה", +"in bytes" => "בבתים", +"in seconds. A change empties the cache." => "בשניות. שינוי מרוקן את המטמון.", +"Help" => "עזרה" +); diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 14eb5837ceb..577afcef1c9 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_webdavauth/l10n/bn_BD.php b/apps/user_webdavauth/l10n/bn_BD.php new file mode 100644 index 00000000000..773e7f7eb76 --- /dev/null +++ b/apps/user_webdavauth/l10n/bn_BD.php @@ -0,0 +1,4 @@ +<?php $TRANSLATIONS = array( +"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 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/fr.php b/apps/user_webdavauth/l10n/fr.php index 339931c7cee..557a22e6c82 100644 --- a/apps/user_webdavauth/l10n/fr.php +++ b/apps/user_webdavauth/l10n/fr.php @@ -1,3 +1,4 @@ <?php $TRANSLATIONS = array( -"URL: http://" => "URL : http://" +"URL: http://" => "URL : http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud " ); diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 99f0e039334..31c8ef88eb9 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -5,15 +5,25 @@ ul.multiselectoptions { background-color:#fff; border:1px solid #ddd; - border-bottom-left-radius:.5em; - border-bottom-right-radius:.5em; border-top:none; box-shadow:0 1px 1px #ddd; padding-top:.5em; position:absolute; + max-height: 20em; + overflow-y: auto; z-index:49; } + ul.multiselectoptions.down { + border-bottom-left-radius:.5em; + border-bottom-right-radius:.5em; + } + + ul.multiselectoptions.up { + border-top-left-radius:.5em; + border-top-right-radius:.5em; + } + ul.multiselectoptions>li { overflow:hidden; white-space:nowrap; @@ -30,11 +40,20 @@ div.multiselect.active { background-color:#fff; + position:relative; + z-index:50; + } + + div.multiselect.up { + border-top:0 none; + border-top-left-radius:0; + border-top-right-radius:0; + } + + div.multiselect.down { border-bottom:none; border-bottom-left-radius:0; border-bottom-right-radius:0; - position:relative; - z-index:50; } div.multiselect>span:first-child { diff --git a/core/css/styles.css b/core/css/styles.css index 376e3a2f49b..496320561f8 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -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 f7a29276f7d..563df4e6632 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 610950995db..95889ac8a27 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -343,8 +343,15 @@ if(typeof localStorage !=='undefined' && localStorage !== null){ return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item)); }, getItem:function(name){ - if(localStorage.getItem(OC.localStorage.namespace+name)===null){return null;} - return JSON.parse(localStorage.getItem(OC.localStorage.namespace+name)); + var item = localStorage.getItem(OC.localStorage.namespace+name); + if(item===null) { + return null; + } else if (typeof JSON === 'undefined') { + //fallback to jquery for IE6/7/8 + return $.parseJSON(item); + } else { + return JSON.parse(item); + } } }; }else{ @@ -615,7 +622,7 @@ $(document).ready(function(){ $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.password .action').tipsy({gravity:'se', fade:true, live:true}); - $('#upload a').tipsy({gravity:'w', fade:true}); + $('#upload').tipsy({gravity:'w', fade:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); $('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); diff --git a/core/js/multiselect.js b/core/js/multiselect.js index c4fd74b0475..623c6e0f7e1 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -1,20 +1,44 @@ +/** + * @param 'createCallback' A function to be called when a new entry is created. Two arguments are supplied to this function: + * The select element used and the value of the option. If the function returns false addition will be cancelled. If it returns + * anything else it will be used as the value of the newly added option. + * @param 'createText' The placeholder text for the create action. + * @param 'title' The title to show if no options are selected. + * @param 'checked' An array containing values for options that should be checked. Any options which are already selected will be added to this array. + * @param 'labels' The corresponding labels to show for the checked items. + * @param 'oncheck' Callback function which will be called when a checkbox/radiobutton is selected. If the function returns false the input will be unchecked. + * @param 'onuncheck' @see 'oncheck'. + * @param 'singleSelect' If true radiobuttons will be used instead of checkboxes. + */ (function( $ ){ var multiSelectId=-1; - $.fn.multiSelect=function(options){ + $.fn.multiSelect=function(options) { multiSelectId++; var settings = { 'createCallback':false, 'createText':false, + 'singleSelect':false, + 'selectedFirst':false, + 'sort':true, 'title':this.attr('title'), 'checked':[], + 'labels':[], 'oncheck':false, 'onuncheck':false, 'minWidth': 'default;', }; + $(this).attr('data-msid', multiSelectId); $.extend(settings,options); - $.each(this.children(),function(i,option){ - if($(option).attr('selected') && settings.checked.indexOf($(option).val())==-1){ + $.each(this.children(),function(i,option) { + // If the option is selected, but not in the checked array, add it. + if($(option).attr('selected') && settings.checked.indexOf($(option).val()) === -1) { settings.checked.push($(option).val()); + settings.labels.push($(option).text().trim()); + } + // If the option is in the checked array but not selected, select it. + else if(settings.checked.indexOf($(option).val()) !== -1 && !$(option).attr('selected')) { + $(option).attr('selected', 'selected'); + settings.labels.push($(option).text().trim()); } }); var button=$('<div class="multiselect button"><span>'+settings.title+'</span><span>▾</span></div>'); @@ -24,24 +48,36 @@ button.selectedItems=[]; this.hide(); this.before(span); - if(settings.minWidth=='default'){ + if(settings.minWidth=='default') { settings.minWidth=button.width(); } button.css('min-width',settings.minWidth); settings.minOuterWidth=button.outerWidth()-2; button.data('settings',settings); - if(settings.checked.length>0){ - button.children('span').first().text(settings.checked.join(', ')); + + if(!settings.singleSelect && settings.checked.length>0) { + button.children('span').first().text(settings.labels.join(', ')); + } else if(settings.singleSelect) { + button.children('span').first().text(this.find(':selected').text()); } + var self = this; + self.menuDirection = 'down'; button.click(function(event){ var button=$(this); - if(button.parent().children('ul').length>0){ - button.parent().children('ul').slideUp(400,function(){ - button.parent().children('ul').remove(); - button.removeClass('active'); - }); + if(button.parent().children('ul').length>0) { + if(self.menuDirection === 'down') { + button.parent().children('ul').slideUp(400,function() { + button.parent().children('ul').remove(); + button.removeClass('active down'); + }); + } else { + button.parent().children('ul').fadeOut(400,function() { + button.parent().children('ul').remove(); + button.removeClass('active up'); + }); + } return; } var lists=$('ul.multiselectoptions'); @@ -54,49 +90,69 @@ event.stopPropagation(); var options=$(this).parent().next().children(); var list=$('<ul class="multiselectoptions"/>').hide().appendTo($(this).parent()); - function createItem(element,checked){ + var inputType = settings.singleSelect ? 'radio' : 'checkbox'; + function createItem(element, checked){ element=$(element); var item=element.val(); var id='ms'+multiSelectId+'-option-'+item; - var input=$('<input type="checkbox"/>'); + var input=$('<input type="' + inputType + '"/>'); input.attr('id',id); + if(settings.singleSelect) { + input.attr('name', 'ms'+multiSelectId+'-option'); + } var label=$('<label/>'); label.attr('for',id); - label.text(item); - if(settings.checked.indexOf(item)!=-1 || checked){ - input.attr('checked',true); + label.text(element.text() || item); + if(settings.checked.indexOf(item)!=-1 || checked) { + input.attr('checked', true); } if(checked){ - settings.checked.push(item); + if(settings.singleSelect) { + settings.checked = [item]; + settings.labels = [item]; + } else { + settings.checked.push(item); + settings.labels.push(item); + } } input.change(function(){ - var groupname=$(this).next().text(); - if($(this).is(':checked')){ + var value = $(this).attr('id').substring(String('ms'+multiSelectId+'-option').length+1); + var label = $(this).next().text().trim(); + if($(this).is(':checked')) { + if(settings.singleSelect) { + settings.checked = []; + settings.labels = []; + $.each(self.find('option'), function() { + $(this).removeAttr('selected'); + }); + } element.attr('selected','selected'); - if(settings.oncheck){ - if(settings.oncheck(groupname)===false){ + if(typeof settings.oncheck === 'function') { + if(settings.oncheck(value)===false) { $(this).attr('checked', false); return; } } - settings.checked.push(groupname); - }else{ - var index=settings.checked.indexOf(groupname); + settings.checked.push(value); + settings.labels.push(label); + $(this).parent().addClass('checked'); + } else { + var index=settings.checked.indexOf(value); element.attr('selected',null); - if(settings.onuncheck){ - if(settings.onuncheck(groupname)===false){ + if(typeof settings.onuncheck === 'function') { + if(settings.onuncheck(value)===false) { $(this).attr('checked',true); return; } } + $(this).parent().removeClass('checked'); settings.checked.splice(index,1); + settings.labels.splice(index,1); } var oldWidth=button.width(); - if(settings.checked.length>0){ - button.children('span').first().text(settings.checked.join(', ')); - }else{ - button.children('span').first().text(settings.title); - } + button.children('span').first().text(settings.labels.length > 0 + ? settings.labels.join(', ') + : settings.title); var newOuterWidth=Math.max((button.outerWidth()-2),settings.minOuterWidth)+'px'; var newWidth=Math.max(button.width(),settings.minWidth); var pos=button.position(); @@ -110,6 +166,9 @@ }); var li=$('<li></li>'); li.append(input).append(label); + if(input.is(':checked')) { + li.addClass('checked'); + } return li; } $.each(options,function(index,item){ @@ -117,13 +176,13 @@ }); button.parent().data('preventHide',false); if(settings.createText){ - var li=$('<li>+ <em>'+settings.createText+'<em></li>'); + var li=$('<li class="creator">+ <em>'+settings.createText+'<em></li>'); li.click(function(event){ li.empty(); var input=$('<input class="new">'); li.append(input); input.focus(); - input.css('width',button.width()); + input.css('width',button.innerWidth()); button.parent().data('preventHide',true); input.keypress(function(event) { if(event.keyCode == 13) { @@ -132,7 +191,7 @@ var value = $(this).val(); var exists = false; $.each(options,function(index, item) { - if ($(item).val() == value) { + if ($(item).val() == value || $(item).text() == value) { exists = true; return false; } @@ -141,22 +200,39 @@ return false; } var li=$(this).parent(); + var val = $(this).val() + var select=button.parent().next(); + if(typeof settings.createCallback === 'function') { + var response = settings.createCallback(select, val); + if(response === false) { + return false; + } else if(typeof response !== 'undefined') { + val = response; + } + } + if(settings.singleSelect) { + $.each(select.find('option:selected'), function() { + $(this).removeAttr('selected'); + }); + } $(this).remove(); li.text('+ '+settings.createText); li.before(createItem(this)); - var select=button.parent().next(); var option=$('<option selected="selected"/>'); - option.attr('value',value); - option.text($(this).val()); + option.text($(this).val()).val(val).attr('selected', 'selected'); select.append(option); - li.prev().children('input').trigger('click'); + li.prev().children('input').prop('checked', true).trigger('change'); button.parent().data('preventHide',false); - if(settings.createCallback){ - settings.createCallback($(this).val()); + button.children('span').first().text(settings.labels.length > 0 + ? settings.labels.join(', ') + : settings.title); + if(self.menuDirection === 'up') { + var list = li.parent(); + list.css('top', list.position().top-li.outerHeight()); } } }); - input.blur(function(){ + input.blur(function() { event.preventDefault(); event.stopPropagation(); $(this).remove(); @@ -168,21 +244,72 @@ }); list.append(li); } + + var doSort = function(list, selector) { + var rows = list.find('li'+selector).get(); + + if(settings.sort) { + rows.sort(function(a, b) { + return $(a).text().toUpperCase().localeCompare($(b).text().toUpperCase()); + }); + } + + $.each(rows, function(index, row) { + list.append(row); + }); + }; + if(settings.sort && settings.selectedFirst) { + doSort(list, '.checked'); + doSort(list, ':not(.checked)'); + } else if(settings.sort && !settings.selectedFirst) { + doSort(list, ''); + } + list.append(list.find('li.creator')); var pos=button.position(); - list.css('top',pos.top+button.outerHeight()-5); - list.css('left',pos.left+3); - list.css('width',(button.outerWidth()-2)+'px'); - list.slideDown(); - list.click(function(event){ + if($(document).height() > (button.offset().top+button.outerHeight() + list.children().length * button.height()) + || $(document).height()/2 > pos.top + ) { + list.css({ + top:pos.top+button.outerHeight()-5, + left:pos.left+3, + width:(button.outerWidth()-2)+'px', + 'max-height':($(document).height()-(button.offset().top+button.outerHeight()+10))+'px' + }); + list.addClass('down'); + button.addClass('down'); + list.slideDown(); + } else { + list.css('max-height', $(document).height()-($(document).height()-(pos.top)+50)+'px'); + list.css({ + top:pos.top - list.height(), + left:pos.left+3, + width:(button.outerWidth()-2)+'px' + + }); + list.detach().insertBefore($(this)); + list.addClass('up'); + button.addClass('up'); + list.fadeIn(); + self.menuDirection = 'up'; + } + list.click(function(event) { event.stopPropagation(); }); }); - $(window).click(function(){ - if(!button.parent().data('preventHide')){ - button.parent().children('ul').slideUp(400,function(){ - button.parent().children('ul').remove(); - button.removeClass('active'); - }); + $(window).click(function() { + if(!button.parent().data('preventHide')) { + // How can I save the effect in a var? + if(self.menuDirection === 'down') { + button.parent().children('ul').slideUp(400,function() { + button.parent().children('ul').remove(); + button.removeClass('active down'); + }); + } else { + button.parent().children('ul').fadeOut(400,function() { + button.parent().children('ul').remove(); + button.removeClass('active up'); + }); + } } }); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index d33de577b3d..221ea8aebb1 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -98,7 +98,6 @@ "Lost your password?" => "هل نسيت كلمة السر؟", "remember" => "تذكر", "Log in" => "أدخل", -"You are logged out." => "تم الخروج بنجاح.", "prev" => "السابق", "next" => "التالي", "Security Warning!" => "تحذير أمان!", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 0033324cb1d..a7cba523be2 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -1,62 +1,19 @@ <?php $TRANSLATIONS = array( -"This category already exists: " => "Категорията вече съществува:", -"No categories selected for deletion." => "Няма избрани категории за изтриване", "Settings" => "Настройки", -"Cancel" => "Отказ", -"No" => "Не", -"Yes" => "Да", -"Ok" => "Добре", -"Error" => "Грешка", +"seconds ago" => "преди секунди", +"1 minute ago" => "преди 1 минута", +"1 hour ago" => "преди 1 час", +"today" => "днес", +"yesterday" => "вчера", +"last month" => "последният месец", +"last year" => "последната година", +"years ago" => "последните години", "Password" => "Парола", -"You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.", -"Username" => "Потребител", -"Request reset" => "Нулиране на заявка", -"Your password was reset" => "Вашата парола е нулирана", -"New password" => "Нова парола", -"Reset password" => "Нулиране на парола", "Personal" => "Лични", "Users" => "Потребители", -"Apps" => "Програми", +"Apps" => "Приложения", "Admin" => "Админ", "Help" => "Помощ", -"Access forbidden" => "Достъпът е забранен", -"Cloud not found" => "облакът не намерен", -"Edit categories" => "Редактиране на категориите", "Add" => "Добавяне", -"Create an <strong>admin account</strong>" => "Създаване на <strong>админ профил</strong>", -"Advanced" => "Разширено", -"Data folder" => "Директория за данни", -"Configure the database" => "Конфигуриране на базата", -"will be used" => "ще се ползва", -"Database user" => "Потребител за базата", -"Database password" => "Парола за базата", -"Database name" => "Име на базата", -"Database host" => "Хост за базата", -"Finish setup" => "Завършване на настройките", -"Sunday" => "Неделя", -"Monday" => "Понеделник", -"Tuesday" => "Вторник", -"Wednesday" => "Сряда", -"Thursday" => "Четвъртък", -"Friday" => "Петък", -"Saturday" => "Събота", -"January" => "Януари", -"February" => "Февруари", -"March" => "Март", -"April" => "Април", -"May" => "Май", -"June" => "Юни", -"July" => "Юли", -"August" => "Август", -"September" => "Септември", -"October" => "Октомври", -"November" => "Ноември", -"December" => "Декември", -"Log out" => "Изход", -"Lost your password?" => "Забравена парола?", -"remember" => "запомни", -"Log in" => "Вход", -"You are logged out." => "Вие излязохте.", -"prev" => "пред.", -"next" => "следващо" +"web services under your control" => "уеб услуги под Ваш контрол" ); diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index a3350761386..60e23e4c16c 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -1,12 +1,15 @@ <?php $TRANSLATIONS = array( "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: " => "এই ক্যাটেগরিটি বিদ্যমানঃ", +"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 <strong>admin account</strong>" => "<strong>প্রশাসক একাউন্ট</strong> তৈরি কর", +"Create an <strong>admin account</strong>" => "<strong>প্রশাসক একাউন্ট</strong> তৈরী করুন", "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,19 @@ "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." => "আপনি প্রস্থান করেছেন", "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 c4e134cdf36..8a186bfc54e 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -125,7 +125,6 @@ "Lost your password?" => "Heu perdut la contrasenya?", "remember" => "recorda'm", "Log in" => "Inici de sessió", -"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.", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 3a15bd1ae90..4d2803261b6 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -125,7 +125,6 @@ "Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat si", "Log in" => "Přihlásit", -"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.", diff --git a/core/l10n/da.php b/core/l10n/da.php index a792e1d9bae..26cc6a5e08e 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -125,7 +125,6 @@ "Lost your password?" => "Mistet dit kodeord?", "remember" => "husk", "Log in" => "Log ind", -"You are logged out." => "Du er nu logget ud.", "prev" => "forrige", "next" => "næste", "Security Warning!" => "Sikkerhedsadvarsel!", diff --git a/core/l10n/de.php b/core/l10n/de.php index c5867eda8c3..76f1379e21e 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -125,9 +125,9 @@ "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", -"You are logged out." => "Du wurdest abgemeldet.", "prev" => "Zurück", "next" => "Weiter", +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", "Security Warning!" => "Sicherheitswarnung!", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bitte bestätige Dein Passwort. <br/> Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben.", "Verify" => "Bestätigen" diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index ed0bc0e0ffb..2eb8758215f 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -125,9 +125,9 @@ "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", -"You are logged out." => "Sie wurden abgemeldet.", "prev" => "Zurück", "next" => "Weiter", +"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", "Security Warning!" => "Sicherheitshinweis!", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bitte überprüfen Sie Ihr Passwort. <br/>Aus Sicherheitsgründen werden Sie gelegentlich aufgefordert, Ihr Passwort erneut einzugeben.", "Verify" => "Überprüfen" diff --git a/core/l10n/el.php b/core/l10n/el.php index d8a5d7aef51..88c169ace7a 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -125,7 +125,6 @@ "Lost your password?" => "Ξεχάσατε το συνθηματικό σας;", "remember" => "απομνημόνευση", "Log in" => "Είσοδος", -"You are logged out." => "Έχετε αποσυνδεθεί.", "prev" => "προηγούμενο", "next" => "επόμενο", "Security Warning!" => "Προειδοποίηση Ασφαλείας!", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index a605b27ed80..0cbe7d33be6 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -121,7 +121,6 @@ "Lost your password?" => "Ĉu vi perdis vian pasvorton?", "remember" => "memori", "Log in" => "Ensaluti", -"You are logged out." => "Vi estas elsalutita.", "prev" => "maljena", "next" => "jena", "Security Warning!" => "Sekureca averto!", diff --git a/core/l10n/es.php b/core/l10n/es.php index bc72944340b..2cc604f590c 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -125,7 +125,6 @@ "Lost your password?" => "¿Has perdido tu contraseña?", "remember" => "recuérdame", "Log in" => "Entrar", -"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.", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 830281dabbe..48b8177573b 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -125,7 +125,6 @@ "Lost your password?" => "¿Perdiste tu contraseña?", "remember" => "recordame", "Log in" => "Entrar", -"You are logged out." => "Terminaste la sesión.", "prev" => "anterior", "next" => "siguiente", "Security Warning!" => "¡Advertencia de seguridad!", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index b67dd13dd69..226c0d27e80 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -101,7 +101,6 @@ "Lost your password?" => "Kaotasid oma parooli?", "remember" => "pea meeles", "Log in" => "Logi sisse", -"You are logged out." => "Sa oled välja loginud", "prev" => "eelm", "next" => "järgm", "Security Warning!" => "turvahoiatus!", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 1a21ca34705..becd4d83b66 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -125,7 +125,6 @@ "Lost your password?" => "Galdu duzu pasahitza?", "remember" => "gogoratu", "Log in" => "Hasi saioa", -"You are logged out." => "Zure saioa bukatu da.", "prev" => "aurrekoa", "next" => "hurrengoa", "Security Warning!" => "Segurtasun abisua", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 2f859dc31d2..a7c3c9ab2e5 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -71,7 +71,6 @@ "Lost your password?" => "آیا گذرواژه تان را به یاد نمی آورید؟", "remember" => "بیاد آوری", "Log in" => "ورود", -"You are logged out." => "شما خارج شدید", "prev" => "بازگشت", "next" => "بعدی" ); diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 4b4a23b8c70..3d3bd93845f 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "Käyttäjä %s jakoi tiedoston kanssasi", +"User %s shared a folder with you" => "Käyttäjä %s jakoi kansion kanssasi", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: " => "Tämä luokka on jo olemassa: ", "No categories selected for deletion." => "Luokkia ei valittu poistettavaksi.", @@ -52,6 +56,7 @@ "ownCloud password reset" => "ownCloud-salasanan nollaus", "Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}", "You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.", +"Reset email send." => "Salasanan nollausviesti lähetetty.", "Request failed!" => "Pyyntö epäonnistui!", "Username" => "Käyttäjätunnus", "Request reset" => "Tilaus lähetetty", @@ -108,9 +113,9 @@ "Lost your password?" => "Unohditko salasanasi?", "remember" => "muista", "Log in" => "Kirjaudu sisään", -"You are logged out." => "Olet kirjautunut ulos.", "prev" => "edellinen", "next" => "seuraava", +"Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken.", "Security Warning!" => "Turvallisuusvaroitus!", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Vahvista salasanasi. <br/>Turvallisuussyistä sinulta saatetaan ajoittain kysyä salasanasi uudelleen.", "Verify" => "Vahvista" diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 8777309d9b7..8cbf5f45adb 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -125,7 +125,6 @@ "Lost your password?" => "Mot de passe perdu ?", "remember" => "se souvenir de moi", "Log in" => "Connexion", -"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.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 8daa8c6d1c4..bdd1293113c 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -125,9 +125,9 @@ "Lost your password?" => "Perdeu o contrasinal?", "remember" => "lembrar", "Log in" => "Conectar", -"You are logged out." => "Está desconectado", "prev" => "anterior", "next" => "seguinte", +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a versión %s, esto pode levar un anaco.", "Security Warning!" => "Advertencia de seguranza", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifique o seu contrasinal.<br/>Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu contrasinal.", "Verify" => "Verificar" diff --git a/core/l10n/he.php b/core/l10n/he.php index 50addbd5278..bb6ac48dd92 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -125,9 +125,9 @@ "Lost your password?" => "שכחת את ססמתך?", "remember" => "שמירת הססמה", "Log in" => "כניסה", -"You are logged out." => "לא התחברת.", "prev" => "הקודם", "next" => "הבא", +"Updating ownCloud to version %s, this may take a while." => "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה.", "Security Warning!" => "אזהרת אבטחה!", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "נא לאמת את הססמה שלך. <br/>מטעמי אבטחה יתכן שתופיע בקשה להזין את הססמה שוב.", "Verify" => "אימות" diff --git a/core/l10n/hi.php b/core/l10n/hi.php index 0e4f18c6cd8..d7f9fd150b0 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -12,7 +12,6 @@ "Database user" => "डेटाबेस उपयोगकर्ता", "Database password" => "डेटाबेस पासवर्ड", "Finish setup" => "सेटअप समाप्त करे", -"You are logged out." => "आप लोग आउट कर दिए गए हैं.", "prev" => "पिछला", "next" => "अगला" ); diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 69bdd3a4f83..43dbbe51ae0 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -91,7 +91,6 @@ "Lost your password?" => "Izgubili ste lozinku?", "remember" => "zapamtiti", "Log in" => "Prijava", -"You are logged out." => "Odjavljeni ste.", "prev" => "prethodan", "next" => "sljedeći" ); diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 1c86e8b11d6..fa02064f3d2 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -125,7 +125,6 @@ "Lost your password?" => "Elfelejtette a jelszavát?", "remember" => "emlékezzen", "Log in" => "Bejelentkezés", -"You are logged out." => "Kilépett.", "prev" => "előző", "next" => "következő", "Security Warning!" => "Biztonsági figyelmeztetés!", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 07cc118f0e6..d614f8381af 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -52,7 +52,6 @@ "Lost your password?" => "Tu perdeva le contrasigno?", "remember" => "memora", "Log in" => "Aperir session", -"You are logged out." => "Tu session ha essite claudite.", "prev" => "prev", "next" => "prox" ); diff --git a/core/l10n/id.php b/core/l10n/id.php index 99df16332f5..d0ba6c694fb 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -100,7 +100,6 @@ "Lost your password?" => "Lupa password anda?", "remember" => "selalu login", "Log in" => "Masuk", -"You are logged out." => "Anda telah keluar.", "prev" => "sebelum", "next" => "selanjutnya", "Security Warning!" => "peringatan keamanan!", diff --git a/core/l10n/is.php b/core/l10n/is.php index 53b2fe88839..0b2b2ce3e9a 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ð <strong>bæta við</strong>?", +"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" => "<strong>Villa</strong>", +"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 <strong>lykilorð</strong>", +"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", @@ -125,9 +125,9 @@ "Lost your password?" => "Týndir þú lykilorðinu?", "remember" => "muna eftir mér", "Log in" => "<strong>Skrá inn</strong>", -"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. <br/>For security reasons you may be occasionally asked to enter your password again." => "Vinsamlegast staðfestu lykilorðið þitt.<br/>Í ö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 952ae4d06b6..d868150346a 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -125,7 +125,6 @@ "Lost your password?" => "Hai perso la password?", "remember" => "ricorda", "Log in" => "Accedi", -"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.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 46d40e2e73e..5efbe05bc56 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -125,7 +125,6 @@ "Lost your password?" => "パスワードを忘れましたか?", "remember" => "パスワードを記憶する", "Log in" => "ログイン", -"You are logged out." => "ログアウトしました。", "prev" => "前", "next" => "次", "Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index efb3998a77e..b002b42cb59 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -98,7 +98,6 @@ "Lost your password?" => "დაგავიწყდათ პაროლი?", "remember" => "დამახსოვრება", "Log in" => "შესვლა", -"You are logged out." => "თქვენ გამოხვედით სისტემიდან", "prev" => "წინა", "next" => "შემდეგი", "Security Warning!" => "უსაფრთხოების გაფრთხილება!", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 4b7df81fa85..0faa19865f9 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -125,7 +125,6 @@ "Lost your password?" => "암호를 잊으셨습니까?", "remember" => "기억하기", "Log in" => "로그인", -"You are logged out." => "로그아웃되었습니다.", "prev" => "이전", "next" => "다음", "Updating ownCloud to version %s, this may take a while." => "ownCloud 를 버젼 %s로 업데이트 하는 중, 시간이 소요됩니다.", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 7a1c462ffd1..407b8093a27 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -64,7 +64,6 @@ "Lost your password?" => "Passwuert vergiess?", "remember" => "verhalen", "Log in" => "Log dech an", -"You are logged out." => "Du bass ausgeloggt.", "prev" => "zeréck", "next" => "weider" ); diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 9c5c8f90c5e..19826b26c16 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -104,7 +104,6 @@ "Lost your password?" => "Pamiršote slaptažodį?", "remember" => "prisiminti", "Log in" => "Prisijungti", -"You are logged out." => "Jūs atsijungėte.", "prev" => "atgal", "next" => "kitas", "Security Warning!" => "Saugumo pranešimas!", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 5543c7a56d6..8a6dc033de6 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -30,7 +30,6 @@ "Lost your password?" => "Aizmirsāt paroli?", "remember" => "atcerēties", "Log in" => "Ielogoties", -"You are logged out." => "Jūs esat veiksmīgi izlogojies.", "prev" => "iepriekšējā", "next" => "nākamā" ); diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 401baf6efa0..94c9ee581b1 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -125,7 +125,6 @@ "Lost your password?" => "Ја заборавивте лозинката?", "remember" => "запамти", "Log in" => "Најава", -"You are logged out." => "Одјавени сте.", "prev" => "претходно", "next" => "следно", "Security Warning!" => "Безбедносно предупредување.", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 56a79572ef7..b08ccecf616 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -62,7 +62,6 @@ "Lost your password?" => "Hilang kata laluan?", "remember" => "ingat", "Log in" => "Log masuk", -"You are logged out." => "Anda telah log keluar.", "prev" => "sebelum", "next" => "seterus" ); diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 4069e297a7b..45ee77e3c17 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -100,7 +100,6 @@ "Lost your password?" => "Mistet passordet ditt?", "remember" => "husk", "Log in" => "Logg inn", -"You are logged out." => "Du er logget ut", "prev" => "forrige", "next" => "neste", "Security Warning!" => "Sikkerhetsadvarsel!", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 726dbf20161..b3a43523a76 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -125,7 +125,6 @@ "Lost your password?" => "Uw wachtwoord vergeten?", "remember" => "onthoud gegevens", "Log in" => "Meld je aan", -"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.", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index e62e0dea730..8aaf0b705c8 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -52,7 +52,6 @@ "Lost your password?" => "Gløymt passordet?", "remember" => "hugs", "Log in" => "Logg inn", -"You are logged out." => "Du er logga ut.", "prev" => "førre", "next" => "neste" ); diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 1ae67063572..be6d5aec285 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -93,7 +93,6 @@ "Lost your password?" => "L'as perdut lo senhal ?", "remember" => "bremba-te", "Log in" => "Dintrada", -"You are logged out." => "Sias pas dintra (t/ada)", "prev" => "dariièr", "next" => "venent" ); diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 1208aec5a53..159e5b9caed 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -125,9 +125,9 @@ "Lost your password?" => "Nie pamiętasz hasła?", "remember" => "Zapamiętanie", "Log in" => "Zaloguj", -"You are logged out." => "Wylogowano użytkownika.", "prev" => "wstecz", "next" => "naprzód", +"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę.", "Security Warning!" => "Ostrzeżenie o zabezpieczeniach!", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Sprawdź swoje hasło.<br/>Ze względów bezpieczeństwa możesz zostać czasami poproszony o wprowadzenie hasła ponownie.", "Verify" => "Zweryfikowane" diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index f28b0035995..a5e21734c3e 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -117,7 +117,6 @@ "Lost your password?" => "Esqueçeu sua senha?", "remember" => "lembrete", "Log in" => "Log in", -"You are logged out." => "Você está desconectado.", "prev" => "anterior", "next" => "próximo", "Security Warning!" => "Aviso de Segurança!", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index a2bfcf4f882..b896dda4003 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -125,9 +125,9 @@ "Lost your password?" => "Esqueceu a sua password?", "remember" => "lembrar", "Log in" => "Entrar", -"You are logged out." => "Estás desconetado.", "prev" => "anterior", "next" => "seguinte", +"Updating ownCloud to version %s, this may take a while." => "A Actualizar o ownCloud para a versão %s, esta operação pode demorar.", "Security Warning!" => "Aviso de Segurança!", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique a sua palavra-passe. <br/>Por razões de segurança, pode ser-lhe perguntada, ocasionalmente, a sua palavra-passe de novo.", "Verify" => "Verificar" diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 1c58e5fe2be..3c47ef0f8ca 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -109,7 +109,6 @@ "Lost your password?" => "Ai uitat parola?", "remember" => "amintește", "Log in" => "Autentificare", -"You are logged out." => "Ai ieșit", "prev" => "precedentul", "next" => "următorul", "Security Warning!" => "Advertisment de Securitate", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 4db2a2f06fd..9a72986aea4 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -125,9 +125,9 @@ "Lost your password?" => "Забыли пароль?", "remember" => "запомнить", "Log in" => "Войти", -"You are logged out." => "Вы вышли.", "prev" => "пред", "next" => "след", +"Updating ownCloud to version %s, this may take a while." => "Производится обновление ownCloud до версии %s. Это может занять некоторое время.", "Security Warning!" => "Предупреждение безопасности!", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Пожалуйста, проверьте свой пароль. <br/>По соображениям безопасности, Вам иногда придется вводить свой пароль снова.", "Verify" => "Подтвердить" diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index c18fe245c9e..400aa3996e4 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -125,7 +125,6 @@ "Lost your password?" => "Забыли пароль?", "remember" => "запомнить", "Log in" => "Войти", -"You are logged out." => "Вы вышли из системы.", "prev" => "предыдущий", "next" => "следующий", "Security Warning!" => "Предупреждение системы безопасности!", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 35b0df3188c..a6aeb484ed7 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -85,7 +85,6 @@ "Lost your password?" => "මුරපදය අමතකද?", "remember" => "මතක තබාගන්න", "Log in" => "ප්රවේශවන්න", -"You are logged out." => "ඔබ නික්මී ඇත.", "prev" => "පෙර", "next" => "ඊළඟ" ); diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 162d94e8242..f9d1aa14e79 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -117,7 +117,6 @@ "Lost your password?" => "Zabudli ste heslo?", "remember" => "zapamätať", "Log in" => "Prihlásiť sa", -"You are logged out." => "Ste odhlásený.", "prev" => "späť", "next" => "ďalej", "Security Warning!" => "Bezpečnostné varovanie!", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 0ee2eb03b3c..795c5a89952 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -125,7 +125,6 @@ "Lost your password?" => "Ali ste pozabili geslo?", "remember" => "Zapomni si me", "Log in" => "Prijava", -"You are logged out." => "Sta odjavljeni.", "prev" => "nazaj", "next" => "naprej", "Security Warning!" => "Varnostno opozorilo!", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 406b92ff83f..1679b9e6ddd 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -117,7 +117,6 @@ "Lost your password?" => "Изгубили сте лозинку?", "remember" => "упамти", "Log in" => "Пријава", -"You are logged out." => "Одјављени сте.", "prev" => "претходно", "next" => "следеће", "Security Warning!" => "Сигурносно упозорење!", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index af48a845720..efcb7c10f01 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -46,7 +46,6 @@ "Log out" => "Odjava", "Lost your password?" => "Izgubili ste lozinku?", "remember" => "upamti", -"You are logged out." => "Odjavljeni ste.", "prev" => "prethodno", "next" => "sledeće" ); diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a7698fb30ce..6bb62613048 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -125,9 +125,9 @@ "Lost your password?" => "Glömt ditt lösenord?", "remember" => "kom ihåg", "Log in" => "Logga in", -"You are logged out." => "Du är utloggad.", "prev" => "föregående", "next" => "nästa", +"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.", "Security Warning!" => "Säkerhetsvarning!", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bekräfta ditt lösenord. <br/>Av säkerhetsskäl kan du ibland bli ombedd att ange ditt lösenord igen.", "Verify" => "Verifiera" diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 9a432d11c9b..ec5f142ecfb 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -117,7 +117,6 @@ "Lost your password?" => "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?", "remember" => "ஞாபகப்படுத்துக", "Log in" => "புகுபதிகை", -"You are logged out." => "நீங்கள் விடுபதிகை செய்துவிட்டீர்கள்.", "prev" => "முந்தைய", "next" => "அடுத்து", "Security Warning!" => "பாதுகாப்பு எச்சரிக்கை!", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index e254ccf259f..7cbc39dd1e0 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -117,7 +117,6 @@ "Lost your password?" => "ลืมรหัสผ่าน?", "remember" => "จำรหัสผ่าน", "Log in" => "เข้าสู่ระบบ", -"You are logged out." => "คุณออกจากระบบเรียบร้อยแล้ว", "prev" => "ก่อนหน้า", "next" => "ถัดไป", "Security Warning!" => "คำเตือนเพื่อความปลอดภัย!", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 86036e5ebd1..1020b61f9b9 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -104,7 +104,6 @@ "Lost your password?" => "Parolanızı mı unuttunuz?", "remember" => "hatırla", "Log in" => "Giriş yap", -"You are logged out." => "Çıkış yaptınız.", "prev" => "önceki", "next" => "sonraki", "Security Warning!" => "Güvenlik Uyarısı!", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 180d2a5c6bd..c088db6d419 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -125,7 +125,6 @@ "Lost your password?" => "Забули пароль?", "remember" => "запам'ятати", "Log in" => "Вхід", -"You are logged out." => "Ви вийшли з системи.", "prev" => "попередній", "next" => "наступний", "Security Warning!" => "Попередження про небезпеку!", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 38e909d3f4e..b27600491df 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -117,7 +117,6 @@ "Lost your password?" => "Bạn quên mật khẩu ?", "remember" => "ghi nhớ", "Log in" => "Đăng nhập", -"You are logged out." => "Bạn đã đăng xuất.", "prev" => "Lùi lại", "next" => "Kế tiếp", "Security Warning!" => "Cảnh báo bảo mật !", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index a785a36afcc..1f6d5198703 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -106,7 +106,6 @@ "Lost your password?" => "忘记密码?", "remember" => "备忘", "Log in" => "登陆", -"You are logged out." => "你已经注销了", "prev" => "后退", "next" => "前进", "Security Warning!" => "安全警告!", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 64b108ca1dd..82e80bd000e 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -124,7 +124,6 @@ "Lost your password?" => "忘记密码?", "remember" => "记住", "Log in" => "登录", -"You are logged out." => "您已注销。", "prev" => "上一页", "next" => "下一页", "Security Warning!" => "安全警告!", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 45c7596e609..de91ba0bd83 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,14 +1,22 @@ <?php $TRANSLATIONS = array( -"No category to add?" => "無分類添加?", -"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 <strong>admin account</strong>" => "建立一個<strong>管理者帳號</strong>", "Advanced" => "進階", "Data folder" => "資料夾", @@ -96,14 +117,18 @@ "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. <br/>For security reasons you may be occasionally asked to enter your password again." => "請輸入您的密碼。<br/>基於安全性的理由,您有時候可能會被要求再次輸入密碼。", "Verify" => "驗證" ); diff --git a/core/templates/exception.php b/core/templates/exception.php index 4b951fca51b..47792225557 100644 --- a/core/templates/exception.php +++ b/core/templates/exception.php @@ -5,7 +5,7 @@ <p class="exception"> <?php if($_['showsysinfo'] == true) { - echo 'If you would like to support ownCloud\'s developers and report this error in our <a href="http://bugs.owncloud.org">Bugtracker</a>, please copy the following informations into the description. <br><br><textarea readonly>'; + echo 'If you would like to support ownCloud\'s developers and report this error in our <a href="https://github.com/owncloud/core">bug tracker</a>, please copy the following informations into the description. <br><br><textarea readonly>'; echo 'Message: ' . $_['message'] . "\n"; echo 'Error Code: ' . $_['code'] . "\n"; echo 'File: ' . $_['file'] . "\n"; diff --git a/core/templates/logout.php b/core/templates/logout.php deleted file mode 100644 index 2247ed8e70f..00000000000 --- a/core/templates/logout.php +++ /dev/null @@ -1 +0,0 @@ -<?php echo $l->t( 'You are logged out.' ); diff --git a/issue_template.md b/issue_template.md new file mode 100644 index 00000000000..f9bff71af97 --- /dev/null +++ b/issue_template.md @@ -0,0 +1,46 @@ +### Expected behaviour +Tell us what should happen + +### Actual behaviour +Tell us what happens instead + +### Steps to reproduce +1. +2. +3. + +### Server configuration +Operating system: + +Web server: + +Database: + +PHP version: + +ownCloud version: + +### Client configuration +Browser: + +Operating system: + +### Logs +#### Web server error log +``` +Insert your webserver log here +``` + +#### ownCloud log (data/owncloud.log) +``` +Insert your ownCloud log here +``` + +#### Browser log +``` +Insert your browser log here, this could for example include: + +a) The javascript console log +b) The network log +c) ... +``` diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 9400ec3432f..74243a0cff6 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,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 "{minutes} منذ دقائق" -#: 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 "" @@ -554,10 +554,6 @@ msgstr "تذكر" msgid "Log in" msgstr "أدخل" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "تم الخروج بنجاح." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "السابق" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 791afd2e704..b57cae5c403 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" @@ -65,11 +79,11 @@ msgstr "" msgid "Files" msgstr "الملفات" -#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +#: js/fileactions.js:117 templates/index.php:82 templates/index.php:83 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +#: js/fileactions.js:119 templates/index.php:88 templates/index.php:89 msgid "Delete" msgstr "محذوف" @@ -77,39 +91,39 @@ 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 "" @@ -143,7 +157,7 @@ msgstr "" msgid "Close" msgstr "إغلق" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +165,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "الاسم" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "حجم" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "معدل" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,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/ar/settings.po b/l10n/ar/settings.po index a800f4eef21..1da68062efd 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "المجموعة موجودة مسبقاً" msgid "Unable to add group" msgstr "فشل إضافة المجموعة" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "فشل عملية تفعيل التطبيق" @@ -44,14 +44,6 @@ msgstr "تم حفظ البريد الإلكتروني" msgid "Invalid email" msgstr "البريد الإلكتروني غير صالح" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "تم تغيير ال OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "طلبك غير مفهوم" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "فشل إزالة المجموعة" @@ -68,6 +60,10 @@ msgstr "فشل إزالة المستخدم" msgid "Language changed" msgstr "تم تغيير اللغة" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "طلبك غير مفهوم" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "لا يستطيع المدير إزالة حسابه من مجموعة المديرين" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 946b0984730..e00f6c9d1d3 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -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 @@ -168,7 +168,7 @@ msgstr "" #: 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." @@ -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." @@ -318,15 +318,15 @@ 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" @@ -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,36 +403,36 @@ msgstr "" #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" -msgstr "Създаване на <strong>админ профил</strong>" +msgstr "" #: templates/installation.php:50 msgid "Advanced" -msgstr "Разширено" +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 msgid "will be used" -msgstr "ще се ползва" +msgstr "" #: templates/installation.php:107 msgid "Database user" -msgstr "Потребител за базата" +msgstr "" #: templates/installation.php:111 msgid "Database password" -msgstr "Парола за базата" +msgstr "" #: templates/installation.php:115 msgid "Database name" -msgstr "Име на базата" +msgstr "" #: templates/installation.php:123 msgid "Database tablespace" @@ -440,95 +440,95 @@ msgstr "" #: templates/installation.php:129 msgid "Database host" -msgstr "Хост за базата" +msgstr "" #: 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:10 msgid "Automatic logon rejected!" @@ -546,27 +546,23 @@ msgstr "" #: templates/login.php:19 msgid "Lost your password?" -msgstr "Забравена парола?" +msgstr "" #: templates/login.php:39 msgid "remember" -msgstr "запомни" +msgstr "" #: templates/login.php:41 msgid "Log in" -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 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 0a3297bd922..14ac7f3c7b6 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 <ilivanov@gmail.com>, 2011. +# Stefan Ilivanov <ilivanov@gmail.com>, 2011,2013. # Yasen Pramatarov <yasen@lindeas.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,13 +19,27 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" -msgstr "Файлът е качен успешно" +msgstr "" #: ajax/upload.php:22 msgid "" @@ -36,23 +50,23 @@ msgstr "" msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." +msgstr "" #: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" -msgstr "Файлът е качен частично" +msgstr "" #: ajax/upload.php:27 msgid "No file was uploaded" -msgstr "Фахлът не бе качен" +msgstr "" #: ajax/upload.php:28 msgid "Missing a temporary folder" -msgstr "Липсва временната папка" +msgstr "Липсва временна папка" #: ajax/upload.php:29 msgid "Failed to write to disk" -msgstr "Грешка при запис на диска" +msgstr "" #: ajax/upload.php:45 msgid "Not enough space available" @@ -66,51 +80,51 @@ 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 "" @@ -138,13 +152,13 @@ msgstr "" #: js/files.js:224 msgid "Upload Error" -msgstr "Грешка при качване" +msgstr "" #: js/files.js:241 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +166,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." -msgstr "Качването е отменено." +msgstr "Качването е спряно." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Име" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Променено" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -211,7 +229,7 @@ msgstr "" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Макс. размер за качване" +msgstr "Максимален размер за качване" #: templates/admin.php:10 msgid "max. possible: " @@ -227,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" @@ -239,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" @@ -253,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 0db200dba5a..c5aca629edc 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 <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:51+0000\n" +"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "Encryption" -msgstr "" +msgstr "Криптиране" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" -msgstr "" +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "Включване на криптирането" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" -msgstr "" +msgstr "Няма" -#: templates/settings.php:10 -msgid "Enable Encryption" -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 d4483eadffc..656df3768cc 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 <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:47+0000\n" +"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Достъпът е даден" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" @@ -27,11 +28,11 @@ msgstr "" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Даване на достъп" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Попълнете всички задължителни полета" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." @@ -56,7 +57,7 @@ msgstr "" #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "Външно хранилище" #: templates/settings.php:8 templates/settings.php:22 msgid "Mount point" @@ -64,15 +65,15 @@ msgstr "" #: templates/settings.php:9 msgid "Backend" -msgstr "" +msgstr "Администрация" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Конфигурация" #: templates/settings.php:11 msgid "Options" -msgstr "" +msgstr "Опции" #: templates/settings.php:12 msgid "Applicable" @@ -84,11 +85,11 @@ msgstr "" #: templates/settings.php:85 msgid "None set" -msgstr "" +msgstr "Няма избрано" #: templates/settings.php:86 msgid "All Users" -msgstr "" +msgstr "Всички потребители" #: templates/settings.php:87 msgid "Groups" @@ -96,25 +97,25 @@ msgstr "Групи" #: templates/settings.php:95 msgid "Users" -msgstr "" +msgstr "Потребители" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Изтриване" #: templates/settings.php:124 msgid "Enable User External Storage" -msgstr "" +msgstr "Вкл. на поддръжка за външно потр. хранилище" #: templates/settings.php:125 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "Позволено е на потребителите да ползват тяхно лично външно хранилище" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" -msgstr "" +msgstr "SSL основни сертификати" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" -msgstr "" +msgstr "Импортиране на основен сертификат" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 3e75975fb63..0d7fe218e8c 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 <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:45+0000\n" +"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Потвърждение" -#: templates/public.php:9 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s сподели папката %s с Вас" -#: templates/public.php:11 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s сподели файла %s с Вас" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "Изтегляне" -#: templates/public.php:29 +#: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "Няма наличен преглед за" -#: templates/public.php:37 +#: 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 df3fc299453..0b1e6c05270 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 <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:49+0000\n" +"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,21 +18,21 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" msgstr "" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "История" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "Версии" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "Това действие ще изтрие всички налични архивни версии на Вашите файлове" #: templates/settings.php:3 msgid "Files Versioning" @@ -39,4 +40,4 @@ msgstr "" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Включено" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 3ba99f9b10d..516eee347ab 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 <ilivanov@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 20:43+0000\n" +"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,136 +18,136 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" -msgstr "" +msgstr "Помощ" -#: app.php:292 +#: app.php:308 msgid "Personal" -msgstr "Лично" +msgstr "Лични" -#: app.php:297 +#: app.php:313 msgid "Settings" -msgstr "" +msgstr "Настройки" -#: app.php:302 +#: app.php:318 msgid "Users" -msgstr "" +msgstr "Потребители" -#: app.php:309 +#: app.php:325 msgid "Apps" -msgstr "" +msgstr "Приложения" -#: app.php:311 +#: app.php:327 msgid "Admin" -msgstr "" +msgstr "Админ" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." -msgstr "" +msgstr "Изтеглянето като ZIP е изключено." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Файловете трябва да се изтеглят един по един." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" -msgstr "" +msgstr "Назад към файловете" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Приложението не е включено." #: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" -msgstr "Проблем с идентификацията" +msgstr "Възникна проблем с идентификацията" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Ключът е изтекъл, моля презаредете страницата" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Файлове" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Текст" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Снимки" #: template.php:103 msgid "seconds ago" -msgstr "" +msgstr "преди секунди" #: template.php:104 msgid "1 minute ago" -msgstr "" +msgstr "преди 1 минута" #: template.php:105 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "преди %d минути" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "преди 1 час" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "преди %d часа" #: template.php:108 msgid "today" -msgstr "" +msgstr "днес" #: template.php:109 msgid "yesterday" -msgstr "" +msgstr "вчера" #: template.php:110 #, php-format msgid "%d days ago" -msgstr "" +msgstr "преди %d дни" #: template.php:111 msgid "last month" -msgstr "" +msgstr "последният месец" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "преди %d месеца" #: template.php:113 msgid "last year" -msgstr "" +msgstr "последната година" #: template.php:114 msgid "years ago" -msgstr "" +msgstr "последните години" #: updater.php:75 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s е налична. Получете <a href=\"%s\">повече информация</a>" #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "е актуална" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "проверката за обновления е изключена" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Невъзможно откриване на категорията \"%s\"" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 37e75b3725c..c660334fdfc 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -32,25 +32,17 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Е-пощата е записана" +msgstr "" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Неправилна е-поща" - -#: ajax/openid.php:13 -msgid "OpenID Changed" -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" @@ -58,7 +50,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 +58,11 @@ msgstr "" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Езика е сменен" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -84,15 +80,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 +104,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 +145,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "Клиенти" +msgstr "" #: templates/personal.php:13 msgid "Download Desktop Clients" @@ -173,43 +169,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 +239,7 @@ msgstr "Групи" #: templates/users.php:32 msgid "Create" -msgstr "Ново" +msgstr "" #: templates/users.php:35 msgid "Default Storage" @@ -255,7 +251,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 7d102e98bdf..e45d6efc2fb 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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +60,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "Парола" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." @@ -180,4 +180,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Помощ" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index b77ffa970b2..05f8507380b 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 <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 69efe6f583c..4fd2a014324 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -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 <strong>admin account</strong>" -msgstr "<strong>প্রশাসক একাউন্ট</strong> তৈরি কর" +msgstr "<strong>প্রশাসক একাউন্ট</strong> তৈরী করুন" #: 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" @@ -553,10 +553,6 @@ msgstr "মনে রাখ" msgid "Log in" msgstr "প্রবেশ" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "আপনি প্রস্থান করেছেন" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "পূর্ববর্তী" @@ -568,7 +564,7 @@ msgstr "পরবর্তী" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।" #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 97f28d3ba80..33908fc14e1 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <paul_shubhra@yahoo.com>\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,136 +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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "টি একটি অননুমোদিত নাম।" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" #: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" #: js/files.js:186 msgid "generating ZIP-file, it may take some time." -msgstr "" +msgstr "ZIP- ফাইল তৈরী করা হচ্ছে, এজন্য কিছু সময় আবশ্যক।" #: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট" #: js/files.js:224 msgid "Upload Error" -msgstr "আপলোড করতে সমস্যা" +msgstr "আপলোড করতে সমস্যা " #: js/files.js:241 msgid "Close" -msgstr "" +msgstr "বন্ধ" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "মুলতুবি" #: js/files.js:280 msgid "1 file uploading" -msgstr "১ টি ফাইল আপলোড করা হচ্ছে" +msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" -msgstr "" +msgstr "{count} টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." -msgstr "আপলোড বাতিল করা হয়েছে ।" +msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" -msgstr "" +msgstr "{count} টি ফাইল স্ক্যান করা হয়েছে" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "নাম" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "আকার" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" -msgstr "" +msgstr "১টি ফোল্ডার" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" -msgstr "" +msgstr "{count} টি ফোল্ডার" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" -msgstr "" +msgstr "১টি ফাইল" -#: js/files.js:825 +#: 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" @@ -214,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" @@ -250,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 da32933e271..8c13e55a14a 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 <EMAIL@ADDRESS>\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 <paul_shubhra@yahoo.com>\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 601f3807ce2..fc11b94750f 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 <EMAIL@ADDRESS>\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 <paul_shubhra@yahoo.com>\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 69c55d62484..55a97e9d95c 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 <EMAIL@ADDRESS>\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 <paul_shubhra@yahoo.com>\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 9f543cad59e..51865f07105 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 <EMAIL@ADDRESS>\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 <paul_shubhra@yahoo.com>\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 184ae9bb05d..0c8865693c2 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 <EMAIL@ADDRESS>\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 <paul_shubhra@yahoo.com>\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 <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s এখন সুলভ। <a href=\"%s\">আরও জানুন</a>" #: updater.php:77 msgid "up to date" -msgstr "" +msgstr "সর্বশেষ" #: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "পরিবর্ধন পরীক্ষণ করা বন্ধ রাখা হয়েছে" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index de192ed72c9..34c75b953eb 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.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-03 00:04+0100\n" -"PO-Revision-Date: 2013-01-02 09:43+0000\n" -"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,65 +20,61 @@ 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 +#: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "অ্যাপ সক্রিয় করা সম্ভব হলো না" +msgstr "অ্যপটি সক্রিয় করতে সক্ষম নয়।" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "ই-মেইল সংরক্ষণ করা হয়েছে" +msgstr "ই-মেইল সংরক্ষন করা হয়েছে" #: ajax/lostpassword.php:14 msgid "Invalid email" msgstr "ই-মেইলটি সঠিক নয়" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID পরিবর্তন করা হয়েছে" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -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" msgstr "ভাষা পরিবর্তন করা হয়েছে" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +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 +82,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 +106,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 "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "<span class=\"licence\"></span>-লাইসেন্স করিয়েছেন <span class=\"author\"></span>" +msgstr "<span class=\"licence\"></span>-লাইসেন্সধারী <span class=\"author\"></span>" #: 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 +139,7 @@ msgstr "বাণিজ্যিক সাপোর্ট" #: templates/personal.php:8 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "" +msgstr "আপনি ব্যবহার করছেন <strong>%s</strong>, সুলভ <strong>%s</strong> এর মধ্যে।" #: templates/personal.php:12 msgid "Clients" @@ -155,11 +151,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 +163,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 +183,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 +195,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 +203,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 +225,27 @@ msgid "" "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "target=\"_blank\"><abbr title=\"Affero General Public " "License\">AGPL</abbr></a>." -msgstr "তৈরি করেছেন <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, যার <a href=\"https://github.com/owncloud\" target=\"_blank\">উৎস কোড</a> <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr>এর অধীনে লাইেসন্সকৃত</a>." +msgstr "তৈলী করেছেন <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud সম্প্রদায়</a>, যার <a href=\"https://github.com/owncloud\" target=\"_blank\"> উৎস কোডটি <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> এর অধীনে লাইসেন্সকৃত।" #: 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 +253,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 509354b9d66..75f4261e13f 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 <EMAIL@ADDRESS>\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 <paul_shubhra@yahoo.com>\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 3aa6ccffca6..99d191a99b1 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 <paul_shubhra@yahoo.com>, 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 <EMAIL@ADDRESS>\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 <paul_shubhra@yahoo.com>\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 c41d4cbd8b6..94ad3349ff3 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 09:01+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,55 +85,55 @@ msgstr "Error en eliminar %s dels preferits." msgid "Settings" msgstr "Arranjament" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "avui" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ahir" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "el mes passat" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "l'any passat" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anys enrere" @@ -554,10 +554,6 @@ msgstr "recorda'm" msgid "Log in" msgstr "Inici de sessió" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Heu tancat la sessió." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 45d57b363a4..159d191a912 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 09:03+0000\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 07:36+0000\n" "Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -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,39 +96,39 @@ 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}" @@ -148,7 +162,7 @@ msgstr "Error en la pujada" msgid "Close" msgstr "Tanca" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendents" @@ -156,56 +170,60 @@ msgstr "Pendents" msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:457 +#: 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:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error durant l'escaneig" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Mida" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxers" @@ -257,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/ca/settings.po b/l10n/ca/settings.po index 85b991ab12e..4d6dc883603 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -12,9 +12,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 07:40+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,7 +34,7 @@ msgstr "El grup ja existeix" msgid "Unable to add group" msgstr "No es pot afegir el grup" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "No s'ha pogut activar l'apliació" @@ -46,14 +46,6 @@ msgstr "S'ha desat el correu electrònic" msgid "Invalid email" msgstr "El correu electrònic no és vàlid" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID ha canviat" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Sol.licitud no vàlida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "No es pot eliminar el grup" @@ -70,6 +62,10 @@ msgstr "No es pot eliminar l'usuari" msgid "Language changed" msgstr "S'ha canviat l'idioma" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Sol.licitud no vàlida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Els administradors no es poden eliminar del grup admin" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 2148999dc1b..e6bfba8798c 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 06:20+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -87,55 +87,55 @@ msgstr "Chyba při odebírání %s z oblíbených." msgid "Settings" msgstr "Nastavení" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "dnes" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "včera" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "minulý mesíc" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "před měsíci" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "minulý rok" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "před lety" @@ -556,10 +556,6 @@ msgstr "zapamatovat si" msgid "Log in" msgstr "Přihlásit" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Jste odhlášeni." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "předchozí" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 6f8f77861d1..c5417ef8688 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 06:21+0000\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 <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -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" @@ -67,11 +81,11 @@ msgstr "Neplatný adresář" 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,39 +93,39 @@ 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}" @@ -145,7 +159,7 @@ msgstr "Chyba odesílání" msgid "Close" msgstr "Zavřít" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Čekající" @@ -153,56 +167,60 @@ msgstr "Čekající" msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: 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:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:457 +#: 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:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba při prohledávání" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Název" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Změněno" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 složka" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 soubor" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} soubory" @@ -254,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/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 2fd34e04214..46a8fc5c515 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ 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 20:08+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -35,7 +35,7 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nelze povolit aplikaci." @@ -47,14 +47,6 @@ msgstr "E-mail uložen" msgid "Invalid email" msgstr "Neplatný e-mail" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID změněno" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neplatný požadavek" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nelze smazat skupinu" @@ -71,6 +63,10 @@ msgstr "Nelze smazat uživatele" msgid "Language changed" msgstr "Jazyk byl změněn" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neplatný požadavek" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Správci se nemohou odebrat sami ze skupiny správců" diff --git a/l10n/da/core.po b/l10n/da/core.po index f62c370f05b..2c249dec308 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -91,55 +91,55 @@ msgstr "Fejl ved fjernelse af %s fra favoritter." msgid "Settings" msgstr "Indstillinger" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: 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} dage siden" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "sidste måned" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "måneder siden" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "sidste år" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "år siden" @@ -560,10 +560,6 @@ msgstr "husk" msgid "Log in" msgstr "Log ind" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du er nu logget ud." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/da/files.po b/l10n/da/files.po index 4e1159fc948..b2d80372d34 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +98,39 @@ 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}" @@ -150,7 +164,7 @@ msgstr "Fejl ved upload" msgid "Close" msgstr "Luk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Afventer" @@ -158,56 +172,60 @@ msgstr "Afventer" msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannet" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ændret" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -259,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/da/settings.po b/l10n/da/settings.po index 3c2c03dfdaf..314d85e2306 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2013-01-02 21:06+0000\n" -"Last-Translator: ressel <sr@ybnet.dk>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -39,7 +39,7 @@ msgstr "Gruppen findes allerede" msgid "Unable to add group" msgstr "Gruppen kan ikke oprettes" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Applikationen kunne ikke aktiveres." @@ -51,14 +51,6 @@ msgstr "Email adresse gemt" msgid "Invalid email" msgstr "Ugyldig email adresse" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID ændret" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ugyldig forespørgsel" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Gruppen kan ikke slettes" @@ -75,6 +67,10 @@ msgstr "Bruger kan ikke slettes" msgid "Language changed" msgstr "Sprog ændret" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ugyldig forespørgsel" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratorer kan ikke fjerne dem selv fra admin gruppen" diff --git a/l10n/de/core.po b/l10n/de/core.po index d4b5f08b8f2..4eecaa3b813 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -7,7 +7,7 @@ # <alex.hotz@gmail.com>, 2011. # <blobbyjj@ymail.com>, 2012. # <georg.stefan.germany@googlemail.com>, 2011. -# I Robot <owncloud-bot@tmit.eu>, 2012. +# I Robot <owncloud-bot@tmit.eu>, 2012-2013. # I Robot <thomas.mueller@tmit.eu>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. # <mail@felixmoeller.de>, 2012. @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\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" @@ -568,10 +568,6 @@ msgstr "merken" msgid "Log in" msgstr "Einloggen" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du wurdest abgemeldet." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" @@ -583,7 +579,7 @@ msgstr "Weiter" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/de/files.po b/l10n/de/files.po index c2ef3a1360d..c68bff2ed63 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -5,7 +5,7 @@ # Translators: # <admin@s-goecker.de>, 2012. # <blobbyjj@ymail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2012. +# I Robot <owncloud-bot@tmit.eu>, 2012-2013. # I Robot <thomas.mueller@tmit.eu>, 2012. # Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. @@ -13,6 +13,7 @@ # <lukas@statuscode.ch>, 2012. # <mail@felixmoeller.de>, 2012. # Marcel Kühlhorn <susefan93@gmx.de>, 2012. +# <markus.thiel@desico.de>, 2013. # Michael Krell <m4dmike.mni@gmail.com>, 2012. # <nelsonfritsch@gmail.com>, 2012. # <niko@nik-o-mat.de>, 2012. @@ -21,13 +22,14 @@ # Thomas Müller <>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. # <transifex.com@mail.simonzoellner.de>, 2013. +# <uu.kabum@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 13:32+0000\n" +"Last-Translator: thiel <markus.thiel@desico.de>\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 +37,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 "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits." + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Konnte %s nicht verschieben" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Konnte Datei nicht umbenennen" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -76,17 +92,17 @@ msgstr "Nicht genug Speicherplatz verfügbar" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "Ungültiges Verzeichnis." +msgstr "Ungültiges Verzeichnis" #: appinfo/app.php:10 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,49 +110,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' ist kein gültiger Dateiname" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Der Dateiname darf nicht leer sein" #: js/files.js:45 msgid "" @@ -160,7 +176,7 @@ msgstr "Fehler beim Upload" msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ausstehend" @@ -168,56 +184,60 @@ msgstr "Ausstehend" msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -269,36 +289,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/settings.po b/l10n/de/settings.po index 129f9393516..1616f6a893d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,8 +24,8 @@ 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 00:15+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "App konnte nicht aktiviert werden." @@ -58,14 +58,6 @@ msgstr "E-Mail Adresse gespeichert" msgid "Invalid email" msgstr "Ungültige E-Mail Adresse" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID geändert" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ungültige Anfrage" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Gruppe konnte nicht gelöscht werden" @@ -82,6 +74,10 @@ msgstr "Benutzer konnte nicht gelöscht werden" msgid "Language changed" msgstr "Sprache geändert" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ungültige Anfrage" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratoren können sich nicht selbst aus der Admin-Gruppe löschen." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 9ae1355f88a..9fea0180068 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -16,14 +16,15 @@ # <m.fresel@sysangels.com>, 2012. # <niko@nik-o-mat.de>, 2012. # Phi Lieb <>, 2012. +# <Steve_Reichert@gmx.de>, 2013. # <thomas.mueller@tmit.eu>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\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" @@ -567,10 +568,6 @@ msgstr "merken" msgid "Log in" msgstr "Einloggen" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sie wurden abgemeldet." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" @@ -582,7 +579,7 @@ msgstr "Weiter" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 2712cb099bf..ca3e44187b1 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -6,7 +6,7 @@ # <admin@s-goecker.de>, 2012. # <a.tangemann@web.de>, 2012-2013. # <blobbyjj@ymail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2012. +# I Robot <owncloud-bot@tmit.eu>, 2012-2013. # I Robot <thomas.mueller@tmit.eu>, 2012. # Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. # Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. @@ -14,10 +14,12 @@ # <lukas@statuscode.ch>, 2012. # <mail@felixmoeller.de>, 2012. # Marcel Kühlhorn <susefan93@gmx.de>, 2012. +# <markus.thiel@desico.de>, 2013. # Michael Krell <m4dmike.mni@gmail.com>, 2012. # <nelsonfritsch@gmail.com>, 2012. # <niko@nik-o-mat.de>, 2012. # Phi Lieb <>, 2012. +# <Steve_Reichert@gmx.de>, 2013. # <thomas.mueller@tmit.eu>, 2012. # Thomas Müller <>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. @@ -25,9 +27,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 13:29+0000\n" +"Last-Translator: thiel <markus.thiel@desico.de>\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 +37,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 "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Konnte %s nicht verschieben" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Konnte Datei nicht umbenennen" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -72,7 +88,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 +98,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,49 +110,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' ist kein gültiger Dateiname." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Der Dateiname darf nicht leer sein." #: js/files.js:45 msgid "" @@ -160,7 +176,7 @@ msgstr "Fehler beim Upload" msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ausstehend" @@ -168,56 +184,60 @@ msgstr "Ausstehend" msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 Datei" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} Dateien" @@ -269,36 +289,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/de_DE/settings.po b/l10n/de_DE/settings.po index 4886219fbce..98a84230b5c 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,9 +24,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 16:09+0000\n" -"Last-Translator: a.tangemann <a.tangemann@web.de>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -46,7 +46,7 @@ msgstr "Die Gruppe existiert bereits" msgid "Unable to add group" msgstr "Die Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Die Anwendung konnte nicht aktiviert werden." @@ -58,14 +58,6 @@ msgstr "E-Mail-Adresse gespeichert" msgid "Invalid email" msgstr "Ungültige E-Mail-Adresse" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID geändert" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ungültige Anfrage" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Die Gruppe konnte nicht gelöscht werden" @@ -82,6 +74,10 @@ msgstr "Der Benutzer konnte nicht gelöscht werden" msgid "Language changed" msgstr "Sprache geändert" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ungültige Anfrage" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratoren können sich nicht selbst aus der admin-Gruppe löschen" diff --git a/l10n/el/core.po b/l10n/el/core.po index 71c93b2c815..2c0853779a1 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -90,55 +90,55 @@ 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 "χρόνια πριν" @@ -559,10 +559,6 @@ msgstr "απομνημόνευση" msgid "Log in" msgstr "Είσοδος" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Έχετε αποσυνδεθεί." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "προηγούμενο" diff --git a/l10n/el/files.po b/l10n/el/files.po index 6ea3d727114..6dbee32887a 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +97,39 @@ 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}" @@ -149,7 +163,7 @@ msgstr "Σφάλμα Αποστολής" msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Εκκρεμεί" @@ -157,56 +171,60 @@ msgstr "Εκκρεμεί" msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} αρχεία ανιχνεύτηκαν" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Όνομα" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} αρχεία" @@ -258,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/el/settings.po b/l10n/el/settings.po index 83f4985217b..d20f3ef368c 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,8 +18,8 @@ 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" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,7 @@ msgstr "Η ομάδα υπάρχει ήδη" msgid "Unable to add group" msgstr "Αδυναμία προσθήκης ομάδας" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Αδυναμία ενεργοποίησης εφαρμογής " @@ -52,14 +52,6 @@ msgstr "Το email αποθηκεύτηκε " msgid "Invalid email" msgstr "Μη έγκυρο email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Το OpenID άλλαξε" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Μη έγκυρο αίτημα" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Αδυναμία διαγραφής ομάδας" @@ -76,6 +68,10 @@ msgstr "Αδυναμία διαγραφής χρήστη" msgid "Language changed" msgstr "Η γλώσσα άλλαξε" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Μη έγκυρο αίτημα" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Οι διαχειριστές δεν μπορούν να αφαιρέσουν τους εαυτούς τους από την ομάδα των διαχειριστών" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index a443f9ad911..c400f1a7d6e 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ msgstr "Eraro dum forigo de %s el favoratoj." msgid "Settings" msgstr "Agordo" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hodiaŭ" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "lastamonate" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "lastajare" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "jaroj antaŭe" @@ -555,10 +555,6 @@ msgstr "memori" msgid "Log in" msgstr "Ensaluti" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Vi estas elsalutita." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "maljena" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 9a51714012a..9989b6eb9b5 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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}" @@ -144,7 +158,7 @@ msgstr "Alŝuta eraro" msgid "Close" msgstr "Fermi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Traktotaj" @@ -152,56 +166,60 @@ msgstr "Traktotaj" msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} dosieroj alŝutatas" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} dosieroj skaniĝis" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomo" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Grando" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifita" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosierujoj" @@ -253,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/eo/settings.po b/l10n/eo/settings.po index d57fded0283..4c160cd36f5 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "La grupo jam ekzistas" msgid "Unable to add group" msgstr "Ne eblis aldoni la grupon" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Ne eblis kapabligi la aplikaĵon." @@ -43,14 +43,6 @@ msgstr "La retpoŝtadreso konserviĝis" msgid "Invalid email" msgstr "Nevalida retpoŝtadreso" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "La agordo de OpenID estas ŝanĝita" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Nevalida peto" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ne eblis forigi la grupon" @@ -67,6 +59,10 @@ msgstr "Ne eblis forigi la uzanton" msgid "Language changed" msgstr "La lingvo estas ŝanĝita" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Nevalida peto" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administrantoj ne povas forigi sin mem el la administra grupo." diff --git a/l10n/es/core.po b/l10n/es/core.po index ffe01773beb..9428f0db049 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:49+0000\n" -"Last-Translator: juanman <juanma@kde.org.ar>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -94,55 +94,55 @@ msgstr "Error eliminando %s de los favoritos." msgid "Settings" msgstr "Ajustes" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoy" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ayer" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "mes pasado" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "hace meses" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "año pasado" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "hace años" @@ -563,10 +563,6 @@ msgstr "recuérdame" msgid "Log in" msgstr "Entrar" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Has cerrado la sesión." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es/files.po b/l10n/es/files.po index 21ff8e3ba72..1275e717a26 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -8,6 +8,7 @@ # <devianpctek@gmail.com>, 2012. # Javier Llorente <javier@opensuse.org>, 2012. # <juanma@kde.org.ar>, 2012-2013. +# <karvayoEdgar@gmail.com>, 2013. # Rubén Trujillo <rubentrf@gmail.com>, 2012. # <sergioballesterossolanas@gmail.com>, 2011-2012. # <sergio@entrecables.com>, 2012. @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:50+0000\n" -"Last-Translator: juanman <juanma@kde.org.ar>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 07:26+0000\n" +"Last-Translator: karv <karvayoEdgar@gmail.com>\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 +26,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 "No se puede mover %s - Ya existe un archivo con ese nombre" + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "No se puede mover %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "No se puede renombrar el archivo" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Fallo no se subió el fichero" @@ -72,11 +87,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,39 +99,39 @@ 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" @@ -150,7 +165,7 @@ msgstr "Error al subir el archivo" msgid "Close" msgstr "cerrrar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendiente" @@ -158,56 +173,60 @@ msgstr "Pendiente" msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:457 +#: 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:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -259,36 +278,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/settings.po b/l10n/es/settings.po index be3f8676b46..d39042253ff 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -19,9 +19,9 @@ 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 00:45+0000\n" -"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -41,7 +41,7 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "No puedo habilitar la app." @@ -53,14 +53,6 @@ msgstr "Correo guardado" msgid "Invalid email" msgstr "Correo no válido" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID cambiado" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Solicitud no válida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "No se pudo eliminar el grupo" @@ -77,6 +69,10 @@ msgstr "No se pudo eliminar el usuario" msgid "Language changed" msgstr "Idioma cambiado" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Solicitud no válida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 43ae151a756..7eea07cc00b 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ msgstr "Error al remover %s de favoritos. " msgid "Settings" msgstr "Ajustes" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoy" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ayer" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "el mes pasado" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{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 "el año pasado" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "años atrás" @@ -554,10 +554,6 @@ msgstr "recordame" msgid "Log in" msgstr "Entrar" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Terminaste la sesión." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 54b39b3cc7b..d3f2c7ebc15 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\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,39 +92,39 @@ 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" @@ -144,7 +158,7 @@ msgstr "Error al subir el archivo" msgid "Close" msgstr "Cerrar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendiente" @@ -152,56 +166,60 @@ msgstr "Pendiente" msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 archivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} archivos" @@ -253,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/es_AR/settings.po b/l10n/es_AR/settings.po index 5e4d44648a9..0ebdce38b58 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.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-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 00:45+0000\n" -"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -31,7 +31,7 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No fue posible añadir el grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "No se puede habilitar la aplicación." @@ -43,14 +43,6 @@ msgstr "e-mail guardado" msgid "Invalid email" msgstr "el e-mail no es válido " -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID cambiado" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Solicitud no válida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "No fue posible eliminar el grupo" @@ -67,6 +59,10 @@ msgstr "No fue posible eliminar el usuario" msgid "Language changed" msgstr "Idioma cambiado" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Solicitud no válida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Los administradores no se pueden quitar a ellos mismos del grupo administrador. " diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 7953c94046e..929be2741d6 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Seaded" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: 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 "täna" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "eile" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "viimasel kuul" -#: 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 "kuu tagasi" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "aastat tagasi" @@ -553,10 +553,6 @@ msgstr "pea meeles" msgid "Log in" msgstr "Logi sisse" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sa oled välja loginud" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "eelm" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 0f0c412ea06..444a31d0214 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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}" @@ -144,7 +158,7 @@ msgstr "Üleslaadimise viga" msgid "Close" msgstr "Sulge" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ootel" @@ -152,56 +166,60 @@ msgstr "Ootel" msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} faili üleslaadimist" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} faili skännitud" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Suurus" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muudetud" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fail" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} faili" @@ -253,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/et_EE/settings.po b/l10n/et_EE/settings.po index 42f157b4e7c..751dc61daf4 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "Grupp on juba olemas" msgid "Unable to add group" msgstr "Keela grupi lisamine" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Rakenduse sisselülitamine ebaõnnestus." @@ -43,14 +43,6 @@ msgstr "Kiri on salvestatud" msgid "Invalid email" msgstr "Vigane e-post" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID on muudetud" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Vigane päring" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Keela grupi kustutamine" @@ -67,6 +59,10 @@ msgstr "Keela kasutaja kustutamine" msgid "Language changed" msgstr "Keel on muudetud" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Vigane päring" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 4825d0400e8..ace5f9e642e 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segundu" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "gaur" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "atzo" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "hilabete" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "joan den urtean" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "urte" @@ -555,10 +555,6 @@ msgstr "gogoratu" msgid "Log in" msgstr "Hasi saioa" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Zure saioa bukatu da." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "aurrekoa" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index ddd92ff0f3b..0cc98cedbd1 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +93,39 @@ 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}" @@ -145,7 +159,7 @@ msgstr "Igotzean errore bat suertatu da" msgid "Close" msgstr "Itxi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Zain" @@ -153,56 +167,60 @@ msgstr "Zain" msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fitxategi eskaneatuta" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Izena" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fitxategi" @@ -254,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/eu/settings.po b/l10n/eu/settings.po index cf8c43c710b..b696af989de 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Taldea dagoeneko existitzenda" msgid "Unable to add group" msgstr "Ezin izan da taldea gehitu" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Ezin izan da aplikazioa gaitu." @@ -44,14 +44,6 @@ msgstr "Eposta gorde da" msgid "Invalid email" msgstr "Baliogabeko eposta" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID aldatuta" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Baliogabeko eskaria" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ezin izan da taldea ezabatu" @@ -68,6 +60,10 @@ msgstr "Ezin izan da erabiltzailea ezabatu" msgid "Language changed" msgstr "Hizkuntza aldatuta" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Baliogabeko eskaria" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 6693df21f9e..80b891d17b2 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,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 "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 "" -#: 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 "سالهای قبل" @@ -553,10 +553,6 @@ msgstr "بیاد آوری" msgid "Log in" msgstr "ورود" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "شما خارج شدید" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "بازگشت" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 8ca4747a57a..ea5bfc082a3 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +93,39 @@ 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 "" @@ -145,7 +159,7 @@ msgstr "خطا در بار گذاری" msgid "Close" msgstr "بستن" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "در انتظار" @@ -153,56 +167,60 @@ msgstr "در انتظار" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "نام" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "اندازه" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,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/fa/settings.po b/l10n/fa/settings.po index 55f1ea97204..20aa22599b1 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -45,14 +45,6 @@ msgstr "ایمیل ذخیره شد" msgid "Invalid email" msgstr "ایمیل غیر قابل قبول" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID تغییر کرد" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "درخواست غیر قابل قبول" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -69,6 +61,10 @@ msgstr "" msgid "Language changed" msgstr "زبان تغییر کرد" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "درخواست غیر قابل قبول" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 8824e25a493..cdcdcda1522 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -5,7 +5,7 @@ # Translators: # <ari.takalo@iki.fi>, 2012. # Jesse Jaara <jesse.jaara@gmail.com>, 2012. -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012-2013. # Johannes Korpela <>, 2012. # Pekka Sutela <pekka.sutela@gmail.com>, 2012. # <tehoratopato@gmail.com>, 2012. @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-13 00:08+0100\n" +"PO-Revision-Date: 2013-01-12 16:33+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\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" @@ -27,26 +27,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Käyttäjä %s jakoi tiedoston kanssasi" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Käyttäjä %s jakoi kansion kanssasi" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %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 "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -90,55 +90,55 @@ msgstr "" msgid "Settings" msgstr "Asetukset" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "tänään" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "eilen" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "viime kuussa" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "viime vuonna" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "vuotta sitten" @@ -312,7 +312,7 @@ msgstr "Saat sähköpostitse linkin nollataksesi salasanan." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Salasanan nollausviesti lähetetty." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" @@ -559,10 +559,6 @@ msgstr "muista" msgid "Log in" msgstr "Kirjaudu sisään" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Olet kirjautunut ulos." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "edellinen" @@ -574,7 +570,7 @@ msgstr "seuraava" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index a2dbb70ba56..cf08585d92b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"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 <jiri.gronroos@iki.fi>\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" @@ -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,49 +95,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' on virheellinen nimi tiedostolle." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Tiedoston nimi ei voi olla tyhjä." #: js/files.js:45 msgid "" @@ -147,7 +161,7 @@ msgstr "Lähetysvirhe." msgid "Close" msgstr "Sulje" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Odottaa" @@ -155,56 +169,60 @@ msgstr "Odottaa" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:457 +#: 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:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Koko" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Muutettu" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tiedostoa" @@ -254,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 0b52b4e2f60..087d613c685 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -4,14 +4,14 @@ # # Translators: # Jesse Jaara <jesse.jaara@gmail.com>, 2012. -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. +# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012-2013. # <tehoratopato@gmail.com>, 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" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Ryhmä on jo olemassa" msgid "Unable to add group" msgstr "Ryhmän lisäys epäonnistui" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Sovelluksen käyttöönotto epäonnistui." @@ -44,14 +44,6 @@ msgstr "Sähköposti tallennettu" msgid "Invalid email" msgstr "Virheellinen sähköposti" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID on vaihdettu" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Virheellinen pyyntö" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ryhmän poisto epäonnistui" @@ -68,6 +60,10 @@ msgstr "Käyttäjän poisto epäonnistui" msgid "Language changed" msgstr "Kieli on vaihdettu" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Virheellinen pyyntö" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Ylläpitäjät eivät poistaa omia tunnuksiaan ylläpitäjien ryhmästä" @@ -251,7 +247,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 +263,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 0807b8ed65a..ae26555f77a 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 15:29+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -94,55 +94,55 @@ msgstr "Erreur lors de la suppression de %s des favoris." msgid "Settings" msgstr "Paramètres" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "aujourd'hui" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "hier" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "le mois dernier" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "l'année dernière" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "il y a plusieurs années" @@ -563,10 +563,6 @@ msgstr "se souvenir de moi" msgid "Log in" msgstr "Connexion" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Vous êtes désormais déconnecté." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "précédent" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 61dd57bd6f4..cd05b6ab167 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -14,14 +14,14 @@ # Nahir Mohamed <nahirmoha@gmail.com>, 2012. # Robert Di Rosa <>, 2012. # <rom1dep@gmail.com>, 2011. -# Romain DEP. <rom1dep@gmail.com>, 2012. +# Romain DEP. <rom1dep@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 15:26+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\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. <rom1dep@gmail.com>\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" @@ -76,11 +90,11 @@ msgstr "Dossier invalide." 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,39 +102,39 @@ 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}" @@ -154,7 +168,7 @@ msgstr "Erreur de chargement" msgid "Close" msgstr "Fermer" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "En cours" @@ -162,56 +176,60 @@ msgstr "En cours" msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: 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:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:457 +#: 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:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Taille" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modifié" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fichier" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fichiers" @@ -263,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 be09fe8f50a..9f3a6ceea3b 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -17,14 +17,14 @@ # <pierreamiel.giraud@gmail.com>, 2012. # Robert Di Rosa <>, 2012. # <rom1dep@gmail.com>, 2011, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. +# Romain DEP. <rom1dep@gmail.com>, 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 <dba@alternalease.fr>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -44,7 +44,7 @@ msgstr "Ce groupe existe déjà" msgid "Unable to add group" msgstr "Impossible d'ajouter le groupe" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Impossible d'activer l'Application" @@ -56,14 +56,6 @@ msgstr "E-mail sauvegardé" msgid "Invalid email" msgstr "E-mail invalide" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Identifiant OpenID changé" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Requête invalide" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Impossible de supprimer le groupe" @@ -80,6 +72,10 @@ msgstr "Impossible de supprimer l'utilisateur" msgid "Language changed" msgstr "Langue changée" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Requête invalide" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin" @@ -165,7 +161,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 4917efe0505..d99b5eb69dc 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -3,16 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau <skimpax@gmail.com>, 2013. +# <mishka.lazzlo@gmail.com>, 2013. # <nicolas@shivaserv.fr>, 2012. # Robert Di Rosa <>, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. +# Romain DEP. <rom1dep@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-28 23:13+0000\n" -"Last-Translator: ouafnico <nicolas@shivaserv.fr>\n" +"POT-Creation-Date: 2013-01-13 00:08+0100\n" +"PO-Revision-Date: 2013-01-12 17:09+0000\n" +"Last-Translator: mishka <mishka.lazzlo@gmail.com>\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,4 +31,4 @@ 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 " diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 357aa690c32..01745599b05 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -5,14 +5,14 @@ # Translators: # antiparvos <marcoslansgarza@gmail.com>, 2012. # <mbouzada@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. +# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" +"PO-Revision-Date: 2013-01-13 10:51+0000\n" +"Last-Translator: Xosé M. Lamas <correo.xmgz@gmail.com>\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" @@ -86,55 +86,55 @@ msgstr "Produciuse un erro ao eliminar %s dos favoritos." msgid "Settings" msgstr "Configuracións" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hoxe" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "onte" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "último mes" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "hai {months} meses" -#: 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 "último ano" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anos atrás" @@ -555,10 +555,6 @@ msgstr "lembrar" msgid "Log in" msgstr "Conectar" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Está desconectado" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -570,7 +566,7 @@ msgstr "seguinte" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Actualizando ownCloud a versión %s, esto pode levar un anaco." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 991b1aa060e..2387a6610f3 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -4,14 +4,14 @@ # # Translators: # antiparvos <marcoslansgarza@gmail.com>, 2012-2013. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. +# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" +"PO-Revision-Date: 2013-01-13 10:49+0000\n" +"Last-Translator: Xosé M. Lamas <correo.xmgz@gmail.com>\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" @@ -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 "Non se moveu %s - Xa existe un ficheiro con ese nome." + +#: ajax/move.php:24 +#, php-format +msgid "Could not move %s" +msgstr "Non se puido mover %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Non se pode renomear o ficheiro" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Non se subiu ningún ficheiro. Erro descoñecido." @@ -66,11 +80,11 @@ msgstr "O directorio é incorrecto." 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,49 +92,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' é un nonme de ficheiro non válido" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "O nome de ficheiro non pode estar baldeiro" #: js/files.js:45 msgid "" @@ -144,7 +158,7 @@ msgstr "Erro na subida" msgid "Close" msgstr "Pechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendentes" @@ -152,56 +166,60 @@ msgstr "Pendentes" msgid "1 file uploading" msgstr "1 ficheiro subíndose" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ficheiros subíndose" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Nome de cartafol non válido. O uso de 'Shared' está reservado por Owncloud" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros escaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -253,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/gl/settings.po b/l10n/gl/settings.po index 29fdaa8ac25..428b5f06cd5 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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: 2013-01-01 00:04+0100\n" -"PO-Revision-Date: 2012-12-31 09:02+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -32,7 +32,7 @@ msgstr "O grupo xa existe" msgid "Unable to add group" msgstr "Non é posíbel engadir o grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Non é posíbel activar o aplicativo." @@ -44,14 +44,6 @@ msgstr "Correo gardado" msgid "Invalid email" msgstr "correo incorrecto" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Cambiou o OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Petición incorrecta" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Non é posíbel eliminar o grupo." @@ -68,6 +60,10 @@ msgstr "Non é posíbel eliminar o usuario" msgid "Language changed" msgstr "O idioma cambiou" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Petición incorrecta" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Os administradores non se pode eliminar a si mesmos do grupo admin" diff --git a/l10n/he/core.po b/l10n/he/core.po index 027e2946155..a573946604b 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -4,6 +4,7 @@ # # Translators: # Dovix Dovix <dovix2003@gmail.com>, 2012. +# Gilad Naaman <gilad.doom@gmail.com>, 2013. # <ido.parag@gmail.com>, 2012. # <tomerc+transifex.net@gmail.com>, 2011. # Yaron Shahrabani <sh.yaron@gmail.com>, 2011-2012. @@ -11,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -87,55 +88,55 @@ 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 "לפני דקה אחת" -#: 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 "לפני שעה" -#: 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 "שנים" @@ -556,10 +557,6 @@ msgstr "שמירת הססמה" msgid "Log in" msgstr "כניסה" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "לא התחברת." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "הקודם" @@ -571,7 +568,7 @@ msgstr "הבא" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "מעדכן את ownCloud אל גרסא %s, זה עלול לקחת זמן מה." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5e4c82a7dc7..cbf762beda7 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +94,39 @@ 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} נמחקו" @@ -146,7 +160,7 @@ msgstr "שגיאת העלאה" msgid "Close" msgstr "סגירה" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "ממתין" @@ -154,56 +168,60 @@ msgstr "ממתין" msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} קבצים נשלחים" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} קבצים נסרקו" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "אירעה שגיאה במהלך הסריקה" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "שם" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "גודל" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} קבצים" @@ -255,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/he/settings.po b/l10n/he/settings.po index 4dd6b3fe8d4..312975f7b15 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "הקבוצה כבר קיימת" msgid "Unable to add group" msgstr "לא ניתן להוסיף קבוצה" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "לא ניתן להפעיל את היישום" @@ -45,14 +45,6 @@ msgstr "הדוא״ל נשמר" msgid "Invalid email" msgstr "דוא״ל לא חוקי" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID השתנה" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "בקשה לא חוקית" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "לא ניתן למחוק את הקבוצה" @@ -69,6 +61,10 @@ msgstr "לא ניתן למחוק את המשתמש" msgid "Language changed" msgstr "שפה השתנתה" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "בקשה לא חוקית" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "מנהלים לא יכולים להסיר את עצמם מקבוצת המנהלים" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index fb4f06d8441..72b23d85881 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Gilad Naaman <gilad.doom@gmail.com>, 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 23:11+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 10:25+0000\n" +"Last-Translator: Gilad Naaman <gilad.doom@gmail.com>\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" @@ -32,7 +33,7 @@ msgstr "" #: templates/settings.php:15 msgid "Host" -msgstr "" +msgstr "מארח" #: templates/settings.php:15 msgid "" @@ -49,7 +50,7 @@ msgstr "" #: templates/settings.php:17 msgid "User DN" -msgstr "" +msgstr "DN משתמש" #: templates/settings.php:17 msgid "" @@ -60,15 +61,15 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "סיסמא" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "לגישה אנונימית, השאר את הDM והסיסמא ריקים." #: templates/settings.php:19 msgid "User Login Filter" -msgstr "" +msgstr "סנן כניסת משתמש" #: templates/settings.php:19 #, php-format @@ -84,7 +85,7 @@ msgstr "" #: templates/settings.php:20 msgid "User List Filter" -msgstr "" +msgstr "סנן רשימת משתמשים" #: templates/settings.php:20 msgid "Defines the filter to apply, when retrieving users." @@ -96,7 +97,7 @@ msgstr "" #: templates/settings.php:21 msgid "Group Filter" -msgstr "" +msgstr "סנן קבוצה" #: templates/settings.php:21 msgid "Defines the filter to apply, when retrieving groups." @@ -166,11 +167,11 @@ msgstr "" #: 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 "" @@ -180,4 +181,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "עזרה" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 9e21f4363b7..a8ef62c1352 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,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 "" @@ -554,10 +554,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "आप लोग आउट कर दिए गए हैं." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "पिछला" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 16c322352c8..c555c20841b 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +90,39 @@ 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 "" @@ -142,7 +156,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +164,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,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/hi/settings.po b/l10n/hi/settings.po index 5bf27381000..b6697b94820 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index afe9e17a5b2..236b80b891d 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -87,55 +87,55 @@ msgstr "" msgid "Settings" msgstr "Postavke" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekundi prije" -#: 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 "danas" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "jučer" -#: 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 "prošli mjesec" -#: 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 "mjeseci" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "godina" @@ -556,10 +556,6 @@ msgstr "zapamtiti" msgid "Log in" msgstr "Prijava" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Odjavljeni ste." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodan" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f704578fce1..e69aea6cf78 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +93,39 @@ 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 "" @@ -145,7 +159,7 @@ msgstr "Pogreška pri slanju" msgid "Close" msgstr "Zatvori" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "U tijeku" @@ -153,56 +167,60 @@ msgstr "U tijeku" msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:457 +#: 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:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "grečka prilikom skeniranja" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naziv" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,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/hr/settings.po b/l10n/hr/settings.po index 530e4e42e1e..58d40e80893 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -44,14 +44,6 @@ msgstr "Email spremljen" msgid "Invalid email" msgstr "Neispravan email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID promijenjen" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neispravan zahtjev" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -68,6 +60,10 @@ msgstr "" msgid "Language changed" msgstr "Jezik promijenjen" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neispravan zahtjev" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/hu/core.po b/l10n/hu/core.po index 34ccef27dd1..e74a69fb8d0 100644 --- a/l10n/hu/core.po +++ b/l10n/hu/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\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 "" @@ -552,10 +552,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index cb4ea383437..4956069f94d 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +90,39 @@ 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 "" @@ -142,7 +156,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +164,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,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/settings.po b/l10n/hu/settings.po index 934e419f787..7234cca6386 100644 --- a/l10n/hu/settings.po +++ b/l10n/hu/settings.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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 50ba444d42d..fa290171a2f 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ msgstr "Nem sikerült a kedvencekből törölni ezt: %s" msgid "Settings" msgstr "Beállítások" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "ma" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "tegnap" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "több hónapja" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "tavaly" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "több éve" @@ -555,10 +555,6 @@ msgstr "emlékezzen" msgid "Log in" msgstr "Bejelentkezés" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Kilépett." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "előző" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 70bb805b100..bf6a28272e1 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth <adazlord@gmail.com>, 2012. +# <gyonkibendeguz@gmail.com>, 2013. # <mail@tamas-nagy.net>, 2011. # Peter Borsa <peter.borsa@gmail.com>, 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,49 +94,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' fájlnév érvénytelen." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "A fájlnév nem lehet semmi." #: js/files.js:45 msgid "" @@ -145,7 +160,7 @@ msgstr "Feltöltési hiba" msgid "Close" msgstr "Bezárás" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Folyamatban" @@ -153,56 +168,60 @@ msgstr "Folyamatban" msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: 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:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:457 +#: 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:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Hiba a fájllista-ellenőrzés során" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Név" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Méret" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Módosítva" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fájl" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fájl" @@ -254,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 b00e728cc43..95751d84966 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth <adazlord@gmail.com>, 2012. +# <gyonkibendeguz@gmail.com>, 2013. # Peter Borsa <peter.borsa@gmail.com>, 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 <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -31,7 +32,7 @@ msgstr "A csoport már létezik" msgid "Unable to add group" msgstr "A csoport nem hozható létre" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "A program nem aktiválható." @@ -43,14 +44,6 @@ msgstr "Email mentve" msgid "Invalid email" msgstr "Hibás email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID megváltozott" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Érvénytelen kérés" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "A csoport nem törölhető" @@ -67,6 +60,10 @@ msgstr "A felhasználó nem törölhető" msgid "Language changed" msgstr "A nyelv megváltozott" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Érvénytelen kérés" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Adminisztrátorok nem távolíthatják el magukat az admin csoportból." @@ -246,11 +243,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 +259,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 655c88dd46a..3e8274293c3 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: +# <gyonkibendeguz@gmail.com>, 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 <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-09 00:04+0100\n" +"PO-Revision-Date: 2013-01-08 16:35+0000\n" +"Last-Translator: gyeben <gyonkibendeguz@gmail.com>\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 29a834b73e8..1973b2c0d96 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Configurationes" -#: 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 "" @@ -553,10 +553,6 @@ msgstr "memora" msgid "Log in" msgstr "Aperir session" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Tu session ha essite claudite." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prev" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 679f4b62cb6..48fee82947c 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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 "" @@ -144,7 +158,7 @@ msgstr "" msgid "Close" msgstr "Clauder" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +166,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nomine" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimension" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificate" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,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/ia/settings.po b/l10n/ia/settings.po index 5030c5a00a3..f0ff993fa27 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -43,14 +43,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID cambiate" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Requesta invalide" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -67,6 +59,10 @@ msgstr "" msgid "Language changed" msgstr "Linguage cambiate" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Requesta invalide" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index bc8894d1f01..4ae22894b17 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -87,55 +87,55 @@ msgstr "" msgid "Settings" msgstr "Setelan" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 menit lalu" -#: 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 "hari ini" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "kemarin" -#: 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 "bulan kemarin" -#: 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 "beberapa bulan lalu" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "beberapa tahun lalu" @@ -556,10 +556,6 @@ msgstr "selalu login" msgid "Log in" msgstr "Masuk" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Anda telah keluar." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/id/files.po b/l10n/id/files.po index 7f8b49e2fe4..cd2442d53bd 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +93,39 @@ 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 "" @@ -145,7 +159,7 @@ msgstr "Terjadi Galat Pengunggahan" msgid "Close" msgstr "tutup" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Menunggu" @@ -153,56 +167,60 @@ msgstr "Menunggu" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nama" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Ukuran" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -254,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/id/lib.po b/l10n/id/lib.po index 4987faad0d4..ce05e57c124 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mohamad Hasan Al Banna <se7entime@gmail.com>, 2013. # <mr.pige_ina@yahoo.co.id>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" +"PO-Revision-Date: 2013-01-13 01:26+0000\n" +"Last-Translator: Mohamad Hasan Al Banna <se7entime@gmail.com>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,43 +19,43 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "bantu" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "perseorangan" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "pengaturan" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "pengguna" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "aplikasi" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "download ZIP sedang dimatikan" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "file harus di unduh satu persatu" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "kembali ke daftar file" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "file yang dipilih terlalu besar untuk membuat file zip" @@ -72,7 +73,7 @@ msgstr "token kadaluarsa.mohon perbaharui laman." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Berkas" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -80,7 +81,7 @@ msgstr "teks" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Gambar" #: template.php:103 msgid "seconds ago" @@ -97,12 +98,12 @@ msgstr "%d menit lalu" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "1 jam yang lalu" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d jam yang lalu" #: template.php:108 msgid "today" @@ -124,7 +125,7 @@ msgstr "bulan kemarin" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d bulan yang lalu" #: template.php:113 msgid "last year" @@ -150,4 +151,4 @@ msgstr "pengecekan pembaharuan sedang non-aktifkan" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Tidak dapat menemukan kategori \"%s\"" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 1abd347dc88..72ad4e872a7 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -45,14 +45,6 @@ msgstr "Email tersimpan" msgid "Invalid email" msgstr "Email tidak sah" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID telah dirubah" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Permintaan tidak valid" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -69,6 +61,10 @@ msgstr "" msgid "Language changed" msgstr "Bahasa telah diganti" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Permintaan tidak valid" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index ae7fa02d39f..d07f7133071 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -4,13 +4,13 @@ # # Translators: # <kaztraz@gmail.com>, 2012. -# <sveinng@gmail.com>, 2012. +# <sveinng@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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ð <strong>bæta við</strong>?" +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 "<strong>Villa</strong>" +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 <strong>lykilorð</strong>" +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" @@ -554,10 +554,6 @@ msgstr "muna eftir mér" msgid "Log in" msgstr "<strong>Skrá inn</strong>" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Þú ert útskráð(ur)." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "fyrra" @@ -569,7 +565,7 @@ msgstr "næsta" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Uppfæri ownCloud í útgáfu %s, það gæti tekið smá stund." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/is/files.po b/l10n/is/files.po index 32e2dbdcf87..f1c7c6d6dd1 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: -# <sveinng@gmail.com>, 2012. +# <sveinng@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 22:46+0000\n" +"Last-Translator: sveinn <sveinng@gmail.com>\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,49 +91,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' er ekki leyfilegt nafn." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Nafn skráar má ekki vera tómt" #: js/files.js:45 msgid "" @@ -143,7 +157,7 @@ msgstr "Villa við innsendingu" msgid "Close" msgstr "Loka" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Bíður" @@ -151,56 +165,60 @@ msgstr "Bíður" msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} skrár innsendar" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:457 +#: 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:527 -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: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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} skrár skimaðar" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "villa við skimun" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nafn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Stærð" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Breytt" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 skrá" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} skrár" @@ -252,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 5b2d7ad671a..0c0579cec5d 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <sveinng@gmail.com>, 2012. +# <sveinng@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:53+0000\n" -"Last-Translator: sveinn <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -30,7 +30,7 @@ msgstr "Hópur er þegar til" msgid "Unable to add group" msgstr "Ekki tókst að bæta við hóp" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Gat ekki virkjað forrit" @@ -42,14 +42,6 @@ msgstr "Netfang vistað" msgid "Invalid email" msgstr "Ógilt netfang" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID breytt" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ógild fyrirspurn" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ekki tókst að eyða hóp" @@ -66,6 +58,10 @@ msgstr "Ekki tókst að eyða notenda" msgid "Language changed" msgstr "Tungumáli breytt" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ógild fyrirspurn" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp" @@ -110,11 +106,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 "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-leyfi skráð af <span class=\"author\"></span>" #: templates/help.php:3 msgid "User Documentation" @@ -257,7 +253,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 e2b2ba2f565..9191a81e2d2 100644 --- a/l10n/it/core.po +++ b/l10n/it/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: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 05:14+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,55 +88,55 @@ msgstr "Errore durante la rimozione di %s dai preferiti." msgid "Settings" msgstr "Impostazioni" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "oggi" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ieri" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "mese scorso" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mesi fa" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "anno scorso" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anni fa" @@ -557,10 +557,6 @@ msgstr "ricorda" msgid "Log in" msgstr "Accedi" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sei uscito." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedente" diff --git a/l10n/it/files.po b/l10n/it/files.po index 6787dcc3044..89db9dc1bd9 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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 05:17+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 <vinx.reale@gmail.com>\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,39 +94,39 @@ 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}" @@ -146,7 +160,7 @@ msgstr "Errore di invio" msgid "Close" msgstr "Chiudi" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "In corso" @@ -154,56 +168,60 @@ msgstr "In corso" msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: 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:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:457 +#: 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:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensione" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificato" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 file" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} file" @@ -255,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/it/settings.po b/l10n/it/settings.po index 046096abda4..95df71ce194 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.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-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 07:47+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,7 +36,7 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Impossibile abilitare l'applicazione." @@ -48,14 +48,6 @@ msgstr "Email salvata" msgid "Invalid email" msgstr "Email non valida" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID modificato" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Richiesta non valida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Impossibile eliminare il gruppo" @@ -72,6 +64,10 @@ msgstr "Impossibile eliminare l'utente" msgid "Language changed" msgstr "Lingua modificata" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Richiesta non valida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Gli amministratori non possono rimuovere se stessi dal gruppo di amministrazione" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index d4c31fe92b0..5915df8dc20 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 00:41+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -86,55 +86,55 @@ 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 "年前" @@ -555,10 +555,6 @@ msgstr "パスワードを記憶する" msgid "Log in" msgstr "ログイン" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "ログアウトしました。" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "前" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 026f90dc6ac..74cabcaca6b 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 00:40+0000\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 <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\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 "ファイルは何もアップロードされていません。不明なエラー" @@ -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,39 +94,39 @@ 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}" @@ -146,7 +160,7 @@ msgstr "アップロードエラー" msgid "Close" msgstr "閉じる" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "保留" @@ -154,56 +168,60 @@ msgstr "保留" msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ファイルをアップロード中" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "スキャン中のエラー" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名前" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "サイズ" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "更新日時" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ファイル" @@ -255,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/ja_JP/settings.po b/l10n/ja_JP/settings.po index 7f6ee2171c9..69bbdf54d2d 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -11,9 +11,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 01:31+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -33,7 +33,7 @@ msgstr "グループは既に存在しています" msgid "Unable to add group" msgstr "グループを追加できません" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "アプリを有効にできませんでした。" @@ -45,14 +45,6 @@ msgstr "メールアドレスを保存しました" msgid "Invalid email" msgstr "無効なメールアドレス" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenIDが変更されました" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "無効なリクエストです" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "グループを削除できません" @@ -69,6 +61,10 @@ msgstr "ユーザを削除できません" msgid "Language changed" msgstr "言語が変更されました" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "無効なリクエストです" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "管理者は自身を管理者グループから削除できません。" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 8af6e0abca8..d1a73ee1366 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,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 "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 "" -#: 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 "{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 "" -#: 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 "წლის წინ" @@ -553,10 +553,6 @@ msgstr "დამახსოვრება" msgid "Log in" msgstr "შესვლა" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "თქვენ გამოხვედით სისტემიდან" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "წინა" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 3f8e2c3e87c..27c92e92ba5 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:05+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +91,39 @@ 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}" @@ -143,7 +157,7 @@ msgstr "შეცდომა ატვირთვისას" msgid "Close" msgstr "დახურვა" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -151,56 +165,60 @@ msgstr "მოცდის რეჟიმში" msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} ფაილი იტვირთება" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ფაილი სკანირებულია" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "შეცდომა სკანირებისას" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "სახელი" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ზომა" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ფაილი" @@ -252,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/ka_GE/settings.po b/l10n/ka_GE/settings.po index 8d92cc3af03..4fe1200ec3c 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "ჯგუფი უკვე არსებობს" msgid "Unable to add group" msgstr "ჯგუფის დამატება ვერ მოხერხდა" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "ვერ მოხერხდა აპლიკაციის ჩართვა." @@ -42,14 +42,6 @@ msgstr "იმეილი შენახულია" msgid "Invalid email" msgstr "არასწორი იმეილი" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID შეცვლილია" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "არასწორი მოთხოვნა" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "ჯგუფის წაშლა ვერ მოხერხდა" @@ -66,6 +58,10 @@ msgstr "მომხმარებლის წაშლა ვერ მოხ msgid "Language changed" msgstr "ენა შეცვლილია" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "არასწორი მოთხოვნა" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 24948c06769..b64937e17c9 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/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: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:03+0000\n" -"Last-Translator: aoiob4305 <aoiob4305@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -87,55 +87,55 @@ 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 "년 전" @@ -556,10 +556,6 @@ msgstr "기억하기" msgid "Log in" msgstr "로그인" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "로그아웃되었습니다." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "이전" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 23e43f6d39b..724bb5fd2d9 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -5,15 +5,16 @@ # Translators: # <aoiob4305@gmail.com>, 2013. # 남자사람 <cessnagi@gmail.com>, 2012. +# Harim Park <fofwisdom@gmail.com>, 2013. # <limonade83@gmail.com>, 2012. # Shinjo Park <kde@peremen.name>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:05+0000\n" -"Last-Translator: aoiob4305 <aoiob4305@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 13:42+0000\n" +"Last-Translator: Harim Park <fofwisdom@gmail.com>\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" @@ -21,6 +22,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 "%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 "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" @@ -68,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 "삭제" @@ -80,39 +95,39 @@ 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} 삭제됨" @@ -146,7 +161,7 @@ msgstr "업로드 오류" msgid "Close" msgstr "닫기" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "보류 중" @@ -154,56 +169,60 @@ msgstr "보류 중" msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "파일 {count}개 업로드 중" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "검색 중 오류 발생" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "이름" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "크기" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "수정됨" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "파일 1개" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "파일 {count}개" @@ -255,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/ko/settings.po b/l10n/ko/settings.po index 0d027d7cdfc..cf07cd95284 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -5,15 +5,16 @@ # Translators: # <aoiob4305@gmail.com>, 2013. # 남자사람 <cessnagi@gmail.com>, 2012. +# Harim Park <fofwisdom@gmail.com>, 2013. # <limonade83@gmail.com>, 2012. # Shinjo Park <kde@peremen.name>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 10:26+0000\n" -"Last-Translator: aoiob4305 <aoiob4305@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -33,7 +34,7 @@ msgstr "그룹이 이미 존재합니다." msgid "Unable to add group" msgstr "그룹을 추가할 수 없습니다." -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "앱을 활성화할 수 없습니다." @@ -45,14 +46,6 @@ msgstr "이메일 저장됨" msgid "Invalid email" msgstr "잘못된 이메일 주소" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID 변경됨" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "잘못된 요청" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "그룹을 삭제할 수 없습니다." @@ -69,6 +62,10 @@ msgstr "사용자를 삭제할 수 없습니다." msgid "Language changed" msgstr "언어가 변경되었습니다" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "잘못된 요청" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "관리자 자신을 관리자 그룹에서 삭제할 수 없습니다" @@ -141,7 +138,7 @@ msgstr "버그트래커" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "상업용 지원" #: templates/personal.php:8 #, php-format diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 1fb884c2fa4..1362878bd67 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,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 "" @@ -553,10 +553,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "پێشتر" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index bf21806a1e4..e85f7e13045 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +90,39 @@ 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 "" @@ -142,7 +156,7 @@ msgstr "" msgid "Close" msgstr "داخستن" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +164,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "ناو" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,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/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index a1dddc85d5d..75dbd11b7bc 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index e1b2e089fc8..b8f03766595 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Astellungen" -#: 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 "" @@ -553,10 +553,6 @@ msgstr "verhalen" msgid "Log in" msgstr "Log dech an" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du bass ausgeloggt." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "zeréck" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index eb374969b91..e664d38cc35 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +91,39 @@ 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 "" @@ -143,7 +157,7 @@ msgstr "Fehler beim eroplueden" msgid "Close" msgstr "Zoumaachen" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +165,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:457 +#: 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:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Numm" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Gréisst" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Geännert" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,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/lb/settings.po b/l10n/lb/settings.po index cf0f377fcb9..2bb5692c231 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -42,14 +42,6 @@ msgstr "E-mail gespäichert" msgid "Invalid email" msgstr "Ongülteg e-mail" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID huet geännert" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ongülteg Requête" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -66,6 +58,10 @@ msgstr "" msgid "Language changed" msgstr "Sprooch huet geännert" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ongülteg Requête" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index a73a86f5f43..d920fe7b476 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ msgstr "" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: 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 "šiandien" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "vakar" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "praeitą mėnesį" -#: 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 "prieš mėnesį" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "praeitais metais" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "prieš metus" @@ -554,10 +554,6 @@ msgstr "prisiminti" msgid "Log in" msgstr "Prisijungti" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Jūs atsijungėte." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "atgal" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 00d6ea26c63..0b5d2d78f5b 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +93,39 @@ 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}" @@ -145,7 +159,7 @@ msgstr "Įkėlimo klaida" msgid "Close" msgstr "Užverti" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Laukiantis" @@ -153,56 +167,60 @@ msgstr "Laukiantis" msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:457 +#: 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:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} praskanuoti failai" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dydis" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Pakeista" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 failas" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} failai" @@ -254,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/lt_LT/settings.po b/l10n/lt_LT/settings.po index 8622a3a7a26..91d9a303f5e 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nepavyksta įjungti aplikacijos." @@ -43,14 +43,6 @@ msgstr "El. paštas išsaugotas" msgid "Invalid email" msgstr "Netinkamas el. paštas" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID pakeistas" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Klaidinga užklausa" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -67,6 +59,10 @@ msgstr "" msgid "Language changed" msgstr "Kalba pakeista" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Klaidinga užklausa" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 81112f772ff..6294f8854c9 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Iestatījumi" -#: 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 "" @@ -553,10 +553,6 @@ msgstr "atcerēties" msgid "Log in" msgstr "Ielogoties" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Jūs esat veiksmīgi izlogojies." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "iepriekšējā" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 3c9ffdcae22..7b978c86d82 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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 "" @@ -144,7 +158,7 @@ msgstr "Augšuplādēšanas laikā radās kļūda" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Gaida savu kārtu" @@ -152,56 +166,60 @@ msgstr "Gaida savu kārtu" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:457 +#: 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:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nosaukums" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Izmērs" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,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/lv/settings.po b/l10n/lv/settings.po index 6bac98259c8..796d46f705e 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "Grupa jau eksistē" msgid "Unable to add group" msgstr "Nevar pievienot grupu" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nevar ieslēgt aplikāciju." @@ -43,14 +43,6 @@ msgstr "Epasts tika saglabāts" msgid "Invalid email" msgstr "Nepareizs epasts" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID nomainīts" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Nepareizs vaicājums" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nevar izdzēst grupu" @@ -67,6 +59,10 @@ msgstr "Nevar izdzēst lietotāju" msgid "Language changed" msgstr "Valoda tika nomainīta" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Nepareizs vaicājums" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 26defed1f78..dc83a622e0c 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ 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 "пред години" @@ -555,10 +555,6 @@ msgstr "запамти" msgid "Log in" msgstr "Најава" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Одјавени сте." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index d69548174d3..5c3bf733238 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +93,39 @@ 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}" @@ -145,7 +159,7 @@ msgstr "Грешка при преземање" msgid "Close" msgstr "Затвои" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Чека" @@ -153,56 +167,60 @@ msgstr "Чека" msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} датотеки се подигаат" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} датотеки скенирани" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "грешка при скенирање" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Име" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Големина" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Променето" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеки" @@ -254,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/mk/settings.po b/l10n/mk/settings.po index 0f4d756335e..4a9325a5666 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Групата веќе постои" msgid "Unable to add group" msgstr "Неможе да додадам група" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Неможе да овозможам апликација." @@ -44,14 +44,6 @@ msgstr "Електронската пошта е снимена" msgid "Invalid email" msgstr "Неисправна електронска пошта" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID сменето" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "неправилно барање" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Неможе да избришам група" @@ -68,6 +60,10 @@ msgstr "Неможам да избришам корисник" msgid "Language changed" msgstr "Јазикот е сменет" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "неправилно барање" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Администраторите неможе да се избришат себеси од админ групата" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 4d033dbb5fb..fcd9385d072 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ msgstr "" msgid "Settings" msgstr "Tetapan" -#: 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 "" @@ -555,10 +555,6 @@ msgstr "ingat" msgid "Log in" msgstr "Log masuk" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Anda telah log keluar." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index b83093920bc..5ae3ad9c1a6 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +94,39 @@ 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 "" @@ -146,7 +160,7 @@ msgstr "Muat naik ralat" msgid "Close" msgstr "Tutup" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Dalam proses" @@ -154,56 +168,60 @@ msgstr "Dalam proses" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nama " -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Saiz" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -255,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/ms_MY/settings.po b/l10n/ms_MY/settings.po index 444196b7ee8..72694ffcb9c 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -45,14 +45,6 @@ msgstr "Emel disimpan" msgid "Invalid email" msgstr "Emel tidak sah" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID diubah" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Permintaan tidak sah" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -69,6 +61,10 @@ msgstr "" msgid "Language changed" msgstr "Bahasa diubah" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Permintaan tidak sah" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index f51cf3fe9bd..ae9bd903ac4 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -90,55 +90,55 @@ msgstr "" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: 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} dager siden" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "forrige måned" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "måneder siden" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "forrige år" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "år siden" @@ -559,10 +559,6 @@ msgstr "husk" msgid "Log in" msgstr "Logg inn" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du er logget ut" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 02e048476e0..d6d18d6614c 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +99,39 @@ 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}" @@ -151,7 +165,7 @@ msgstr "Opplasting feilet" msgid "Close" msgstr "Lukk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ventende" @@ -159,56 +173,60 @@ msgstr "Ventende" msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer laster opp" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer lest inn" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "feil under skanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endret" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -260,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/nb_NO/settings.po b/l10n/nb_NO/settings.po index 36c3224748b..90871dc3820 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ 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" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "Gruppen finnes allerede" msgid "Unable to add group" msgstr "Kan ikke legge til gruppe" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Kan ikke aktivere app." @@ -49,14 +49,6 @@ msgstr "Epost lagret" msgid "Invalid email" msgstr "Ugyldig epost" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID endret" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ugyldig forespørsel" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Kan ikke slette gruppe" @@ -73,6 +65,10 @@ msgstr "Kan ikke slette bruker" msgid "Language changed" msgstr "Språk endret" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ugyldig forespørsel" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index e7b0b0ce699..e22773d2369 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 <meneer@tken.net>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -97,55 +97,55 @@ msgstr "Verwijderen %s van favorieten is mislukt." msgid "Settings" msgstr "Instellingen" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "vandaag" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "gisteren" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "vorige maand" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "vorig jaar" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "jaar geleden" @@ -566,10 +566,6 @@ msgstr "onthoud gegevens" msgid "Log in" msgstr "Meld je aan" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "U bent afgemeld." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 02a558e9550..9471312dac3 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 20:51+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" @@ -75,11 +89,11 @@ msgstr "Ongeldige directory." 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,39 +101,39 @@ 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}" @@ -153,7 +167,7 @@ msgstr "Upload Fout" msgid "Close" msgstr "Sluit" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Wachten" @@ -161,56 +175,60 @@ msgstr "Wachten" msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: 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:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Naam" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 map" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 bestand" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} bestanden" @@ -262,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 ed543c241b0..792081672ed 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -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-08 00:30+0100\n" -"PO-Revision-Date: 2013-01-07 20:48+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -40,7 +40,7 @@ msgstr "Groep bestaat al" msgid "Unable to add group" msgstr "Niet in staat om groep toe te voegen" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Kan de app. niet activeren" @@ -52,14 +52,6 @@ msgstr "E-mail bewaard" msgid "Invalid email" msgstr "Ongeldige e-mail" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID is aangepast" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ongeldig verzoek" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Niet in staat om groep te verwijderen" @@ -76,6 +68,10 @@ msgstr "Niet in staat om gebruiker te verwijderen" msgid "Language changed" msgstr "Taal aangepast" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ongeldig verzoek" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Admins kunnen zichzelf niet uit de admin groep verwijderen" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index aeb254d7386..1856fc19f75 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ msgstr "" msgid "Settings" msgstr "Innstillingar" -#: 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 "" @@ -554,10 +554,6 @@ msgstr "hugs" msgid "Log in" msgstr "Logg inn" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du er logga ut." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "førre" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 65d549c7677..28e98a9cd57 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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 "" @@ -144,7 +158,7 @@ msgstr "" msgid "Close" msgstr "Lukk" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +166,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storleik" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Endra" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,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/nn_NO/settings.po b/l10n/nn_NO/settings.po index d2de08d4a18..3eb12c318ad 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -43,14 +43,6 @@ msgstr "E-postadresse lagra" msgid "Invalid email" msgstr "Ugyldig e-postadresse" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID endra" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ugyldig førespurnad" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -67,6 +59,10 @@ msgstr "" msgid "Language changed" msgstr "Språk endra" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ugyldig førespurnad" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index cf638fc7cc4..c2aede203e5 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Configuracion" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minuta a" -#: 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 "uèi" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ièr" -#: 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 "mes passat" -#: 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 "meses a" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "an passat" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "ans a" @@ -553,10 +553,6 @@ msgstr "bremba-te" msgid "Log in" msgstr "Dintrada" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sias pas dintra (t/ada)" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "dariièr" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 64d593447d7..63681ee8348 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +91,39 @@ 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 "" @@ -143,7 +157,7 @@ msgstr "Error d'amontcargar" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Al esperar" @@ -151,56 +165,60 @@ msgstr "Al esperar" msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:457 +#: 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:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "error pendant l'exploracion" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Talha" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,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/oc/settings.po b/l10n/oc/settings.po index 36b489b83a8..df76be9ca67 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Lo grop existís ja" msgid "Unable to add group" msgstr "Pas capable d'apondre un grop" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Pòt pas activar app. " @@ -42,14 +42,6 @@ msgstr "Corrièl enregistrat" msgid "Invalid email" msgstr "Corrièl incorrècte" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID cambiat" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Demanda invalida" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Pas capable d'escafar un grop" @@ -66,6 +58,10 @@ msgstr "Pas capable d'escafar un usancièr" msgid "Language changed" msgstr "Lengas cambiadas" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Demanda invalida" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 7650db8a55d..4bcaa717c39 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012. +# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013. # Kamil Domański <kdomanski@kdemail.net>, 2011. # <koalamis0@gmail.com>, 2012. # Marcin Małecki <gerber@tkdami.net>, 2011, 2012. @@ -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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\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" @@ -562,10 +562,6 @@ msgstr "Zapamiętanie" msgid "Log in" msgstr "Zaloguj" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Wylogowano użytkownika." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "wstecz" @@ -577,7 +573,7 @@ msgstr "naprzód" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Aktualizowanie ownCloud do wersji %s, może to potrwać chwilę." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index dd91b1fa48b..64357ad8259 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012. +# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013. # Marcin Małecki <gerber@tkdami.net>, 2011-2012. # <mosslar@gmail.com>, 2011. # <mplichta@gmail.com>, 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,49 +97,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' jest nieprawidłową nazwą pliku." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Nazwa pliku nie może być pusta." #: js/files.js:45 msgid "" @@ -149,7 +163,7 @@ msgstr "Błąd wczytywania" msgid "Close" msgstr "Zamknij" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Oczekujące" @@ -157,56 +171,60 @@ msgstr "Oczekujące" msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: 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:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:457 +#: 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:527 -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:711 +#: 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:719 +#: js/files.js:735 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nazwa" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Rozmiar" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 folder" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 plik" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} pliki" @@ -258,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 50ee10108d8..8482ae800e6 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -4,7 +4,7 @@ # # Translators: # Cyryl Sochacki <>, 2012. -# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012. +# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013. # <icewind1991@gmail.com>, 2012. # Kamil Domański <kdomanski@kdemail.net>, 2011. # Marcin Małecki <gerber@tkdami.net>, 2011, 2012. @@ -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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -39,7 +39,7 @@ msgstr "Grupa już istnieje" msgid "Unable to add group" msgstr "Nie można dodać grupy" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nie można włączyć aplikacji." @@ -51,14 +51,6 @@ msgstr "Email zapisany" msgid "Invalid email" msgstr "Niepoprawny email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Zmieniono OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Nieprawidłowe żądanie" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nie można usunąć grupy" @@ -75,6 +67,10 @@ msgstr "Nie można usunąć użytkownika" msgid "Language changed" msgstr "Język zmieniony" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Nieprawidłowe żądanie" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratorzy nie mogą usunąć się sami z grupy administratorów." @@ -127,27 +123,27 @@ msgstr "<span class=\"licence\"></span>-licencjonowane przez <span class=\"autho #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Dokumentacja użytkownika" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Dokumentacja Administratora" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Dokumentacja Online" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Zgłaszanie błędów" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Wsparcie komercyjne" #: templates/personal.php:8 #, php-format @@ -160,15 +156,15 @@ msgstr "Klienci" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Pobierz klienta dla Komputera" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Pobierz klienta dla Androida" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Pobierz klienta dla iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -220,15 +216,15 @@ msgstr "Pomóż w tłumaczeniu" #: 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 "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Wersja" #: templates/personal.php:65 msgid "" @@ -254,11 +250,11 @@ msgstr "Utwórz" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Domyślny magazyn" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Bez limitu" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -270,11 +266,11 @@ msgstr "Grupa Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Magazyn" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Domyślny" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 2341f21b246..76a51798833 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "Ustawienia" -#: 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 "" @@ -552,10 +552,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 10cc6d26079..4c12f2aa8c2 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +90,39 @@ 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 "" @@ -142,7 +156,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +164,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,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/pl_PL/settings.po b/l10n/pl_PL/settings.po index 6a6ddb24fbd..5689bcb950d 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 075f189c2ca..ea81e6307e9 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -93,55 +93,55 @@ msgstr "Erro ao remover %s dos favoritos." msgid "Settings" msgstr "Configurações" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minuto atrás" -#: 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 "1 hora atrás" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{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 "último mês" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{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 "último ano" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "anos atrás" @@ -562,10 +562,6 @@ msgstr "lembrete" msgid "Log in" msgstr "Log in" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Você está desconectado." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1c9143612bb..105d7c96385 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +98,39 @@ 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" @@ -150,7 +164,7 @@ msgstr "Erro de envio" msgid "Close" msgstr "Fechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendente" @@ -158,56 +172,60 @@ msgstr "Pendente" msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} arquivos scaneados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro durante verificação" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} arquivos" @@ -259,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_BR/settings.po b/l10n/pt_BR/settings.po index 912c636340a..9d7a2512d56 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -16,8 +16,8 @@ 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" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "Grupo já existe" msgid "Unable to add group" msgstr "Não foi possivel adicionar grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Não pôde habilitar aplicação" @@ -50,14 +50,6 @@ msgstr "Email gravado" msgid "Invalid email" msgstr "Email inválido" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Mudou OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Pedido inválido" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Não foi possivel remover grupo" @@ -74,6 +66,10 @@ msgstr "Não foi possivel remover usuário" msgid "Language changed" msgstr "Mudou Idioma" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Pedido inválido" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Admins não podem se remover do grupo admin" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index b7491efa10f..ba200a60054 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: -# <daniel@mouxy.net>, 2012. +# <daniel@mouxy.net>, 2012-2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. # <helder.meneses@gmail.com>, 2011, 2012. # Helder Meneses <helder.meneses@gmail.com>, 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -558,10 +558,6 @@ msgstr "lembrar" msgid "Log in" msgstr "Entrar" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Estás desconetado." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" @@ -573,7 +569,7 @@ msgstr "seguinte" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "A Actualizar o ownCloud para a versão %s, esta operação pode demorar." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 819ff9bb9f0..74b9f45b855 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-09 23:21+0000\n" +"Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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,49 +95,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' não é um nome de ficheiro válido!" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "O nome do ficheiro não pode estar vazio." #: js/files.js:45 msgid "" @@ -147,7 +161,7 @@ msgstr "Erro no envio" msgid "Close" msgstr "Fechar" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pendente" @@ -155,56 +169,60 @@ msgstr "Pendente" msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:457 +#: 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:527 -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: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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ficheiros" @@ -256,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/pt_PT/settings.po b/l10n/pt_PT/settings.po index 5318d06fed8..3d663773c5f 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2013-01-02 14:00+0000\n" -"Last-Translator: Duarte Velez Grilo <duartegrilo@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,7 +34,7 @@ msgstr "O grupo já existe" msgid "Unable to add group" msgstr "Impossível acrescentar o grupo" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Não foi possível activar a app." @@ -46,14 +46,6 @@ msgstr "Email guardado" msgid "Invalid email" msgstr "Email inválido" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID alterado" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Pedido inválido" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Impossível apagar grupo" @@ -70,6 +62,10 @@ msgstr "Impossível apagar utilizador" msgid "Language changed" msgstr "Idioma alterado" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Pedido inválido" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Os administradores não se podem remover a eles mesmos do grupo admin." diff --git a/l10n/ro/core.po b/l10n/ro/core.po index bc3d07b17c3..509e2c92f27 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -88,55 +88,55 @@ msgstr "" msgid "Settings" msgstr "Configurări" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "astăzi" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "ieri" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "ultima lună" -#: 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 "luni în urmă" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "ultimul an" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "ani în urmă" @@ -557,10 +557,6 @@ msgstr "amintește" msgid "Log in" msgstr "Autentificare" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Ai ieșit" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedentul" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 74947c210f5..4c4093cbf4d 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -6,15 +6,15 @@ # Claudiu <claudiu@tanaselia.ro>, 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache <eugemjj@gmail.com>, 2012. -# <g.ciprian@osn.ro>, 2012. +# <g.ciprian@osn.ro>, 2012-2013. # <laur.cristescu@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 13:23+0000\n" +"Last-Translator: g.ciprian <g.ciprian@osn.ro>\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" @@ -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 "Nu s-a putut muta %s" + +#: ajax/rename.php:19 +msgid "Unable to rename file" +msgstr "Nu s-a putut redenumi fișierul" + #: ajax/upload.php:14 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" @@ -59,21 +73,21 @@ msgstr "Eroare la scriere pe disc" #: ajax/upload.php:45 msgid "Not enough space available" -msgstr "" +msgstr "Nu este suficient spațiu disponibil" #: ajax/upload.php:69 msgid "Invalid directory." -msgstr "" +msgstr "Director invalid." #: appinfo/app.php:10 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,49 +95,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' este un nume invalid de fișier." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Numele fișierului nu poate rămâne gol." #: js/files.js:45 msgid "" @@ -147,7 +161,7 @@ msgstr "Eroare la încărcare" msgid "Close" msgstr "Închide" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "În așteptare" @@ -155,56 +169,60 @@ msgstr "În așteptare" msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} fisiere incarcate" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} fisiere scanate" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Nume" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Dimensiune" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 folder" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fisier" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} fisiere" @@ -256,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/ro/settings.po b/l10n/ro/settings.po index 1d2ba8f01d2..280c113895e 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -6,15 +6,15 @@ # Claudiu <claudiu@tanaselia.ro>, 2011, 2012. # Dimon Pockemon <>, 2012. # Eugen Mihalache <eugemjj@gmail.com>, 2012. -# <g.ciprian@osn.ro>, 2012. +# <g.ciprian@osn.ro>, 2012-2013. # <icewind1991@gmail.com>, 2012. # <iuranemo@gmail.com>, 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" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Grupul există deja" msgid "Unable to add group" msgstr "Nu s-a putut adăuga grupul" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nu s-a putut activa aplicația." @@ -47,14 +47,6 @@ msgstr "E-mail salvat" msgid "Invalid email" msgstr "E-mail nevalid" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID schimbat" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Cerere eronată" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nu s-a putut șterge grupul" @@ -71,6 +63,10 @@ msgstr "Nu s-a putut șterge utilizatorul" msgid "Language changed" msgstr "Limba a fost schimbată" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Cerere eronată" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" @@ -107,7 +103,7 @@ msgstr "Adaugă aplicația ta" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "Mai multe aplicații" #: templates/apps.php:27 msgid "Select an App" @@ -123,27 +119,27 @@ msgstr "<span class=\"licence\"></span>-licențiat <span class=\"author\"></span #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "Documentație utilizator" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Documentație administrator" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Documentație online" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Urmărire bug-uri" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Suport comercial" #: templates/personal.php:8 #, php-format @@ -156,15 +152,15 @@ msgstr "Clienți" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Descarcă client desktop" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Descarcă client Android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Descarcă client iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -216,7 +212,7 @@ msgstr "Ajută la traducere" #: 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" @@ -224,7 +220,7 @@ msgstr "" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versiunea" #: templates/personal.php:65 msgid "" @@ -250,11 +246,11 @@ msgstr "Crează" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Stocare implicită" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Nelimitată" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -266,11 +262,11 @@ msgstr "Grupul Admin " #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Stocare" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Implicită" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index f6eb332d6be..00951912304 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -8,6 +8,7 @@ # <k0ldbl00d@gmail.com>, 2012. # Mihail Vasiliev <mickvav@gmail.com>, 2012. # <semen@sam002.net>, 2012. +# <sharov3@gmail.com>, 2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-13 00:08+0100\n" +"PO-Revision-Date: 2013-01-12 11:49+0000\n" +"Last-Translator: adol <sharov3@gmail.com>\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" @@ -92,55 +93,55 @@ 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 "час назад" -#: 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 "несколько лет назад" @@ -561,10 +562,6 @@ msgstr "запомнить" msgid "Log in" msgstr "Войти" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Вы вышли." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "пред" @@ -576,7 +573,7 @@ msgstr "след" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Производится обновление ownCloud до версии %s. Это может занять некоторое время." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 3edf01da676..aaa96b72d90 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,6 +9,7 @@ # <mpolr21@gmail.com>, 2012. # Nick Remeslennikov <homolibere@gmail.com>, 2012. # <semen@sam002.net>, 2012. +# <sharov3@gmail.com>, 2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-13 00:08+0100\n" +"PO-Revision-Date: 2013-01-12 11:53+0000\n" +"Last-Translator: adol <sharov3@gmail.com>\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" @@ -27,6 +28,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 "Невозможно переместить %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 "Файл не был загружен. Неизвестная ошибка" @@ -64,21 +79,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 "Удалить" @@ -86,49 +101,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' - неправильное имя файла." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Имя файла не может быть пустым." #: js/files.js:45 msgid "" @@ -152,7 +167,7 @@ msgstr "Ошибка загрузки" msgid "Close" msgstr "Закрыть" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ожидание" @@ -160,56 +175,60 @@ msgstr "Ожидание" msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} файлов загружается" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} файлов просканировано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "ошибка во время санирования" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Название" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Изменён" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлов" @@ -261,36 +280,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/settings.po b/l10n/ru/settings.po index 81feddae6f4..e3155d76a8a 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,7 +10,7 @@ # Nick Remeslennikov <homolibere@gmail.com>, 2012. # <rasperepodvipodvert@gmail.com>, 2012. # <semen@sam002.net>, 2012. -# <sharov3@gmail.com>, 2012. +# <sharov3@gmail.com>, 2012-2013. # <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-13 00:08+0100\n" +"PO-Revision-Date: 2013-01-12 11:55+0000\n" +"Last-Translator: adol <sharov3@gmail.com>\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" @@ -41,7 +41,7 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Не удалось включить приложение." @@ -53,14 +53,6 @@ msgstr "Email сохранен" msgid "Invalid email" msgstr "Неправильный Email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID изменён" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Неверный запрос" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Невозможно удалить группу" @@ -77,6 +69,10 @@ msgstr "Невозможно удалить пользователя" msgid "Language changed" msgstr "Язык изменён" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Неверный запрос" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Администратор не может удалить сам себя из группы admin" @@ -129,15 +125,15 @@ msgstr "<span class=\"licence\"></span> лицензия. Автор <span class #: 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 "Online документация" #: templates/help.php:7 msgid "Forum" @@ -145,11 +141,11 @@ 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 @@ -256,11 +252,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" @@ -272,11 +268,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/ru_RU/core.po b/l10n/ru_RU/core.po index 73807cdb096..a785898d1c2 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ 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 "{минуты} минут назад" -#: 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 "{часы} часов назад" -#: 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 "лет назад" @@ -553,10 +553,6 @@ msgstr "запомнить" msgid "Log in" msgstr "Войти" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Вы вышли из системы." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "предыдущий" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index a05762104ac..5c40bd57bd1 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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 "удалено {файлы}" @@ -144,7 +158,7 @@ msgstr "Ошибка загрузки" msgid "Close" msgstr "Закрыть" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Ожидающий решения" @@ -152,56 +166,60 @@ msgstr "Ожидающий решения" msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{количество} файлов отсканировано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "ошибка при сканировании" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Имя" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Изменен" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{количество} файлов" @@ -253,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/ru_RU/settings.po b/l10n/ru_RU/settings.po index 9d013ac07bb..bf961ac7a00 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Не удалось запустить приложение" @@ -42,14 +42,6 @@ msgstr "Email сохранен" msgid "Invalid email" msgstr "Неверный email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID изменен" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Неверный запрос" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Невозможно удалить группу" @@ -66,6 +58,10 @@ msgstr "Невозможно удалить пользователя" msgid "Language changed" msgstr "Язык изменен" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Неверный запрос" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Администраторы не могут удалить сами себя из группы администраторов" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index ec48367e164..349d4486cc4 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,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 "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 "" -#: 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 "අවුරුදු කීපයකට පෙර" @@ -555,10 +555,6 @@ msgstr "මතක තබාගන්න" msgid "Log in" msgstr "ප්රවේශවන්න" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "ඔබ නික්මී ඇත." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 226a32f5c7e..b905772406b 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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 "" @@ -144,7 +158,7 @@ msgstr "උඩුගත කිරීමේ දෝශයක්" msgid "Close" msgstr "වසන්න" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -152,56 +166,60 @@ msgstr "" msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "පරීක්ෂා කිරීමේදී දෝෂයක්" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "නම" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ප්රමාණය" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -253,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/settings.po b/l10n/si_LK/settings.po index c6443f18bff..7997041c93c 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "කණ්ඩායම දැනටමත් තිබේ" msgid "Unable to add group" msgstr "කාණඩයක් එක් කළ නොහැකි විය" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "යෙදුම සක්රීය කළ නොහැකි විය." @@ -44,14 +44,6 @@ msgstr "වි-තැපෑල සුරකින ලදී" msgid "Invalid email" msgstr "අවලංගු වි-තැපෑල" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "විවෘත හැඳුනුම නැතහොත් OpenID වෙනස්විය." - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "අවලංගු අයදුම" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "කණ්ඩායම මැකීමට නොහැක" @@ -68,6 +60,10 @@ msgstr "පරිශීලකයා මැකීමට නොහැක" msgid "Language changed" msgstr "භාෂාව ාවනස් කිරීම" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "අවලංගු අයදුම" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 18a21cd799b..7e64b445c71 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -87,55 +87,55 @@ msgstr "Chyba pri odstraňovaní %s z obľúbených položiek." msgid "Settings" msgstr "Nastavenia" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "dnes" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "včera" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "minulý rok" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "pred rokmi" @@ -556,10 +556,6 @@ msgstr "zapamätať" msgid "Log in" msgstr "Prihlásiť sa" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Ste odhlásený." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "späť" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 353efc86e43..1d4d69bb59e 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +94,39 @@ 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}" @@ -146,7 +160,7 @@ msgstr "Chyba odosielania" msgid "Close" msgstr "Zavrieť" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Čaká sa" @@ -154,56 +168,60 @@ msgstr "Čaká sa" msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: 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:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} súborov prehľadaných" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Meno" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veľkosť" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Upravené" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 súbor" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} súborov" @@ -255,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/sk_SK/settings.po b/l10n/sk_SK/settings.po index 5f886e918de..e3c919f0ad8 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Skupina už existuje" msgid "Unable to add group" msgstr "Nie je možné pridať skupinu" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Nie je možné zapnúť aplikáciu." @@ -46,14 +46,6 @@ msgstr "Email uložený" msgid "Invalid email" msgstr "Neplatný email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID zmenené" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neplatná požiadavka" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Nie je možné odstrániť skupinu" @@ -70,6 +62,10 @@ msgstr "Nie je možné odstrániť používateľa" msgid "Language changed" msgstr "Jazyk zmenený" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neplatná požiadavka" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administrátori nesmú odstrániť sami seba zo skupiny admin" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 7e3caa36f52..60b6da31073 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -87,55 +87,55 @@ msgstr "Napaka pri odstranjevanju %s iz priljubljenih." msgid "Settings" msgstr "Nastavitve" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "danes" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "včeraj" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "lansko leto" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "let nazaj" @@ -556,10 +556,6 @@ msgstr "Zapomni si me" msgid "Log in" msgstr "Prijava" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Sta odjavljeni." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "nazaj" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index f860a206607..5ed732142e8 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +94,39 @@ 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}" @@ -146,7 +160,7 @@ msgstr "Napaka med nalaganjem" msgid "Close" msgstr "Zapri" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "V čakanju ..." @@ -154,56 +168,60 @@ msgstr "V čakanju ..." msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "nalagam {count} datotek" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} files scanned" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} datotek" @@ -255,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/sl/settings.po b/l10n/sl/settings.po index 1b42ec608f7..4e336bf871a 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -11,9 +11,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: 2013-01-01 14:26+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -33,7 +33,7 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Ni mogoče dodati skupine" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Programa ni mogoče omogočiti." @@ -45,14 +45,6 @@ msgstr "Elektronski naslov je shranjen" msgid "Invalid email" msgstr "Neveljaven elektronski naslov" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID je bil spremenjen" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neveljavna zahteva" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Ni mogoče izbrisati skupine" @@ -69,6 +61,10 @@ msgstr "Ni mogoče izbrisati uporabnika" msgid "Language changed" msgstr "Jezik je bil spremenjen" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neveljavna zahteva" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratorji sebe ne morejo odstraniti iz skupine admin" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 3fb069e1e2b..0646f7fd17c 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\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 "" @@ -552,10 +552,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 630aae282ae..57c754a69e0 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +90,39 @@ 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 "" @@ -142,7 +156,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +164,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,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/sq/settings.po b/l10n/sq/settings.po index 78be3c6ba44..7d7d18a26f7 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index f934d66c739..f715cccd51c 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -86,55 +86,55 @@ 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 "Пре једног сата" -#: 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 "година раније" @@ -555,10 +555,6 @@ msgstr "упамти" msgid "Log in" msgstr "Пријава" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Одјављени сте." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претходно" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index e9bbfde5224..74593611902 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +93,39 @@ 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}" @@ -145,7 +159,7 @@ msgstr "Грешка при отпремању" msgid "Close" msgstr "Затвори" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "На чекању" @@ -153,56 +167,60 @@ msgstr "На чекању" msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "Отпремам {count} датотеке/а" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "Скенирано датотека: {count}" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "грешка при скенирању" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Назив" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Величина" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Измењено" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 датотека" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} датотеке/а" @@ -254,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/settings.po b/l10n/sr/settings.po index 0a738546bf6..dca5c1ac469 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "Група већ постоји" msgid "Unable to add group" msgstr "Не могу да додам групу" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Не могу да укључим програм" @@ -43,14 +43,6 @@ msgstr "Е-порука сачувана" msgid "Invalid email" msgstr "Неисправна е-адреса" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID је измењен" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Неисправан захтев" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Не могу да уклоним групу" @@ -67,6 +59,10 @@ msgstr "Не могу да уклоним корисника" msgid "Language changed" msgstr "Језик је промењен" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Неисправан захтев" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Управници не могу себе уклонити из админ групе" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 656f2cb83de..62f3de31a2f 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ msgstr "" msgid "Settings" msgstr "Podešavanja" -#: 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 "" @@ -553,10 +553,6 @@ msgstr "upamti" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Odjavljeni ste." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodno" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 05623f16057..81511f85a80 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +91,39 @@ 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 "" @@ -143,7 +157,7 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -151,56 +165,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -252,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/sr@latin/settings.po b/l10n/sr@latin/settings.po index 0e2ffadb98c..c11e3c37bfb 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -42,14 +42,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID je izmenjen" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Neispravan zahtev" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -66,6 +58,10 @@ msgstr "" msgid "Language changed" msgstr "Jezik je izmenjen" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Neispravan zahtev" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index ba0480c2ab7..36584ca3131 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -6,15 +6,15 @@ # Christer Eriksson <post@hc3web.com>, 2012. # Daniel Sandman <revoltism@gmail.com>, 2012. # <hakan.thn@gmail.com>, 2011. -# Magnus Höglund <magnus@linux.com>, 2012. +# Magnus Höglund <magnus@linux.com>, 2012-2013. # <magnus@linux.com>, 2012. # <revoltism@gmail.com>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -558,10 +558,6 @@ msgstr "kom ihåg" msgid "Log in" msgstr "Logga in" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Du är utloggad." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "föregående" @@ -573,7 +569,7 @@ msgstr "nästa" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Uppdaterar ownCloud till version %s, detta kan ta en stund." #: templates/verify.php:5 msgid "Security Warning!" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 8363e4c37a6..16e2e102563 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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" @@ -70,11 +84,11 @@ msgstr "Felaktig mapp." 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,49 +96,49 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' är ett ogiltigt filnamn." #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "Filnamn kan inte vara tomt." #: js/files.js:45 msgid "" @@ -148,7 +162,7 @@ msgstr "Uppladdningsfel" msgid "Close" msgstr "Stäng" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Väntar" @@ -156,56 +170,60 @@ msgstr "Väntar" msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:457 +#: 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:527 -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: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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Storlek" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Ändrad" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 fil" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} filer" @@ -257,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/sv/settings.po b/l10n/sv/settings.po index ee72c8dd291..b51b40b3425 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.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-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 07:10+0000\n" -"Last-Translator: xt00r <q@xnq.me>\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Kunde inte aktivera appen." @@ -49,14 +49,6 @@ msgstr "E-post sparad" msgid "Invalid email" msgstr "Ogiltig e-post" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID ändrat" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Ogiltig begäran" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Kan inte radera grupp" @@ -73,6 +65,10 @@ msgstr "Kan inte radera användare" msgid "Language changed" msgstr "Språk ändrades" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ogiltig begäran" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Administratörer kan inte ta bort sig själva från admingruppen" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 6558c4d5afb..f35d465eb3b 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,55 @@ 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 "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: 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 "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: 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 "வருடங்களுக்கு முன்" @@ -553,10 +553,6 @@ msgstr "ஞாபகப்படுத்துக" msgid "Log in" msgstr "புகுபதிகை" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "நீங்கள் விடுபதிகை செய்துவிட்டீர்கள்." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "முந்தைய" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 159a5621888..5c90380e9ab 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +91,39 @@ 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 "நீக்கப்பட்டது {கோப்புகள்}" @@ -143,7 +157,7 @@ msgstr "பதிவேற்றல் வழு" msgid "Close" msgstr "மூடுக" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -151,56 +165,60 @@ msgstr "நிலுவையிலுள்ள" msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "வருடும் போதான வழு" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "பெயர்" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "அளவு" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" @@ -252,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/ta_LK/settings.po b/l10n/ta_LK/settings.po index 4b6d4c45e0e..841dd03141b 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "குழு ஏற்கனவே உள்ளது" msgid "Unable to add group" msgstr "குழுவை சேர்க்க முடியாது" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "செயலியை இயலுமைப்படுத்த முடியாது" @@ -42,14 +42,6 @@ msgstr "மின்னஞ்சல் சேமிக்கப்பட்ட msgid "Invalid email" msgstr "செல்லுபடியற்ற மின்னஞ்சல்" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID மாற்றப்பட்டது" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "செல்லுபடியற்ற வேண்டுகோள்" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "குழுவை நீக்க முடியாது" @@ -66,6 +58,10 @@ msgstr "பயனாளரை நீக்க முடியாது" msgid "Language changed" msgstr "மொழி மாற்றப்பட்டது" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "செல்லுபடியற்ற வேண்டுகோள்" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e0e6d5cdd17..727f5550191 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 "" @@ -552,10 +552,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 52d1d0fcdd3..eda9e58013d 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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,39 +90,39 @@ 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 "" @@ -142,7 +156,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +164,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,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 76907a7fb04..ac850a6cf5a 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index a0359bc4ff7..44a86d09259 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 023ef632745..9fb6d948529 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index a80a2b98e32..9cbe1ef9f6e 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index d8b090078b5..729094921d8 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index c0a40761420..138b8fdffd9 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 86251355228..73eaae18c4c 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index fd9c1cef4d1..24c56c17a42 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-08 00:30+0100\n" +"POT-Creation-Date: 2013-01-14 00:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 181be943eb8..e36ae6f3983 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,55 @@ 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 "{day} วันก่อนหน้านี้" -#: 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 "ปี ที่ผ่านมา" @@ -554,10 +554,6 @@ msgstr "จำรหัสผ่าน" msgid "Log in" msgstr "เข้าสู่ระบบ" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "คุณออกจากระบบเรียบร้อยแล้ว" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ก่อนหน้า" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 2a74335e2b3..290a7cebd89 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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} ไฟล์" @@ -144,7 +158,7 @@ msgstr "เกิดข้อผิดพลาดในการอัพโห msgid "Close" msgstr "ปิด" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -152,56 +166,60 @@ msgstr "อยู่ระหว่างดำเนินการ" msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "สแกนไฟล์แล้ว {count} ไฟล์" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "ชื่อ" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "ขนาด" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} ไฟล์" @@ -253,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/th_TH/settings.po b/l10n/th_TH/settings.po index 27f4a874232..a024b5901ae 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "ไม่สามารถเปิดใช้งานแอปได้" @@ -44,14 +44,6 @@ msgstr "อีเมลถูกบันทึกแล้ว" msgid "Invalid email" msgstr "อีเมลไม่ถูกต้อง" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "เปลี่ยนชื่อบัญชี OpenID แล้ว" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "คำร้องขอไม่ถูกต้อง" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "ไม่สามารถลบกลุ่มได้" @@ -68,6 +60,10 @@ msgstr "ไม่สามารถลบผู้ใช้งานได้" msgid "Language changed" msgstr "เปลี่ยนภาษาเรียบร้อยแล้ว" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "คำร้องขอไม่ถูกต้อง" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index d8d8d152b72..0057c9b5064 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -87,55 +87,55 @@ msgstr "" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "bugün" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "dün" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "geçen ay" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "ay önce" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "geçen yıl" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "yıl önce" @@ -556,10 +556,6 @@ msgstr "hatırla" msgid "Log in" msgstr "Giriş yap" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Çıkış yaptınız." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "önceki" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index c04a2d2ebd1..641b6c26f92 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +95,39 @@ 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}" @@ -147,7 +161,7 @@ msgstr "Yükleme hatası" msgid "Close" msgstr "Kapat" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Bekliyor" @@ -155,56 +169,60 @@ msgstr "Bekliyor" msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} dosya yükleniyor" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} dosya tarandı" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "tararamada hata oluşdu" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ad" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Boyut" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 dosya" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} dosya" @@ -256,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/tr/settings.po b/l10n/tr/settings.po index cfdb8287d08..0e563c6d4f5 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Grup zaten mevcut" msgid "Unable to add group" msgstr "Gruba eklenemiyor" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Uygulama devreye alınamadı" @@ -45,14 +45,6 @@ msgstr "Eposta kaydedildi" msgid "Invalid email" msgstr "Geçersiz eposta" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID Değiştirildi" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Geçersiz istek" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Grup silinemiyor" @@ -69,6 +61,10 @@ msgstr "Kullanıcı silinemiyor" msgid "Language changed" msgstr "Dil değiştirildi" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Geçersiz istek" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index df066c2f2bb..213c9995297 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -87,55 +87,55 @@ 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 "роки тому" @@ -556,10 +556,6 @@ msgstr "запам'ятати" msgid "Log in" msgstr "Вхід" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Ви вийшли з системи." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "попередній" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index eb36e0d5bc2..12e46e92ae8 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +93,39 @@ 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}" @@ -145,7 +159,7 @@ msgstr "Помилка завантаження" msgid "Close" msgstr "Закрити" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Очікування" @@ -153,56 +167,60 @@ msgstr "Очікування" msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} файлів завантажується" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} файлів проскановано" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "помилка при скануванні" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Ім'я" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Розмір" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Змінено" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 папка" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 файл" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} файлів" @@ -254,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/uk/settings.po b/l10n/uk/settings.po index cb8ce3e8cac..372163ef68a 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Група вже існує" msgid "Unable to add group" msgstr "Не вдалося додати групу" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "Не вдалося активувати програму. " @@ -44,14 +44,6 @@ msgstr "Адресу збережено" msgid "Invalid email" msgstr "Невірна адреса" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID змінено" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Помилковий запит" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Не вдалося видалити групу" @@ -68,6 +60,10 @@ msgstr "Не вдалося видалити користувача" msgid "Language changed" msgstr "Мова змінена" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Помилковий запит" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Адміністратор не може видалити себе з групи адмінів" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 54b468ce536..b3b6244ffca 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -88,55 +88,55 @@ msgstr "Lỗi xóa %s từ mục yêu thích." msgid "Settings" msgstr "Cài đặt" -#: js/js.js:704 +#: js/js.js:711 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:705 +#: js/js.js:712 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:706 +#: js/js.js:713 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:707 +#: js/js.js:714 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:708 +#: js/js.js:715 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:709 +#: js/js.js:716 msgid "today" msgstr "hôm nay" -#: js/js.js:710 +#: js/js.js:717 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:711 +#: js/js.js:718 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:712 +#: js/js.js:719 msgid "last month" msgstr "tháng trước" -#: js/js.js:713 +#: js/js.js:720 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:714 +#: js/js.js:721 msgid "months ago" msgstr "tháng trước" -#: js/js.js:715 +#: js/js.js:722 msgid "last year" msgstr "năm trước" -#: js/js.js:716 +#: js/js.js:723 msgid "years ago" msgstr "năm trước" @@ -557,10 +557,6 @@ msgstr "ghi nhớ" msgid "Log in" msgstr "Đăng nhập" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "Bạn đã đăng xuất." - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Lùi lại" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 3fae659a1dc..972bed79676 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +94,39 @@ 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}" @@ -146,7 +160,7 @@ msgstr "Tải lên lỗi" msgid "Close" msgstr "Đóng" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Chờ" @@ -154,56 +168,60 @@ msgstr "Chờ" msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: 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:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:457 +#: 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:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} tập tin đã được quét" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "lỗi trong khi quét" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "Tên" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} tập tin" @@ -255,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/vi/settings.po b/l10n/vi/settings.po index e8689e484f1..d7c48f81a4b 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Nhóm đã tồn tại" msgid "Unable to add group" msgstr "Không thể thêm nhóm" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "không thể kích hoạt ứng dụng." @@ -47,14 +47,6 @@ msgstr "Lưu email" msgid "Invalid email" msgstr "Email không hợp lệ" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "Đổi OpenID" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "Yêu cầu không hợp lệ" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "Không thể xóa nhóm" @@ -71,6 +63,10 @@ msgstr "Không thể xóa người dùng" msgid "Language changed" msgstr "Ngôn ngữ đã được thay đổi" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Yêu cầu không hợp lệ" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 22b5d6cdfc8..237822bce71 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -85,55 +85,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 "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 "" -#: 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 "{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 "" -#: 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 "年前" @@ -554,10 +554,6 @@ msgstr "备忘" msgid "Log in" msgstr "登陆" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "你已经注销了" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "后退" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 42c58c88cbf..b066b89ba00 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +92,39 @@ 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}" @@ -144,7 +158,7 @@ msgstr "上传错误" msgid "Close" msgstr "关闭" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "Pending" @@ -152,56 +166,60 @@ msgstr "Pending" msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 个文件正在上传" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} 个文件已扫描" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "扫描出错" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名字" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -253,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.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 2c8e2cabac0..78eea9c8908 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "群组已存在" msgid "Unable to add group" msgstr "未能添加群组" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "未能启用应用" @@ -43,14 +43,6 @@ msgstr "Email 保存了" msgid "Invalid email" msgstr "非法Email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID 改变了" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "非法请求" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "未能删除群组" @@ -67,6 +59,10 @@ msgstr "未能删除用户" msgid "Language changed" msgstr "语言改变了" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "非法请求" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 8b6fa46a9a6..82cad2ce6b3 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:04+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -88,55 +88,55 @@ 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 "一分钟前" -#: 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 "年前" @@ -557,10 +557,6 @@ msgstr "记住" msgid "Log in" msgstr "登录" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "您已注销。" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一页" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 2ce09f94756..9d7a6aacba4 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +95,39 @@ 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}" @@ -147,7 +161,7 @@ msgstr "上传错误" msgid "Close" msgstr "关闭" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "操作等待中" @@ -155,56 +169,60 @@ msgstr "操作等待中" msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:527 -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:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "{count} 个文件已扫描。" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "扫描时出错" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名称" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 个文件" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 个文件" @@ -256,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_CN/settings.po b/l10n/zh_CN/settings.po index a28ef198295..8e151adfe07 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "已存在该组" msgid "Unable to add group" msgstr "无法添加组" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "无法开启App" @@ -47,14 +47,6 @@ msgstr "电子邮件已保存" msgid "Invalid email" msgstr "无效的电子邮件" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID 已修改" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "非法请求" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "无法删除组" @@ -71,6 +63,10 @@ msgstr "无法删除用户" msgid "Language changed" msgstr "语言已修改" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "非法请求" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "管理员不能将自己移出管理组。" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index c6e8fb669fd..b1e7ea8b73d 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -84,55 +84,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 "" @@ -553,10 +553,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "你已登出。" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 5c06f6af94d..56eb4f59e2b 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +90,39 @@ 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 "" @@ -142,7 +156,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +164,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,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_HK/settings.po b/l10n/zh_HK/settings.po index 0b9bc749d96..db5e3f915b9 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 5452634a4bf..4f38d77222b 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -6,12 +6,13 @@ # Donahue Chuang <soshinwu@gmail.com>, 2012. # <dw4dev@gmail.com>, 2012. # Ming Yi Wu <mingi.wu@gmail.com>, 2012. +# <nfsmwlin@gmail.com>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\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,7 +162,7 @@ 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:554 @@ -171,11 +172,11 @@ 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:594 msgid "Error while sharing" @@ -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,7 +200,7 @@ msgstr "{owner} 已經和您分享" #: js/share.js:158 msgid "Share with" -msgstr "與分享" +msgstr "與...分享" #: js/share.js:163 msgid "Share with link" @@ -216,11 +217,11 @@ 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}" @@ -276,11 +277,11 @@ msgstr "分享" #: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "密碼保護" +msgstr "受密碼保護" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "解除過期日設定失敗" #: js/share.js:566 msgid "Error setting expiration date" @@ -288,11 +289,11 @@ msgstr "錯誤的到期日設定" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "正在寄出..." #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email 已寄出" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -300,19 +301,19 @@ 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:39 #: templates/login.php:28 @@ -321,7 +322,7 @@ 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,7 +399,7 @@ 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 <strong>admin account</strong>" @@ -523,7 +524,7 @@ msgstr "十二月" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "網路服務已在你控制" +msgstr "網路服務在您控制之下" #: templates/layout.user.php:45 msgid "Log out" @@ -531,21 +532,21 @@ msgstr "登出" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "自動登入被拒!" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "請更改您的密碼以再次取得您的帳戶的控制權。" #: templates/login.php:19 msgid "Lost your password?" -msgstr "忘記密碼?" +msgstr "忘記密碼?" #: templates/login.php:39 msgid "remember" @@ -555,10 +556,6 @@ msgstr "記住" msgid "Log in" msgstr "登入" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "你已登出" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "上一頁" @@ -570,17 +567,17 @@ msgstr "下一頁" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "安全性警告!" +msgstr "安全性警告!" #: templates/verify.php:6 msgid "" "Please verify your password. <br/>For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "請輸入您的密碼。<br/>基於安全性的理由,您有時候可能會被要求再次輸入密碼。" #: templates/verify.php:16 msgid "Verify" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 5dda16d794a..bed97e748a0 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -6,14 +6,15 @@ # Donahue Chuang <soshinwu@gmail.com>, 2012. # <dw4dev@gmail.com>, 2012. # Eddy Chang <taiwanmambo@gmail.com>, 2012. +# <nfsmwlin@gmail.com>, 2013. # ywang <ywang1007@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-11 00:05+0100\n" +"PO-Revision-Date: 2013-01-10 06:24+0000\n" +"Last-Translator: pellaeon <nfsmwlin@gmail.com>\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,59 +95,59 @@ 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:31 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' 是不合法的檔名。" #: js/files.js:36 msgid "File name cannot be empty." -msgstr "" +msgstr "檔名不能為空。" #: js/files.js:45 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。" #: js/files.js:186 msgid "generating ZIP-file, it may take some time." -msgstr "產生壓縮檔, 它可能需要一段時間." +msgstr "產生 ZIP 壓縮檔,這可能需要一段時間。" #: js/files.js:224 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -146,64 +161,68 @@ msgstr "上傳發生錯誤" msgid "Close" msgstr "關閉" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" -msgstr "" +msgstr "等候中" #: js/files.js:280 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "{count} 個檔案正在上傳" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "檔案上傳中. 離開此頁面將會取消上傳." +msgstr "檔案上傳中。離開此頁面將會取消上傳。" + +#: js/files.js:537 +msgid "URL cannot be empty." +msgstr "URL 不能為空白." -#: js/files.js:527 -msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "無效的資料夾名稱. \"Shared\" 名稱已被 Owncloud 所保留使用" +#: js/files.js:543 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" -#: js/files.js:711 +#: js/files.js:727 msgid "{count} files scanned" -msgstr "" +msgstr "{count} 個檔案已掃描" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "掃描時發生錯誤" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "名稱" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "修改" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "{count} 個檔案" @@ -213,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" @@ -233,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" @@ -253,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 6168a8b0d36..36a92e308c2 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -5,6 +5,7 @@ # Translators: # Donahue Chuang <soshinwu@gmail.com>, 2012. # <dw4dev@gmail.com>, 2012. +# <nfsmwlin@gmail.com>, 2013. # <sy6614@yahoo.com.hk>, 2012. # <weiyu871@ms14.url.com.tw>, 2012. # <wu0809@msn.com>, 2012. @@ -13,8 +14,8 @@ 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" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -35,7 +36,7 @@ msgstr "群組已存在" msgid "Unable to add group" msgstr "群組增加失敗" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "未能啟動此app" @@ -47,14 +48,6 @@ msgstr "Email已儲存" msgid "Invalid email" msgstr "無效的email" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "OpenID 已變更" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "無效請求" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "群組刪除錯誤" @@ -71,6 +64,10 @@ msgstr "使用者刪除錯誤" msgid "Language changed" msgstr "語言已變更" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "無效請求" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "管理者帳號無法從管理者群組中移除" @@ -123,27 +120,27 @@ msgstr "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>" #: 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 +153,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 +213,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 +247,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 +263,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 c5466fa4b40..eff86f297c4 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: 2013-01-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\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 "" @@ -552,10 +552,6 @@ msgstr "" msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." -msgstr "" - #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index 2760f9f95af..d9c0a65c13d 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-07 00:04+0100\n" -"PO-Revision-Date: 2013-01-06 23:05+0000\n" +"POT-Creation-Date: 2013-01-10 00:04+0100\n" +"PO-Revision-Date: 2013-01-09 23:04+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: 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,39 +90,39 @@ 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 "" @@ -142,7 +156,7 @@ msgstr "" msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:374 js/files.js:404 +#: js/files.js:260 js/files.js:376 js/files.js:409 msgid "Pending" msgstr "" @@ -150,56 +164,60 @@ msgstr "" msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:337 js/files.js:352 +#: js/files.js:283 js/files.js:338 js/files.js:353 msgid "{count} files uploading" msgstr "" -#: js/files.js:355 js/files.js:388 +#: js/files.js:357 js/files.js:393 msgid "Upload cancelled." msgstr "" -#: js/files.js:457 +#: js/files.js:464 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:527 -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:711 +#: js/files.js:727 msgid "{count} files scanned" msgstr "" -#: js/files.js:719 +#: js/files.js:735 msgid "error while scanning" msgstr "" -#: js/files.js:792 templates/index.php:66 +#: js/files.js:808 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:793 templates/index.php:77 +#: js/files.js:809 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:794 templates/index.php:79 +#: js/files.js:810 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:813 +#: js/files.js:829 msgid "1 folder" msgstr "" -#: js/files.js:815 +#: js/files.js:831 msgid "{count} folders" msgstr "" -#: js/files.js:823 +#: js/files.js:839 msgid "1 file" msgstr "" -#: js/files.js:825 +#: js/files.js:841 msgid "{count} files" msgstr "" @@ -251,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/zu_ZA/settings.po b/l10n/zu_ZA/settings.po index c8c1d7fb260..723004ab1e7 100644 --- a/l10n/zu_ZA/settings.po +++ b/l10n/zu_ZA/settings.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-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" +"POT-Creation-Date: 2013-01-12 00:09+0100\n" +"PO-Revision-Date: 2013-01-11 23:09+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:12 +#: ajax/enableapp.php:11 msgid "Could not enable app. " msgstr "" @@ -41,14 +41,6 @@ msgstr "" msgid "Invalid email" msgstr "" -#: ajax/openid.php:13 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "" - #: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" @@ -65,6 +57,10 @@ msgstr "" msgid "Language changed" msgstr "" +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" msgstr "" diff --git a/lib/connector/sabre/ServiceUnavailable.php b/lib/connector/sabre/ServiceUnavailable.php new file mode 100644 index 00000000000..c1cc815c989 --- /dev/null +++ b/lib/connector/sabre/ServiceUnavailable.php @@ -0,0 +1,22 @@ +<?php +/** + * ownCloud + * + * @author Thomas Müller + * @copyright 2013 Thomas Müller <thomas.mueller@tmit.eu> + * + * @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 8df5fb9a9ad..00000000000 --- a/lib/connector/sabre/client.php +++ /dev/null @@ -1,173 +0,0 @@ -<?php - -/** - * ownCloud - * - * @author Bjoern Schiessle - * @copyright 2012 Bjoern Schiessle <schiessle@owncloud.com> - * - * 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 <http://www.gnu.org/licenses/>. - * - */ - -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 00000000000..329fa4443ad --- /dev/null +++ b/lib/connector/sabre/maintenanceplugin.php @@ -0,0 +1,56 @@ +<?php + +/** + * ownCloud + * + * @author Thomas Müller + * @copyright 2013 Thomas Müller <thomas.mueller@tmit.eu> + * + * @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 3eb0660d944..31f37458b81 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -1,4 +1,34 @@ <?php $TRANSLATIONS = array( -"Personal" => "Лично", -"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 <a href=\"%s\">more information</a>" => "%s е налична. Получете <a href=\"%s\">повече информация</a>", +"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 275d3c0f05c..cb6ff4455a9 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 <a href=\"%s\">more information</a>" => "%s এখন সুলভ। <a href=\"%s\">আরও জানুন</a>", +"up to date" => "সর্বশেষ", +"updates check is disabled" => "পরিবর্ধন পরীক্ষণ করা বন্ধ রাখা হয়েছে" ); diff --git a/lib/l10n/id.php b/lib/l10n/id.php index e31b4caf4f5..8f0e38123b6 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -12,17 +12,23 @@ "Application is not enabled" => "aplikasi tidak diaktifkan", "Authentication error" => "autentikasi bermasalah", "Token expired. Please reload page." => "token kadaluarsa.mohon perbaharui laman.", +"Files" => "Berkas", "Text" => "teks", +"Images" => "Gambar", "seconds ago" => "beberapa detik yang lalu", "1 minute ago" => "1 menit lalu", "%d minutes ago" => "%d menit lalu", +"1 hour ago" => "1 jam yang lalu", +"%d hours ago" => "%d jam yang lalu", "today" => "hari ini", "yesterday" => "kemarin", "%d days ago" => "%d hari lalu", "last month" => "bulan kemarin", +"%d months ago" => "%d bulan yang lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "%s is available. Get <a href=\"%s\">more information</a>" => "%s tersedia. dapatkan <a href=\"%s\"> info lebih lanjut</a>", "up to date" => "terbaru", -"updates check is disabled" => "pengecekan pembaharuan sedang non-aktifkan" +"updates check is disabled" => "pengecekan pembaharuan sedang non-aktifkan", +"Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" ); diff --git a/lib/public/share.php b/lib/public/share.php index d736871d244..8c0cfc16b4e 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/admin.php b/settings/admin.php index 04905391138..4d9685ab920 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -33,6 +33,16 @@ $tmpl->assign('internetconnectionworking', OC_Util::isinternetconnectionworking( $tmpl->assign('islocaleworking', OC_Util::issetlocaleworking()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); + +// Check if connected using HTTPS +if (OC_Request::serverProtocol() == 'https') { + $connectedHTTPS = true; +} else { + $connectedHTTPS = false; +} +$tmpl->assign('isConnectedViaHTTPS', $connectedHTTPS); +$tmpl->assign('enforceHTTPSEnabled', OC_Config::getValue( "forcessl", false)); + $tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes')); $tmpl->assign('allowResharing', OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes')); $tmpl->assign('sharePolicy', OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global')); diff --git a/settings/ajax/disableapp.php b/settings/ajax/disableapp.php index a39b06b9c7d..e89de928eac 100644 --- a/settings/ajax/disableapp.php +++ b/settings/ajax/disableapp.php @@ -1,7 +1,6 @@ <?php OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -OC_JSON::setContentTypeHeader(); OC_App::disable($_POST['appid']); diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php index f4d5c53adef..18202dc39e9 100644 --- a/settings/ajax/enableapp.php +++ b/settings/ajax/enableapp.php @@ -2,7 +2,6 @@ OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -OC_JSON::setContentTypeHeader(); $appid = OC_App::enable($_POST['appid']); if($appid !== false) { diff --git a/settings/ajax/openid.php b/settings/ajax/openid.php deleted file mode 100644 index 23c43c3c48e..00000000000 --- a/settings/ajax/openid.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -$l=OC_L10N::get('settings'); - -OC_JSON::checkLoggedIn(); -OCP\JSON::callCheck(); -OC_JSON::checkAppEnabled('user_openid'); - -// Get data -if( isset( $_POST['identity'] ) ) { - $identity=$_POST['identity']; - OC_Preferences::setValue(OC_User::getUser(), 'user_openid', 'identity', $identity); - OC_JSON::success(array("data" => array( "message" => $l->t("OpenID Changed") ))); -}else{ - OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") ))); -} diff --git a/settings/ajax/setsecurity.php b/settings/ajax/setsecurity.php new file mode 100644 index 00000000000..16a85aade81 --- /dev/null +++ b/settings/ajax/setsecurity.php @@ -0,0 +1,13 @@ +<?php +/** + * Copyright (c) 2013, Lukas Reschke <lukas@statuscode.ch> + * This file is licensed under the Affero General Public License version 3 or later. + * See the COPYING-README file. + */ + +OC_Util::checkAdminUser(); +OCP\JSON::callCheck(); + +OC_Config::setValue( 'forcessl', filter_var($_POST['enforceHTTPS'], FILTER_VALIDATE_BOOLEAN)); + +echo 'true';
\ No newline at end of file diff --git a/settings/js/admin.js b/settings/js/admin.js index 95b7a503c27..ab218377fb3 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -30,4 +30,8 @@ $(document).ready(function(){ } OC.AppConfig.setValue('core', $(this).attr('name'), value); }); + + $('#security').change(function(){ + $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#enforceHTTPSEnabled').val() },function(){} ); + }); }); diff --git a/settings/js/users.js b/settings/js/users.js index b0e30feb80c..fa6f058d923 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -177,9 +177,9 @@ var UserList = { } else { checkHandeler = false; } - var addGroup = function (group) { + var addGroup = function (select, group) { $('select[multiple]').each(function (index, element) { - if ($(element).find('option[value="' + group + '"]').length == 0) { + if ($(element).find('option[value="' + group + '"]').length === 0 && select.data('msid') !== $(element).data('msid')) { $(element).append('<option value="' + group + '">' + group + '</option>'); } }) @@ -193,6 +193,7 @@ var UserList = { element.multiSelect({ createCallback:addGroup, createText:label, + selectedFirst:true, checked:checked, oncheck:checkHandeler, onuncheck:checkHandeler, diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index d16e6ad10ea..20d4cced233 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -5,12 +5,11 @@ "Could not enable app. " => "فشل عملية تفعيل التطبيق", "Email saved" => "تم حفظ البريد الإلكتروني", "Invalid email" => "البريد الإلكتروني غير صالح", -"OpenID Changed" => "تم تغيير ال OpenID", -"Invalid request" => "طلبك غير مفهوم", "Unable to delete group" => "فشل إزالة المجموعة", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Unable to delete user" => "فشل إزالة المستخدم", "Language changed" => "تم تغيير اللغة", +"Invalid request" => "طلبك غير مفهوم", "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", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 89066d2baa9..853e12812ed 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,29 +1,9 @@ <?php $TRANSLATIONS = array( -"Email saved" => "Е-пощата е записана", -"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 0b7983c6c1c..bab6d9ec19c 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,46 +1,62 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না", -"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" => "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না", +"Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না ", +"Authentication error" => "অনুমোদন ঘটিত সমস্যা", +"Unable to delete user" => "ব্যবহারকারী মুছে ফেলা সম্ভব হলো না ", "Language changed" => "ভাষা পরিবর্তন করা হয়েছে", +"Invalid request" => "অনুরোধটি যথাযথ নয়", +"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", -"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-লাইসেন্স করিয়েছেন <span class=\"author\"></span>", +"See application page at apps.owncloud.com" => "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-লাইসেন্সধারী <span class=\"author\"></span>", +"User Documentation" => "ব্যবহারকারী সহায়িকা", +"Administrator Documentation" => "প্রশাসক সহায়িকা", +"Online Documentation" => "অনলাইন সহায়িকা", "Forum" => "ফোরাম", "Bugtracker" => "বাগট্র্যাকার", "Commercial Support" => "বাণিজ্যিক সাপোর্ট", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "আপনি ব্যবহার করছেন <strong>%s</strong>, সুলভ <strong>%s</strong> এর মধ্যে।", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "তৈরি করেছেন <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, যার <a href=\"https://github.com/owncloud\" target=\"_blank\">উৎস কোড</a> <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr>এর অধীনে লাইেসন্সকৃত</a>.", -"Name" => "নাম", -"Groups" => "গোষ্ঠী", -"Create" => "তৈরি কর", +"Help translate" => "অনুবাদ করতে সহায়তা করুন", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন", +"Version" => "ভার্সন", +"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "তৈলী করেছেন <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud সম্প্রদায়</a>, যার <a href=\"https://github.com/owncloud\" target=\"_blank\"> উৎস কোডটি <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> এর অধীনে লাইসেন্সকৃত।", +"Name" => "রাম", +"Groups" => "গোষ্ঠীসমূহ", +"Create" => "তৈরী কর", +"Default Storage" => "পূর্বনির্ধারিত সংরক্ষণাগার", +"Unlimited" => "অসীম", "Other" => "অন্যান্য", -"Group Admin" => "গোষ্ঠী প্রশাসন", +"Group Admin" => "গোষ্ঠী প্রশাসক", +"Storage" => "সংরক্ষণাগার", +"Default" => "পূর্বনির্ধারিত", "Delete" => "মুছে ফেল" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index cde7fd1cbf1..35952475254 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -5,12 +5,11 @@ "Could not enable app. " => "No s'ha pogut activar l'apliació", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", -"OpenID Changed" => "OpenID ha canviat", -"Invalid request" => "Sol.licitud no vàlida", "Unable to delete group" => "No es pot eliminar el grup", "Authentication error" => "Error d'autenticació", "Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", +"Invalid request" => "Sol.licitud no vàlida", "Admins can't remove themself from the admin group" => "Els administradors no es poden eliminar del grup admin", "Unable to add user to group %s" => "No es pot afegir l'usuari al grup %s", "Unable to remove user from group %s" => "No es pot eliminar l'usuari del grup %s", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index d86376d5672..d20861764a9 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nelze povolit aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", -"OpenID Changed" => "OpenID změněno", -"Invalid request" => "Neplatný požadavek", "Unable to delete group" => "Nelze smazat skupinu", "Authentication error" => "Chyba ověření", "Unable to delete user" => "Nelze smazat uživatele", "Language changed" => "Jazyk byl změněn", +"Invalid request" => "Neplatný požadavek", "Admins can't remove themself from the admin group" => "Správci se nemohou odebrat sami ze skupiny správců", "Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", "Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 7800bcfb6c4..021d7f814bb 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Applikationen kunne ikke aktiveres.", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", -"OpenID Changed" => "OpenID ændret", -"Invalid request" => "Ugyldig forespørgsel", "Unable to delete group" => "Gruppen kan ikke slettes", "Authentication error" => "Adgangsfejl", "Unable to delete user" => "Bruger kan ikke slettes", "Language changed" => "Sprog ændret", +"Invalid request" => "Ugyldig forespørgsel", "Admins can't remove themself from the admin group" => "Administratorer kan ikke fjerne dem selv fra admin gruppen", "Unable to add user to group %s" => "Brugeren kan ikke tilføjes til gruppen %s", "Unable to remove user from group %s" => "Brugeren kan ikke fjernes fra gruppen %s", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 6434d23a5ba..3bb53f99b2e 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -5,12 +5,11 @@ "Could not enable app. " => "App konnte nicht aktiviert werden.", "Email saved" => "E-Mail Adresse gespeichert", "Invalid email" => "Ungültige E-Mail Adresse", -"OpenID Changed" => "OpenID geändert", -"Invalid request" => "Ungültige Anfrage", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", "Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", +"Invalid request" => "Ungültige Anfrage", "Admins can't remove themself from the admin group" => "Administratoren können sich nicht selbst aus der Admin-Gruppe löschen.", "Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", "Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 10914350d74..dd129fc59eb 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", -"OpenID Changed" => "OpenID geändert", -"Invalid request" => "Ungültige Anfrage", "Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", "Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Der Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", +"Invalid request" => "Ungültige Anfrage", "Admins can't remove themself from the admin group" => "Administratoren können sich nicht selbst aus der admin-Gruppe löschen", "Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", "Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 1ecd2e269ff..29863389048 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", "Email saved" => "Το email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", -"OpenID Changed" => "Το OpenID άλλαξε", -"Invalid request" => "Μη έγκυρο αίτημα", "Unable to delete group" => "Αδυναμία διαγραφής ομάδας", "Authentication error" => "Σφάλμα πιστοποίησης", "Unable to delete user" => "Αδυναμία διαγραφής χρήστη", "Language changed" => "Η γλώσσα άλλαξε", +"Invalid request" => "Μη έγκυρο αίτημα", "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", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 4f8d58b1bb7..651403be68c 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Ne eblis kapabligi la aplikaĵon.", "Email saved" => "La retpoŝtadreso konserviĝis", "Invalid email" => "Nevalida retpoŝtadreso", -"OpenID Changed" => "La agordo de OpenID estas ŝanĝita", -"Invalid request" => "Nevalida peto", "Unable to delete group" => "Ne eblis forigi la grupon", "Authentication error" => "Aŭtentiga eraro", "Unable to delete user" => "Ne eblis forigi la uzanton", "Language changed" => "La lingvo estas ŝanĝita", +"Invalid request" => "Nevalida peto", "Admins can't remove themself from the admin group" => "Administrantoj ne povas forigi sin mem el la administra grupo.", "Unable to add user to group %s" => "Ne eblis aldoni la uzanton al la grupo %s", "Unable to remove user from group %s" => "Ne eblis forigi la uzantan el la grupo %s", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index bd7d2866601..5434da7f981 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -5,12 +5,11 @@ "Could not enable app. " => "No puedo habilitar la app.", "Email saved" => "Correo guardado", "Invalid email" => "Correo no válido", -"OpenID Changed" => "OpenID cambiado", -"Invalid request" => "Solicitud no válida", "Unable to delete group" => "No se pudo eliminar el grupo", "Authentication error" => "Error de autenticación", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", +"Invalid request" => "Solicitud no válida", "Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", "Unable to add user to group %s" => "Imposible añadir el usuario al grupo %s", "Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 03f6c5593d4..a652ee13103 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -5,12 +5,11 @@ "Could not enable app. " => "No se puede habilitar la aplicación.", "Email saved" => "e-mail guardado", "Invalid email" => "el e-mail no es válido ", -"OpenID Changed" => "OpenID cambiado", -"Invalid request" => "Solicitud no válida", "Unable to delete group" => "No fue posible eliminar el grupo", "Authentication error" => "Error al autenticar", "Unable to delete user" => "No fue posible eliminar el usuario", "Language changed" => "Idioma cambiado", +"Invalid request" => "Solicitud no válida", "Admins can't remove themself from the admin group" => "Los administradores no se pueden quitar a ellos mismos del grupo administrador. ", "Unable to add user to group %s" => "No fue posible añadir el usuario al grupo %s", "Unable to remove user from group %s" => "No es posible eliminar al usuario del grupo %s", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index fdf9e35dfe2..53f61717282 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", -"OpenID Changed" => "OpenID on muudetud", -"Invalid request" => "Vigane päring", "Unable to delete group" => "Keela grupi kustutamine", "Authentication error" => "Autentimise viga", "Unable to delete user" => "Keela kasutaja kustutamine", "Language changed" => "Keel on muudetud", +"Invalid request" => "Vigane päring", "Unable to add user to group %s" => "Kasutajat ei saa lisada gruppi %s", "Unable to remove user from group %s" => "Kasutajat ei saa eemaldada grupist %s", "Disable" => "Lülita välja", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index bcf80da33c1..78e3cc62488 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Ezin izan da aplikazioa gaitu.", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", -"OpenID Changed" => "OpenID aldatuta", -"Invalid request" => "Baliogabeko eskaria", "Unable to delete group" => "Ezin izan da taldea ezabatu", "Authentication error" => "Autentifikazio errorea", "Unable to delete user" => "Ezin izan da erabiltzailea ezabatu", "Language changed" => "Hizkuntza aldatuta", +"Invalid request" => "Baliogabeko eskaria", "Admins can't remove themself from the admin group" => "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik", "Unable to add user to group %s" => "Ezin izan da erabiltzailea %s taldera gehitu", "Unable to remove user from group %s" => "Ezin izan da erabiltzailea %s taldetik ezabatu", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 293a50ff291..44872e28f05 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -2,10 +2,9 @@ "Unable to load list from App Store" => "قادر به بارگذاری لیست از فروشگاه اپ نیستم", "Email saved" => "ایمیل ذخیره شد", "Invalid email" => "ایمیل غیر قابل قبول", -"OpenID Changed" => "OpenID تغییر کرد", -"Invalid request" => "درخواست غیر قابل قبول", "Authentication error" => "خطا در اعتبار سنجی", "Language changed" => "زبان تغییر کرد", +"Invalid request" => "درخواست غیر قابل قبول", "Disable" => "غیرفعال", "Enable" => "فعال", "Saving..." => "درحال ذخیره ...", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 5700f86036f..dbab88b97a0 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", -"OpenID Changed" => "OpenID on vaihdettu", -"Invalid request" => "Virheellinen pyyntö", "Unable to delete group" => "Ryhmän poisto epäonnistui", "Authentication error" => "Todennusvirhe", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", +"Invalid request" => "Virheellinen pyyntö", "Admins can't remove themself from the admin group" => "Ylläpitäjät eivät poistaa omia tunnuksiaan ylläpitäjien ryhmästä", "Unable to add user to group %s" => "Käyttäjän tai ryhmän %s lisääminen ei onnistu", "Unable to remove user from group %s" => "Käyttäjän poistaminen ryhmästä %s ei onnistu", @@ -53,7 +52,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 a8367ef458d..03a61c69cf8 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Impossible d'activer l'Application", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", -"OpenID Changed" => "Identifiant OpenID changé", -"Invalid request" => "Requête invalide", "Unable to delete group" => "Impossible de supprimer le groupe", "Authentication error" => "Erreur d'authentification", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", +"Invalid request" => "Requête invalide", "Admins can't remove themself from the admin group" => "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin", "Unable to add user to group %s" => "Impossible d'ajouter l'utilisateur au groupe %s", "Unable to remove user from group %s" => "Impossible de supprimer l'utilisateur du groupe %s", @@ -31,7 +30,7 @@ "Commercial Support" => "Support commercial", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Vous avez utilisé <strong>%s</strong> des <strong>%s<strong> 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/gl.php b/settings/l10n/gl.php index 13088d0d8b2..ddd5661fe72 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Non é posíbel activar o aplicativo.", "Email saved" => "Correo gardado", "Invalid email" => "correo incorrecto", -"OpenID Changed" => "Cambiou o OpenID", -"Invalid request" => "Petición incorrecta", "Unable to delete group" => "Non é posíbel eliminar o grupo.", "Authentication error" => "Produciuse un erro de autenticación", "Unable to delete user" => "Non é posíbel eliminar o usuario", "Language changed" => "O idioma cambiou", +"Invalid request" => "Petición incorrecta", "Admins can't remove themself from the admin group" => "Os administradores non se pode eliminar a si mesmos do grupo admin", "Unable to add user to group %s" => "Non é posíbel engadir o usuario ao grupo %s", "Unable to remove user from group %s" => "Non é posíbel eliminar o usuario do grupo %s", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 1d7a91ee523..bbfe437ba30 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -5,12 +5,11 @@ "Could not enable app. " => "לא ניתן להפעיל את היישום", "Email saved" => "הדוא״ל נשמר", "Invalid email" => "דוא״ל לא חוקי", -"OpenID Changed" => "OpenID השתנה", -"Invalid request" => "בקשה לא חוקית", "Unable to delete group" => "לא ניתן למחוק את הקבוצה", "Authentication error" => "שגיאת הזדהות", "Unable to delete user" => "לא ניתן למחוק את המשתמש", "Language changed" => "שפה השתנתה", +"Invalid request" => "בקשה לא חוקית", "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", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index b6f7133f13f..14053cb98a4 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -2,10 +2,9 @@ "Unable to load list from App Store" => "Nemogićnost učitavanja liste sa Apps Stora", "Email saved" => "Email spremljen", "Invalid email" => "Neispravan email", -"OpenID Changed" => "OpenID promijenjen", -"Invalid request" => "Neispravan zahtjev", "Authentication error" => "Greška kod autorizacije", "Language changed" => "Jezik promijenjen", +"Invalid request" => "Neispravan zahtjev", "Disable" => "Isključi", "Enable" => "Uključi", "Saving..." => "Spremanje...", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 5fdc11e44f9..35c59bdb2d6 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -5,12 +5,11 @@ "Could not enable app. " => "A program nem aktiválható.", "Email saved" => "Email mentve", "Invalid email" => "Hibás email", -"OpenID Changed" => "OpenID megváltozott", -"Invalid request" => "Érvénytelen kérés", "Unable to delete group" => "A csoport nem törölhető", "Authentication error" => "Azonosítási hiba", "Unable to delete user" => "A felhasználó nem törölhető", "Language changed" => "A nyelv megváltozott", +"Invalid request" => "Érvénytelen kérés", "Admins can't remove themself from the admin group" => "Adminisztrátorok nem távolíthatják el magukat az admin csoportból.", "Unable to add user to group %s" => "A felhasználó nem adható hozzá ehhez a csoporthoz: %s", "Unable to remove user from group %s" => "A felhasználó nem távolítható el ebből a csoportból: %s", @@ -53,7 +52,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/ia.php b/settings/l10n/ia.php index d5057275d2b..18428709098 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -1,7 +1,6 @@ <?php $TRANSLATIONS = array( -"OpenID Changed" => "OpenID cambiate", -"Invalid request" => "Requesta invalide", "Language changed" => "Linguage cambiate", +"Invalid request" => "Requesta invalide", "__language_name__" => "Interlingua", "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 575b0a233dd..132920a7a04 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,10 +1,9 @@ <?php $TRANSLATIONS = array( "Email saved" => "Email tersimpan", "Invalid email" => "Email tidak sah", -"OpenID Changed" => "OpenID telah dirubah", -"Invalid request" => "Permintaan tidak valid", "Authentication error" => "autentikasi bermasalah", "Language changed" => "Bahasa telah diganti", +"Invalid request" => "Permintaan tidak valid", "Disable" => "NonAktifkan", "Enable" => "Aktifkan", "Saving..." => "Menyimpan...", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 2056dfc5b72..d978957ab48 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Gat ekki virkjað forrit", "Email saved" => "Netfang vistað", "Invalid email" => "Ógilt netfang", -"OpenID Changed" => "OpenID breytt", -"Invalid request" => "Ógild fyrirspurn", "Unable to delete group" => "Ekki tókst að eyða hóp", "Authentication error" => "Villa við auðkenningu", "Unable to delete user" => "Ekki tókst að eyða notenda", "Language changed" => "Tungumáli breytt", +"Invalid request" => "Ógild fyrirspurn", "Admins can't remove themself from the admin group" => "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp", "Unable to add user to group %s" => "Ekki tókst að bæta notenda við hópinn %s", "Unable to remove user from group %s" => "Ekki tókst að fjarlægja notanda úr hópnum %s", @@ -21,7 +20,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", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-leyfi skráð af <span class=\"author\"></span>", "User Documentation" => "Notenda handbók", "Administrator Documentation" => "Stjórnenda handbók", "Online Documentation" => "Handbók á netinu", @@ -55,7 +55,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/it.php b/settings/l10n/it.php index 043f1a2db9d..d485f7ccd13 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Impossibile abilitare l'applicazione.", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", -"OpenID Changed" => "OpenID modificato", -"Invalid request" => "Richiesta non valida", "Unable to delete group" => "Impossibile eliminare il gruppo", "Authentication error" => "Errore di autenticazione", "Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", +"Invalid request" => "Richiesta non valida", "Admins can't remove themself from the admin group" => "Gli amministratori non possono rimuovere se stessi dal gruppo di amministrazione", "Unable to add user to group %s" => "Impossibile aggiungere l'utente al gruppo %s", "Unable to remove user from group %s" => "Impossibile rimuovere l'utente dal gruppo %s", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 4b1efe35f67..a660d21c780 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -5,12 +5,11 @@ "Could not enable app. " => "アプリを有効にできませんでした。", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", -"OpenID Changed" => "OpenIDが変更されました", -"Invalid request" => "無効なリクエストです", "Unable to delete group" => "グループを削除できません", "Authentication error" => "認証エラー", "Unable to delete user" => "ユーザを削除できません", "Language changed" => "言語が変更されました", +"Invalid request" => "無効なリクエストです", "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 から削除できません", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index a9d994f87c6..68dbc736dcd 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -5,12 +5,11 @@ "Could not enable app. " => "ვერ მოხერხდა აპლიკაციის ჩართვა.", "Email saved" => "იმეილი შენახულია", "Invalid email" => "არასწორი იმეილი", -"OpenID Changed" => "OpenID შეცვლილია", -"Invalid request" => "არასწორი მოთხოვნა", "Unable to delete group" => "ჯგუფის წაშლა ვერ მოხერხდა", "Authentication error" => "ავთენტიფიკაციის შეცდომა", "Unable to delete user" => "მომხმარებლის წაშლა ვერ მოხერხდა", "Language changed" => "ენა შეცვლილია", +"Invalid request" => "არასწორი მოთხოვნა", "Unable to add user to group %s" => "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", "Unable to remove user from group %s" => "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", "Disable" => "გამორთვა", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 21724a1782e..4a7817b8401 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -5,12 +5,11 @@ "Could not enable app. " => "앱을 활성화할 수 없습니다.", "Email saved" => "이메일 저장됨", "Invalid email" => "잘못된 이메일 주소", -"OpenID Changed" => "OpenID 변경됨", -"Invalid request" => "잘못된 요청", "Unable to delete group" => "그룹을 삭제할 수 없습니다.", "Authentication error" => "인증 오류", "Unable to delete user" => "사용자를 삭제할 수 없습니다.", "Language changed" => "언어가 변경되었습니다", +"Invalid request" => "잘못된 요청", "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에서 사용자를 삭제할 수 없습니다.", @@ -28,6 +27,7 @@ "Online Documentation" => "온라인 문서", "Forum" => "포럼", "Bugtracker" => "버그트래커", +"Commercial Support" => "상업용 지원", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "현재 공간 <strong>%s</strong>/<strong>%s</strong>을(를) 사용 중입니다", "Clients" => "고객", "Download Desktop Clients" => "데스크탑 클라이언트 다운로드", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index db09bdc1280..1f9ea35e885 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -2,10 +2,9 @@ "Unable to load list from App Store" => "Konnt Lescht net vum App Store lueden", "Email saved" => "E-mail gespäichert", "Invalid email" => "Ongülteg e-mail", -"OpenID Changed" => "OpenID huet geännert", -"Invalid request" => "Ongülteg Requête", "Authentication error" => "Authentifikatioun's Fehler", "Language changed" => "Sprooch huet geännert", +"Invalid request" => "Ongülteg Requête", "Disable" => "Ofschalten", "Enable" => "Aschalten", "Saving..." => "Speicheren...", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 0430fface00..73af4f3b27b 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -3,10 +3,9 @@ "Could not enable app. " => "Nepavyksta įjungti aplikacijos.", "Email saved" => "El. paštas išsaugotas", "Invalid email" => "Netinkamas el. paštas", -"OpenID Changed" => "OpenID pakeistas", -"Invalid request" => "Klaidinga užklausa", "Authentication error" => "Autentikacijos klaida", "Language changed" => "Kalba pakeista", +"Invalid request" => "Klaidinga užklausa", "Disable" => "Išjungti", "Enable" => "Įjungti", "Saving..." => "Saugoma..", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 5ae9be48e4f..ba44fdbb3e2 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nevar ieslēgt aplikāciju.", "Email saved" => "Epasts tika saglabāts", "Invalid email" => "Nepareizs epasts", -"OpenID Changed" => "OpenID nomainīts", -"Invalid request" => "Nepareizs vaicājums", "Unable to delete group" => "Nevar izdzēst grupu", "Authentication error" => "Ielogošanās kļūme", "Unable to delete user" => "Nevar izdzēst lietotāju", "Language changed" => "Valoda tika nomainīta", +"Invalid request" => "Nepareizs vaicājums", "Unable to add user to group %s" => "Nevar pievienot lietotāju grupai %s", "Unable to remove user from group %s" => "Nevar noņemt lietotāju no grupas %s", "Disable" => "Atvienot", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 4c5f7bf549b..52fafc56479 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Неможе да овозможам апликација.", "Email saved" => "Електронската пошта е снимена", "Invalid email" => "Неисправна електронска пошта", -"OpenID Changed" => "OpenID сменето", -"Invalid request" => "неправилно барање", "Unable to delete group" => "Неможе да избришам група", "Authentication error" => "Грешка во автентикација", "Unable to delete user" => "Неможам да избришам корисник", "Language changed" => "Јазикот е сменет", +"Invalid request" => "неправилно барање", "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", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 27eb4c2df9f..87f45d3c9a0 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -1,10 +1,9 @@ <?php $TRANSLATIONS = array( "Email saved" => "Emel disimpan", "Invalid email" => "Emel tidak sah", -"OpenID Changed" => "OpenID diubah", -"Invalid request" => "Permintaan tidak sah", "Authentication error" => "Ralat pengesahan", "Language changed" => "Bahasa diubah", +"Invalid request" => "Permintaan tidak sah", "Disable" => "Nyahaktif", "Enable" => "Aktif", "Saving..." => "Simpan...", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 24a6085b024..52cfc92040b 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Kan ikke aktivere app.", "Email saved" => "Epost lagret", "Invalid email" => "Ugyldig epost", -"OpenID Changed" => "OpenID endret", -"Invalid request" => "Ugyldig forespørsel", "Unable to delete group" => "Kan ikke slette gruppe", "Authentication error" => "Autentikasjonsfeil", "Unable to delete user" => "Kan ikke slette bruker", "Language changed" => "Språk endret", +"Invalid request" => "Ugyldig forespørsel", "Unable to add user to group %s" => "Kan ikke legge bruker til gruppen %s", "Unable to remove user from group %s" => "Kan ikke slette bruker fra gruppen %s", "Disable" => "Slå avBehandle ", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index ca7e84ce6cb..2b6fdbd6082 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Kan de app. niet activeren", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", -"OpenID Changed" => "OpenID is aangepast", -"Invalid request" => "Ongeldig verzoek", "Unable to delete group" => "Niet in staat om groep te verwijderen", "Authentication error" => "Authenticatie fout", "Unable to delete user" => "Niet in staat om gebruiker te verwijderen", "Language changed" => "Taal aangepast", +"Invalid request" => "Ongeldig verzoek", "Admins can't remove themself from the admin group" => "Admins kunnen zichzelf niet uit de admin groep verwijderen", "Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s", "Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 9f54fc9ee5f..923f5481d5a 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -2,10 +2,9 @@ "Unable to load list from App Store" => "Klarer ikkje å laste inn liste fra App Store", "Email saved" => "E-postadresse lagra", "Invalid email" => "Ugyldig e-postadresse", -"OpenID Changed" => "OpenID endra", -"Invalid request" => "Ugyldig førespurnad", "Authentication error" => "Feil i autentisering", "Language changed" => "Språk endra", +"Invalid request" => "Ugyldig førespurnad", "Disable" => "Slå av", "Enable" => "Slå på", "__language_name__" => "Nynorsk", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 358b44bbec3..39445570fdb 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Pòt pas activar app. ", "Email saved" => "Corrièl enregistrat", "Invalid email" => "Corrièl incorrècte", -"OpenID Changed" => "OpenID cambiat", -"Invalid request" => "Demanda invalida", "Unable to delete group" => "Pas capable d'escafar un grop", "Authentication error" => "Error d'autentificacion", "Unable to delete user" => "Pas capable d'escafar un usancièr", "Language changed" => "Lengas cambiadas", +"Invalid request" => "Demanda invalida", "Unable to add user to group %s" => "Pas capable d'apondre un usancièr al grop %s", "Unable to remove user from group %s" => "Pas capable de tira un usancièr del grop %s", "Disable" => "Desactiva", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 1008726d36e..c9e49f57a3e 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nie można włączyć aplikacji.", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", -"OpenID Changed" => "Zmieniono OpenID", -"Invalid request" => "Nieprawidłowe żądanie", "Unable to delete group" => "Nie można usunąć grupy", "Authentication error" => "Błąd uwierzytelniania", "Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", +"Invalid request" => "Nieprawidłowe żądanie", "Admins can't remove themself from the admin group" => "Administratorzy nie mogą usunąć się sami z grupy administratorów.", "Unable to add user to group %s" => "Nie można dodać użytkownika do grupy %s", "Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", @@ -23,8 +22,17 @@ "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencjonowane przez <span class=\"author\"></span>", +"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 <strong>%s</strong> of the available <strong>%s</strong>" => "Korzystasz z <strong>%s</strong> z dostępnych <strong>%s</strong>", "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 +45,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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Stwirzone przez <a href=\"http://ownCloud.org/contact\" target=\"_blank\"> społeczność ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">kod źródłowy</a> na licencji <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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/pt_BR.php b/settings/l10n/pt_BR.php index a731d142ce3..3a1e6b86357 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Não pôde habilitar aplicação", "Email saved" => "Email gravado", "Invalid email" => "Email inválido", -"OpenID Changed" => "Mudou OpenID", -"Invalid request" => "Pedido inválido", "Unable to delete group" => "Não foi possivel remover grupo", "Authentication error" => "erro de autenticação", "Unable to delete user" => "Não foi possivel remover usuário", "Language changed" => "Mudou Idioma", +"Invalid request" => "Pedido inválido", "Admins can't remove themself from the admin group" => "Admins não podem se remover do grupo admin", "Unable to add user to group %s" => "Não foi possivel adicionar usuário ao grupo %s", "Unable to remove user from group %s" => "Não foi possivel remover usuário ao grupo %s", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 32764a9cf36..6bccb49d649 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Não foi possível activar a app.", "Email saved" => "Email guardado", "Invalid email" => "Email inválido", -"OpenID Changed" => "OpenID alterado", -"Invalid request" => "Pedido inválido", "Unable to delete group" => "Impossível apagar grupo", "Authentication error" => "Erro de autenticação", "Unable to delete user" => "Impossível apagar utilizador", "Language changed" => "Idioma alterado", +"Invalid request" => "Pedido inválido", "Admins can't remove themself from the admin group" => "Os administradores não se podem remover a eles mesmos do grupo admin.", "Unable to add user to group %s" => "Impossível acrescentar utilizador ao grupo %s", "Unable to remove user from group %s" => "Impossível apagar utilizador do grupo %s", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 4c8b1ac420a..a96a7368499 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", -"OpenID Changed" => "OpenID schimbat", -"Invalid request" => "Cerere eronată", "Unable to delete group" => "Nu s-a putut șterge grupul", "Authentication error" => "Eroare de autentificare", "Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", +"Invalid request" => "Cerere eronată", "Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", "Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Disable" => "Dezactivați", @@ -18,10 +17,20 @@ "Saving..." => "Salvez...", "__language_name__" => "_language_name_", "Add your App" => "Adaugă aplicația ta", +"More Apps" => "Mai multe aplicații", "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licențiat <span class=\"author\"></span>", +"User Documentation" => "Documentație utilizator", +"Administrator Documentation" => "Documentație administrator", +"Online Documentation" => "Documentație online", +"Forum" => "Forum", +"Bugtracker" => "Urmărire bug-uri", +"Commercial Support" => "Suport comercial", "Clients" => "Clienți", +"Download Desktop Clients" => "Descarcă client desktop", +"Download Android Client" => "Descarcă client Android", +"Download iOS Client" => "Descarcă client iOS", "Password" => "Parolă", "Your password was changed" => "Parola a fost modificată", "Unable to change your password" => "Imposibil de-ați schimbat parola", @@ -34,11 +43,17 @@ "Fill in an email address to enable password recovery" => "Completează o adresă de mail pentru a-ți putea recupera parola", "Language" => "Limba", "Help translate" => "Ajută la traducere", +"WebDAV" => "WebDAV", +"Version" => "Versiunea", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Dezvoltat de the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitatea ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">codul sursă</a> este licențiat sub <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Name" => "Nume", "Groups" => "Grupuri", "Create" => "Crează", +"Default Storage" => "Stocare implicită", +"Unlimited" => "Nelimitată", "Other" => "Altele", "Group Admin" => "Grupul Admin ", +"Storage" => "Stocare", +"Default" => "Implicită", "Delete" => "Șterge" ); diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 48965f9a684..5c05f32636a 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Не удалось включить приложение.", "Email saved" => "Email сохранен", "Invalid email" => "Неправильный Email", -"OpenID Changed" => "OpenID изменён", -"Invalid request" => "Неверный запрос", "Unable to delete group" => "Невозможно удалить группу", "Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменён", +"Invalid request" => "Неверный запрос", "Admins can't remove themself from the admin group" => "Администратор не может удалить сам себя из группы admin", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", @@ -23,7 +22,12 @@ "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span> лицензия. Автор <span class=\"author\"></span>", +"User Documentation" => "Пользовательская документация", +"Administrator Documentation" => "Документация администратора", +"Online Documentation" => "Online документация", "Forum" => "Форум", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Коммерческая поддержка", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Вы использовали <strong>%s</strong> из доступных <strong>%s</strong>", "Clients" => "Клиенты", "Download Desktop Clients" => "Загрузка приложений для компьютера", @@ -48,7 +52,11 @@ "Name" => "Имя", "Groups" => "Группы", "Create" => "Создать", +"Default Storage" => "Хранилище по-умолчанию", +"Unlimited" => "Неограниченно", "Other" => "Другое", "Group Admin" => "Группа Администраторы", +"Storage" => "Хранилище", +"Default" => "По-умолчанию", "Delete" => "Удалить" ); diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 38b736a5c18..26179eeb329 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Не удалось запустить приложение", "Email saved" => "Email сохранен", "Invalid email" => "Неверный email", -"OpenID Changed" => "OpenID изменен", -"Invalid request" => "Неверный запрос", "Unable to delete group" => "Невозможно удалить группу", "Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменен", +"Invalid request" => "Неверный запрос", "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", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 4f4834921e9..45cb9a4a4fb 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -4,12 +4,11 @@ "Could not enable app. " => "යෙදුම සක්රීය කළ නොහැකි විය.", "Email saved" => "වි-තැපෑල සුරකින ලදී", "Invalid email" => "අවලංගු වි-තැපෑල", -"OpenID Changed" => "විවෘත හැඳුනුම නැතහොත් OpenID වෙනස්විය.", -"Invalid request" => "අවලංගු අයදුම", "Unable to delete group" => "කණ්ඩායම මැකීමට නොහැක", "Authentication error" => "සත්යාපන දෝෂයක්", "Unable to delete user" => "පරිශීලකයා මැකීමට නොහැක", "Language changed" => "භාෂාව ාවනස් කිරීම", +"Invalid request" => "අවලංගු අයදුම", "Unable to add user to group %s" => "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක", "Unable to remove user from group %s" => "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක", "Disable" => "අක්රිය කරන්න", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index c3cf84f1fe8..ecf1a905008 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Nie je možné zapnúť aplikáciu.", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", -"OpenID Changed" => "OpenID zmenené", -"Invalid request" => "Neplatná požiadavka", "Unable to delete group" => "Nie je možné odstrániť skupinu", "Authentication error" => "Chyba pri autentifikácii", "Unable to delete user" => "Nie je možné odstrániť používateľa", "Language changed" => "Jazyk zmenený", +"Invalid request" => "Neplatná požiadavka", "Admins can't remove themself from the admin group" => "Administrátori nesmú odstrániť sami seba zo skupiny admin", "Unable to add user to group %s" => "Nie je možné pridať užívateľa do skupiny %s", "Unable to remove user from group %s" => "Nie je možné odstrániť používateľa zo skupiny %s", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 88dc1dddba9..24bea147993 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Programa ni mogoče omogočiti.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", -"OpenID Changed" => "OpenID je bil spremenjen", -"Invalid request" => "Neveljavna zahteva", "Unable to delete group" => "Ni mogoče izbrisati skupine", "Authentication error" => "Napaka overitve", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", +"Invalid request" => "Neveljavna zahteva", "Admins can't remove themself from the admin group" => "Administratorji sebe ne morejo odstraniti iz skupine admin", "Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s", "Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 9fb495a9ebb..d230adb9275 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Не могу да укључим програм", "Email saved" => "Е-порука сачувана", "Invalid email" => "Неисправна е-адреса", -"OpenID Changed" => "OpenID је измењен", -"Invalid request" => "Неисправан захтев", "Unable to delete group" => "Не могу да уклоним групу", "Authentication error" => "Грешка при аутентификацији", "Unable to delete user" => "Не могу да уклоним корисника", "Language changed" => "Језик је промењен", +"Invalid request" => "Неисправан захтев", "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", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 9ee84bc255a..7677fbcf33c 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -1,8 +1,7 @@ <?php $TRANSLATIONS = array( -"OpenID Changed" => "OpenID je izmenjen", -"Invalid request" => "Neispravan zahtev", "Authentication error" => "Greška pri autentifikaciji", "Language changed" => "Jezik je izmenjen", +"Invalid request" => "Neispravan zahtev", "Select an App" => "Izaberite program", "Clients" => "Klijenti", "Password" => "Lozinka", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 681db2099a1..e99fad96172 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Kunde inte aktivera appen.", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", -"OpenID Changed" => "OpenID ändrat", -"Invalid request" => "Ogiltig begäran", "Unable to delete group" => "Kan inte radera grupp", "Authentication error" => "Autentiseringsfel", "Unable to delete user" => "Kan inte radera användare", "Language changed" => "Språk ändrades", +"Invalid request" => "Ogiltig begäran", "Admins can't remove themself from the admin group" => "Administratörer kan inte ta bort sig själva från admingruppen", "Unable to add user to group %s" => "Kan inte lägga till användare i gruppen %s", "Unable to remove user from group %s" => "Kan inte radera användare från gruppen %s", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index 3b3b1f8dddf..9771e167e4b 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -5,12 +5,11 @@ "Could not enable app. " => "செயலியை இயலுமைப்படுத்த முடியாது", "Email saved" => "மின்னஞ்சல் சேமிக்கப்பட்டது", "Invalid email" => "செல்லுபடியற்ற மின்னஞ்சல்", -"OpenID Changed" => "OpenID மாற்றப்பட்டது", -"Invalid request" => "செல்லுபடியற்ற வேண்டுகோள்", "Unable to delete group" => "குழுவை நீக்க முடியாது", "Authentication error" => "அத்தாட்சிப்படுத்தலில் வழு", "Unable to delete user" => "பயனாளரை நீக்க முடியாது", "Language changed" => "மொழி மாற்றப்பட்டது", +"Invalid request" => "செல்லுபடியற்ற வேண்டுகோள்", "Unable to add user to group %s" => "குழு %s இல் பயனாளரை சேர்க்க முடியாது", "Unable to remove user from group %s" => "குழு %s இலிருந்து பயனாளரை நீக்கமுடியாது", "Disable" => "இயலுமைப்ப", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 558af48df14..f4e6398ae21 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -5,12 +5,11 @@ "Could not enable app. " => "ไม่สามารถเปิดใช้งานแอปได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", -"OpenID Changed" => "เปลี่ยนชื่อบัญชี OpenID แล้ว", -"Invalid request" => "คำร้องขอไม่ถูกต้อง", "Unable to delete group" => "ไม่สามารถลบกลุ่มได้", "Authentication error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน", "Unable to delete user" => "ไม่สามารถลบผู้ใช้งานได้", "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", +"Invalid request" => "คำร้องขอไม่ถูกต้อง", "Unable to add user to group %s" => "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", "Unable to remove user from group %s" => "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", "Disable" => "ปิดใช้งาน", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 295dbfab584..f754bb90fcf 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Uygulama devreye alınamadı", "Email saved" => "Eposta kaydedildi", "Invalid email" => "Geçersiz eposta", -"OpenID Changed" => "OpenID Değiştirildi", -"Invalid request" => "Geçersiz istek", "Unable to delete group" => "Grup silinemiyor", "Authentication error" => "Eşleşme hata", "Unable to delete user" => "Kullanıcı silinemiyor", "Language changed" => "Dil değiştirildi", +"Invalid request" => "Geçersiz istek", "Unable to add user to group %s" => "Kullanıcı %s grubuna eklenemiyor", "Disable" => "Etkin değil", "Enable" => "Etkin", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index d6a9e9fa491..ce1ced031b1 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -5,12 +5,11 @@ "Could not enable app. " => "Не вдалося активувати програму. ", "Email saved" => "Адресу збережено", "Invalid email" => "Невірна адреса", -"OpenID Changed" => "OpenID змінено", -"Invalid request" => "Помилковий запит", "Unable to delete group" => "Не вдалося видалити групу", "Authentication error" => "Помилка автентифікації", "Unable to delete user" => "Не вдалося видалити користувача", "Language changed" => "Мова змінена", +"Invalid request" => "Помилковий запит", "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", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 9651bee1124..2354ba2a16e 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -5,12 +5,11 @@ "Could not enable app. " => "không thể kích hoạt ứng dụng.", "Email saved" => "Lưu email", "Invalid email" => "Email không hợp lệ", -"OpenID Changed" => "Đổi OpenID", -"Invalid request" => "Yêu cầu không hợp lệ", "Unable to delete group" => "Không thể xóa nhóm", "Authentication error" => "Lỗi xác thực", "Unable to delete user" => "Không thể xóa người dùng", "Language changed" => "Ngôn ngữ đã được thay đổi", +"Invalid request" => "Yêu cầu không hợp lệ", "Admins can't remove themself from the admin group" => "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý", "Unable to add user to group %s" => "Không thể thêm người dùng vào nhóm %s", "Unable to remove user from group %s" => "Không thể xóa người dùng từ nhóm %s", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 6afcc1ecd56..b34b20d5aed 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -5,12 +5,11 @@ "Could not enable app. " => "未能启用应用", "Email saved" => "Email 保存了", "Invalid email" => "非法Email", -"OpenID Changed" => "OpenID 改变了", -"Invalid request" => "非法请求", "Unable to delete group" => "未能删除群组", "Authentication error" => "认证错误", "Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", +"Invalid request" => "非法请求", "Unable to add user to group %s" => "未能添加用户到群组 %s", "Unable to remove user from group %s" => "未能将用户从群组 %s 移除", "Disable" => "禁用", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 00e51d211c4..218095b78eb 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -5,12 +5,11 @@ "Could not enable app. " => "无法开启App", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", -"OpenID Changed" => "OpenID 已修改", -"Invalid request" => "非法请求", "Unable to delete group" => "无法删除组", "Authentication error" => "认证错误", "Unable to delete user" => "无法删除用户", "Language changed" => "语言已修改", +"Invalid request" => "非法请求", "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中移除用户", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index d25ae4e149c..7681b10affa 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -5,12 +5,11 @@ "Could not enable app. " => "未能啟動此app", "Email saved" => "Email已儲存", "Invalid email" => "無效的email", -"OpenID Changed" => "OpenID 已變更", -"Invalid request" => "無效請求", "Unable to delete group" => "群組刪除錯誤", "Authentication error" => "認證錯誤", "Unable to delete user" => "使用者刪除錯誤", "Language changed" => "語言已變更", +"Invalid request" => "無效請求", "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錯誤", @@ -23,8 +22,17 @@ "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>", +"User Documentation" => "用戶說明文件", +"Administrator Documentation" => "管理者說明文件", +"Online Documentation" => "線上說明文件", +"Forum" => "論壇", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "商用支援", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "您已經使用了 <strong>%s</strong> ,目前可用空間為 <strong>%s</strong>", "Clients" => "客戶", +"Download Desktop Clients" => "下載桌面客戶端", +"Download Android Client" => "下載 Android 客戶端", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "由<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社區</a>開發,<a href=\"https://github.com/owncloud\" target=\"_blank\">源代碼</a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>許可證下發布。", "Name" => "名稱", "Groups" => "群組", "Create" => "創造", +"Default Storage" => "預設儲存區", +"Unlimited" => "無限制", "Other" => "其他", "Group Admin" => "群組 管理員", +"Storage" => "儲存區", +"Default" => "預設", "Delete" => "刪除" ); diff --git a/settings/routes.php b/settings/routes.php index 8239fe005db..9b5bf809230 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -58,7 +58,5 @@ $this->create('settings_ajax_getlog', '/settings/ajax/getlog.php') ->actionInclude('settings/ajax/getlog.php'); $this->create('settings_ajax_setloglevel', '/settings/ajax/setloglevel.php') ->actionInclude('settings/ajax/setloglevel.php'); - -// apps/user_openid -$this->create('settings_ajax_openid', '/settings/ajax/openid.php') - ->actionInclude('settings/ajax/openid.php'); +$this->create('settings_ajax_setsecurity', '/settings/ajax/setsecurity.php') + ->actionInclude('settings/ajax/setsecurity.php'); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 26335063d4b..5ee0147fbcb 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -132,6 +132,33 @@ if (!$_['internetconnectionworking']) { </table> </fieldset> +<fieldset class="personalblock" id="security"> + <legend><strong><?php echo $l->t('Security');?></strong></legend> + <table class="nostyle"> + <tr> + <td id="enable"> + <input type="checkbox" name="forcessl" id="enforceHTTPSEnabled" + <?php if ($_['enforceHTTPSEnabled']) { + echo 'checked="checked" '; + echo 'value="false"'; + } else { + echo 'value="true"'; + } + ?> + <?php if (!$_['isConnectedViaHTTPS']) echo 'disabled'; ?> /> + <label for="forcessl"><?php echo $l->t('Enforce HTTPS');?></label><br/> + <em><?php echo $l->t('Enforces the clients to connect to ownCloud via an encrypted connection.'); ?></em> + <?php if (!$_['isConnectedViaHTTPS']) { + echo "<br/><em>"; + echo $l->t('Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement.'); + echo "</em>"; + } + ?> + </td> + </tr> + </table> +</fieldset> + <fieldset class="personalblock"> <legend><strong><?php echo $l->t('Log');?></strong></legend> <?php echo $l->t('Log level');?> <select name='loglevel' id='loglevel'> |