Merge branch 'master' into fixing-998-master

Conflicts:
	apps/files/js/files.js
This commit is contained in:
Thomas Mueller 2013-01-11 10:00:12 +01:00
commit 364b1cd391
275 changed files with 8282 additions and 5557 deletions

View File

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

View File

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

View File

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

View File

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

View File

@ -151,8 +151,7 @@ var FileList={
var newname=input.val(); var newname=input.val();
if (!Files.isFileNameValid(newname)) { if (!Files.isFileNameValid(newname)) {
return false; return false;
} } else if (newname != name) {
if (newname != name) {
if (FileList.checkName(name, newname, false)) { if (FileList.checkName(name, newname, false)) {
newname = name; newname = name;
} else { } else {
@ -185,6 +184,13 @@ var FileList={
td.children('a.name').show(); td.children('a.name').show();
return false; 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){ input.click(function(event){
event.stopPropagation(); event.stopPropagation();
event.preventDefault(); event.preventDefault();

View File

@ -26,17 +26,19 @@ Files={
}); });
procesSelection(); procesSelection();
}, },
isFileNameValid:function (name) { isFileNameValid:function (name) {
if (name === '.') { if (name === '.') {
OC.Notification.show(t('files', "'.' is an invalid file name.")); $('#notification').text(t('files', '\'.\' is an invalid file name.'));
return false; $('#notification').fadeIn();
} return false;
if (name.length == 0) { }
OC.Notification.show(t('files', "File name cannot be empty.")); if (name.length == 0) {
return false; $('#notification').text(t('files', 'File name cannot be empty.'));
} $('#notification').fadeIn();
return false;
}
// check for invalid characters // check for invalid characters
var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*']; var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*'];
for (var i = 0; i < invalid_characters.length; i++) { for (var i = 0; i < invalid_characters.length; i++) {
if (name.indexOf(invalid_characters[i]) != -1) { if (name.indexOf(invalid_characters[i]) != -1) {
@ -252,12 +254,12 @@ $(document).ready(function() {
} }
}); });
}else{ }else{
var dropTarget = $(e.originalEvent.target).closest('tr'); var dropTarget = $(e.originalEvent.target).closest('tr');
if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder
var dirName = dropTarget.attr('data-file') var dirName = dropTarget.attr('data-file')
} }
var date=new Date(); var date=new Date();
if(files){ if(files){
for(var i=0;i<files.length;i++){ for(var i=0;i<files.length;i++){
if(files[i].size>0){ if(files[i].size>0){
@ -310,9 +312,9 @@ $(document).ready(function() {
var jqXHR = $('#file_upload_start').fileupload('send', {files: files[i], var jqXHR = $('#file_upload_start').fileupload('send', {files: files[i],
formData: function(form) { formData: function(form) {
var formArray = form.serializeArray(); var formArray = form.serializeArray();
// array index 0 contains the max files size // array index 0 contains the max files size
// array index 1 contains the request token // array index 1 contains the request token
// array index 2 contains the directory // array index 2 contains the directory
formArray[2]['value'] = dirName; formArray[2]['value'] = dirName;
return formArray; return formArray;
}}).success(function(result, textStatus, jqXHR) { }}).success(function(result, textStatus, jqXHR) {
@ -322,13 +324,14 @@ $(document).ready(function() {
OC.Notification.show(t('files', response.data.message)); OC.Notification.show(t('files', response.data.message));
} }
var file=response[0]; 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]; delete uploadingFiles[dirName][file.name];
if ($.assocArraySize(uploadingFiles[dirName]) == 0) { if ($.assocArraySize(uploadingFiles[dirName]) == 0) {
delete uploadingFiles[dirName]; 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')); var currentUploads = parseInt(uploadtext.attr('currentUploads'));
currentUploads -= 1; currentUploads -= 1;
uploadtext.attr('currentUploads', currentUploads); uploadtext.attr('currentUploads', currentUploads);
@ -377,8 +380,10 @@ $(document).ready(function() {
if(size==t('files','Pending')){ if(size==t('files','Pending')){
$('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size);
} }
//TODO update file upload size limit
FileList.loadingDone(file.name, file.id); FileList.loadingDone(file.name, file.id);
} else { } else {
Files.cancelUpload(this.files[0].name);
OC.Notification.show(t('files', response.data.message)); OC.Notification.show(t('files', response.data.message));
$('#fileList > tr').not('[data-mime]').fadeOut(); $('#fileList > tr').not('[data-mime]').fadeOut();
$('#fileList > tr').not('[data-mime]').remove(); $('#fileList > tr').not('[data-mime]').remove();
@ -386,6 +391,7 @@ $(document).ready(function() {
}) })
.error(function(jqXHR, textStatus, errorThrown) { .error(function(jqXHR, textStatus, errorThrown) {
if(errorThrown === 'abort') { if(errorThrown === 'abort') {
Files.cancelUpload(this.files[0].name);
OC.Notification.show(t('files', 'Upload cancelled.')); OC.Notification.show(t('files', 'Upload cancelled.'));
} }
}); });
@ -404,8 +410,10 @@ $(document).ready(function() {
if(size==t('files','Pending')){ if(size==t('files','Pending')){
$('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size); $('tr').filterAttr('data-file',file.name).find('td.filesize').text(file.size);
} }
//TODO update file upload size limit
FileList.loadingDone(file.name, file.id); FileList.loadingDone(file.name, file.id);
} else { } else {
//TODO Files.cancelUpload(/*where do we get the filename*/);
OC.Notification.show(t('files', response.data.message)); OC.Notification.show(t('files', response.data.message));
$('#fileList > tr').not('[data-mime]').fadeOut(); $('#fileList > tr').not('[data-mime]').fadeOut();
$('#fileList > tr').not('[data-mime]').remove(); $('#fileList > tr').not('[data-mime]').remove();
@ -445,7 +453,7 @@ $(document).ready(function() {
// http://stackoverflow.com/a/6700/11236 // http://stackoverflow.com/a/6700/11236
var size = 0, key; var size = 0, key;
for (key in obj) { for (key in obj) {
if (obj.hasOwnProperty(key)) size++; if (obj.hasOwnProperty(key)) size++;
} }
return size; return size;
}; };
@ -488,7 +496,7 @@ $(document).ready(function() {
$('#new').removeClass('active'); $('#new').removeClass('active');
$('#new li').each(function(i,element){ $('#new li').each(function(i,element){
if($(element).children('p').length==0){ if($(element).children('p').length==0){
$(element).children('input').remove(); $(element).children('form').remove();
$(element).append('<p>'+$(element).data('text')+'</p>'); $(element).append('<p>'+$(element).data('text')+'</p>');
} }
}); });
@ -507,7 +515,7 @@ $(document).ready(function() {
$('#new li').each(function(i,element){ $('#new li').each(function(i,element){
if($(element).children('p').length==0){ if($(element).children('p').length==0){
$(element).children('input').remove(); $(element).children('form').remove();
$(element).append('<p>'+$(element).data('text')+'</p>'); $(element).append('<p>'+$(element).data('text')+'</p>');
} }
}); });
@ -516,22 +524,31 @@ $(document).ready(function() {
var text=$(this).children('p').text(); var text=$(this).children('p').text();
$(this).data('text',text); $(this).data('text',text);
$(this).children('p').remove(); $(this).children('p').remove();
var form=$('<form></form>');
var input=$('<input>'); var input=$('<input>');
$(this).append(input); form.append(input);
$(this).append(form);
input.focus(); input.focus();
input.change(function(){ form.submit(function(event){
if (type != 'web' && !Files.isFileNameValid($(this).val())) { event.stopPropagation();
return; event.preventDefault();
} else if( type == 'folder' && $('#dir').val() == '/' && $(this).val() == 'Shared') { var newname=input.val();
OC.Notification.show(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud')); if(type == 'web' && newname.length == 0) {
return; $('#notification').text(t('files', 'URL cannot be empty.'));
$('#notification').fadeIn();
return false;
} else if (type != 'web' && !Files.isFileNameValid(newname)) {
return false;
} else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') {
OC.Notification.show(t('files','Invalid folder name. Usage of \'Shared\' is reserved by Owncloud'));
return false;
} }
if (FileList.lastAction) { if (FileList.lastAction) {
FileList.lastAction(); FileList.lastAction();
} }
var name = getUniqueName($(this).val()); var name = getUniqueName(newname);
if (name != $(this).val()) { if (newname != name) {
FileList.checkName(name, $(this).val(), true); FileList.checkName(name, newname, true);
var hidden = true; var hidden = true;
} else { } else {
var hidden = false; var hidden = false;
@ -575,7 +592,7 @@ $(document).ready(function() {
break; break;
case 'web': case 'web':
if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){
name='http://'.name; name='http://'+name;
} }
var localName=name; var localName=name;
if(localName.substr(localName.length-1,1)=='/'){//strip / if(localName.substr(localName.length-1,1)=='/'){//strip /
@ -614,8 +631,8 @@ $(document).ready(function() {
}); });
break; break;
} }
var li=$(this).parent(); var li=form.parent();
$(this).remove(); form.remove();
li.append('<p>'+li.data('text')+'</p>'); li.append('<p>'+li.data('text')+'</p>');
$('#new>a').click(); $('#new>a').click();
}); });

View File

@ -1,28 +1,22 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Файлът е качен успешно", "Missing a temporary folder" => "Липсва временна папка",
"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" => "Грешка при запис на диска",
"Files" => "Файлове", "Files" => "Файлове",
"Delete" => "Изтриване", "Delete" => "Изтриване",
"Upload Error" => "Грешка при качване", "Rename" => "Преименуване",
"Upload cancelled." => "Качването е отменено.", "replace" => "препокриване",
"cancel" => "отказ",
"undo" => "възтановяване",
"Upload cancelled." => "Качването е спряно.",
"Name" => "Име", "Name" => "Име",
"Size" => "Размер", "Size" => "Размер",
"Modified" => "Променено", "Modified" => "Променено",
"Maximum upload size" => "Макс. размер за качване", "Maximum upload size" => "Максимален размер за качване",
"0 is unlimited" => "0 означава без ограничение", "0 is unlimited" => "Ползвайте 0 за без ограничения",
"Save" => "Запис", "Save" => "Запис",
"New" => "Нов", "New" => "Ново",
"Text file" => "Текстов файл",
"Folder" => "Папка", "Folder" => "Папка",
"Upload" => "Качване", "Upload" => "Качване",
"Cancel upload" => "Отказване на качването", "Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.",
"Nothing in here. Upload something!" => "Няма нищо, качете нещо!",
"Download" => "Изтегляне", "Download" => "Изтегляне",
"Upload too large" => "Файлът е прекалено голям", "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." => "Файловете се претърсват, изчакайте."
); );

View File

@ -1,46 +1,71 @@
<?php $TRANSLATIONS = array( <?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" => "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে", "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" => "কোন ফাইল আপলোড করা হয় নি", "No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি",
"Missing a temporary folder" => "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে ", "Missing a temporary folder" => "অস্থায়ী ফোল্ডার খোয়া গিয়েছে",
"Failed to write to disk" => "ডিস্কে লিখতে পারা গেল না", "Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ",
"Not enough space available" => "যথেষ্ঠ পরিমাণ স্থান নেই",
"Invalid directory." => "ভুল ডিরেক্টরি",
"Files" => "ফাইল", "Files" => "ফাইল",
"Unshare" => "ভাগাভাগি বাতিল", "Unshare" => "ভাগাভাগি বাতিল ",
"Delete" => "মুছে ফেল", "Delete" => "মুছে ফেল",
"Rename" => "পূনঃনামকরণ", "Rename" => "পূনঃনামকরণ",
"{new_name} already exists" => "{new_name} টি বিদ্যমান", "{new_name} already exists" => "{new_name} টি বিদ্যমান",
"replace" => "প্রতিস্থাপন", "replace" => "প্রতিস্থাপন",
"suggest name" => "নাম সুপারিশ কর", "suggest name" => "নাম সুপারিশ করুন",
"cancel" => "বাতিল", "cancel" => "বাতিল",
"replaced {new_name}" => "{new_name} প্রতিস্থাপন করা হয়েছে", "replaced {new_name}" => "{new_name} প্রতিস্থাপন করা হয়েছে",
"undo" => "ক্রিয়া প্রত্যাহার", "undo" => "ক্রিয়া প্রত্যাহার",
"replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", "replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে",
"unshared {files}" => "{files} ভাগাভাগি বাতিল কর", "unshared {files}" => "{files} ভাগাভাগি বাতিল কর",
"deleted {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" => "মুলতুবি", "Pending" => "মুলতুবি",
"1 file uploading" => "১ টি ফাইল আপলোড করা হচ্ছে", "1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে",
"Upload cancelled." => "আপলোড বাতিল করা হয়েছে ।", "{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" => "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে", "error while scanning" => "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে",
"Name" => "নাম", "Name" => "নাম",
"Size" => "আকার", "Size" => "আকার",
"Modified" => "পরিবর্তিত", "Modified" => "পরিবর্তিত",
"File handling" => "ফাইল হ্যান্ডলিং", "1 folder" => "১টি ফোল্ডার",
"{count} folders" => "{count} টি ফোল্ডার",
"1 file" => "১টি ফাইল",
"{count} files" => "{count} টি ফাইল",
"File handling" => "ফাইল হ্যার্ডলিং",
"Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার",
"max. possible: " => "সম্ভাব্য সর্বোচ্চঃ", "max. possible: " => "অনুমোদিত সর্বোচ্চ আকার",
"Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।", "Needed for multi-file and folder downloads." => "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার জন্য আবশ্যক।",
"Enable ZIP-download" => "জিপ ডাউনলোড সক্রিয় কর", "Enable ZIP-download" => "ZIP ডাউনলোড সক্রিয় কর",
"0 is unlimited" => " এর অর্থ হলো অসীম", "0 is unlimited" => " এর অর্থ অসীম",
"Maximum input size for ZIP files" => "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট", "Maximum input size for ZIP files" => "ZIP ফাইলের ইনপুটের সর্বোচ্চ আকার",
"Save" => "সংরক্ষ কর", "Save" => "সংরক্ষ কর",
"New" => "নতুন", "New" => "নতুন",
"Text file" => "টেক্সট ফাইল", "Text file" => "টেক্সট ফাইল",
"Folder" => "ফোল্ডার", "Folder" => "ফোল্ডার",
"From link" => " লিংক থেকে",
"Upload" => "আপলোড", "Upload" => "আপলোড",
"Cancel upload" => "আপলোড বাতিল কর", "Cancel upload" => "আপলোড বাতিল কর",
"Nothing in here. Upload something!" => "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !", "Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !",
"Download" => "ডাউনলোড", "Download" => "ডাউনলোড",
"Upload too large" => "আপলোডের আকার অনেক বড়", "Upload too large" => "আপলোডের আকারটি অনেক বড়",
"Files are being scanned, please wait." => "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", "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" => "বর্তমান স্ক্যানিং" "Current scanning" => "বর্তমান স্ক্যানিং"
); );

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array( <?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", "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", "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: " => "Larxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Larxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:",
@ -22,6 +25,8 @@
"replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}",
"unshared {files}" => "no compartits {files}", "unshared {files}" => "no compartits {files}",
"deleted {files}" => "eliminats {files}", "deleted {files}" => "eliminats {files}",
"'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.",
"File name cannot be empty." => "El nom del fitxer no pot ser buit.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.",
"generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.", "generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.",
"Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes",
@ -32,7 +37,8 @@
"{count} files uploading" => "{count} fitxers en pujada", "{count} files uploading" => "{count} fitxers en pujada",
"Upload cancelled." => "La pujada s'ha cancel·lat.", "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à.", "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", "{count} files scanned" => "{count} fitxers escannejats",
"error while scanning" => "error durant l'escaneig", "error while scanning" => "error durant l'escaneig",
"Name" => "Nom", "Name" => "Nom",

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array( <?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", "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ě", "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:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:",
@ -7,6 +10,8 @@
"No file was uploaded" => "Žádný soubor nebyl odeslán", "No file was uploaded" => "Žádný soubor nebyl odeslán",
"Missing a temporary folder" => "Chybí adresář pro dočasné soubory", "Missing a temporary folder" => "Chybí adresář pro dočasné soubory",
"Failed to write to disk" => "Zápis na disk selhal", "Failed to write to disk" => "Zápis na disk selhal",
"Not enough space available" => "Nedostatek dostupného místa",
"Invalid directory." => "Neplatný adresář",
"Files" => "Soubory", "Files" => "Soubory",
"Unshare" => "Zrušit sdílení", "Unshare" => "Zrušit sdílení",
"Delete" => "Smazat", "Delete" => "Smazat",
@ -20,6 +25,8 @@
"replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}",
"unshared {files}" => "sdílení zrušeno pro {files}", "unshared {files}" => "sdílení zrušeno pro {files}",
"deleted {files}" => "smazáno {files}", "deleted {files}" => "smazáno {files}",
"'.' is an invalid file name." => "'.' je neplatným názvem souboru.",
"File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.",
"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.", "generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", "Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů",
@ -30,7 +37,8 @@
"{count} files uploading" => "odesílám {count} souborů", "{count} files uploading" => "odesílám {count} souborů",
"Upload cancelled." => "Odesílání zrušeno.", "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í.", "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ů", "{count} files scanned" => "prozkoumáno {count} souborů",
"error while scanning" => "chyba při prohledávání", "error while scanning" => "chyba při prohledávání",
"Name" => "Název", "Name" => "Název",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} filer uploades", "{count} files uploading" => "{count} filer uploades",
"Upload cancelled." => "Upload afbrudt.", "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.", "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", "{count} files scanned" => "{count} filer skannet",
"error while scanning" => "fejl under scanning", "error while scanning" => "fejl under scanning",
"Name" => "Navn", "Name" => "Navn",

View File

@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}",
"unshared {files}" => "Freigabe von {files} aufgehoben", "unshared {files}" => "Freigabe von {files} aufgehoben",
"deleted {files}" => "{files} gelöscht", "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.", "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.", "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.", "Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.",
@ -32,7 +34,7 @@
"{count} files uploading" => "{count} Dateien werden hochgeladen", "{count} files uploading" => "{count} Dateien werden hochgeladen",
"Upload cancelled." => "Upload abgebrochen.", "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.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", "URL cannot be empty." => "Die URL darf nicht leer sein.",
"{count} files scanned" => "{count} Dateien wurden gescannt", "{count} files scanned" => "{count} Dateien wurden gescannt",
"error while scanning" => "Fehler beim Scannen", "error while scanning" => "Fehler beim Scannen",
"Name" => "Name", "Name" => "Name",

View File

@ -7,7 +7,7 @@
"No file was uploaded" => "Es wurde keine Datei hochgeladen.", "No file was uploaded" => "Es wurde keine Datei hochgeladen.",
"Missing a temporary folder" => "Der temporäre Ordner fehlt.", "Missing a temporary folder" => "Der temporäre Ordner fehlt.",
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "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.", "Invalid directory." => "Ungültiges Verzeichnis.",
"Files" => "Dateien", "Files" => "Dateien",
"Unshare" => "Nicht mehr freigeben", "Unshare" => "Nicht mehr freigeben",
@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}",
"unshared {files}" => "Freigabe für {files} beendet", "unshared {files}" => "Freigabe für {files} beendet",
"deleted {files}" => "{files} gelöscht", "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.", "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.", "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.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.",
@ -32,7 +34,7 @@
"{count} files uploading" => "{count} Dateien wurden hochgeladen", "{count} files uploading" => "{count} Dateien wurden hochgeladen",
"Upload cancelled." => "Upload abgebrochen.", "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.", "File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.",
"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten.", "URL cannot be empty." => "Die URL darf nicht leer sein.",
"{count} files scanned" => "{count} Dateien wurden gescannt", "{count} files scanned" => "{count} Dateien wurden gescannt",
"error while scanning" => "Fehler beim Scannen", "error while scanning" => "Fehler beim Scannen",
"Name" => "Name", "Name" => "Name",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} αρχεία ανεβαίνουν", "{count} files uploading" => "{count} αρχεία ανεβαίνουν",
"Upload cancelled." => "Η αποστολή ακυρώθηκε.", "Upload cancelled." => "Η αποστολή ακυρώθηκε.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", "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} αρχεία ανιχνεύτηκαν", "{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν",
"error while scanning" => "σφάλμα κατά την ανίχνευση", "error while scanning" => "σφάλμα κατά την ανίχνευση",
"Name" => "Όνομα", "Name" => "Όνομα",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} dosieroj alŝutatas", "{count} files uploading" => "{count} dosieroj alŝutatas",
"Upload cancelled." => "La alŝuto nuliĝis.", "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.", "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", "{count} files scanned" => "{count} dosieroj skaniĝis",
"error while scanning" => "eraro dum skano", "error while scanning" => "eraro dum skano",
"Name" => "Nomo", "Name" => "Nomo",

View File

@ -22,6 +22,8 @@
"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}",
"unshared {files}" => "{files} descompartidos", "unshared {files}" => "{files} descompartidos",
"deleted {files}" => "{files} eliminados", "deleted {files}" => "{files} eliminados",
"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.",
"File name cannot be empty." => "El nombre de archivo no puede estar vacío.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ",
"generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.", "generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.",
"Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes",
@ -32,7 +34,7 @@
"{count} files uploading" => "Subiendo {count} archivos", "{count} files uploading" => "Subiendo {count} archivos",
"Upload cancelled." => "Subida cancelada.", "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.", "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", "{count} files scanned" => "{count} archivos escaneados",
"error while scanning" => "error escaneando", "error while scanning" => "error escaneando",
"Name" => "Nombre", "Name" => "Nombre",

View File

@ -32,7 +32,7 @@
"{count} files uploading" => "Subiendo {count} archivos", "{count} files uploading" => "Subiendo {count} archivos",
"Upload cancelled." => "La subida fue cancelada", "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á.", "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", "{count} files scanned" => "{count} archivos escaneados",
"error while scanning" => "error mientras se escaneaba", "error while scanning" => "error mientras se escaneaba",
"Name" => "Nombre", "Name" => "Nombre",

View File

@ -29,7 +29,7 @@
"{count} files uploading" => "{count} faili üleslaadimist", "{count} files uploading" => "{count} faili üleslaadimist",
"Upload cancelled." => "Üleslaadimine tühistati.", "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.", "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", "{count} files scanned" => "{count} faili skännitud",
"error while scanning" => "viga skännimisel", "error while scanning" => "viga skännimisel",
"Name" => "Nimi", "Name" => "Nimi",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} fitxategi igotzen", "{count} files uploading" => "{count} fitxategi igotzen",
"Upload cancelled." => "Igoera ezeztatuta", "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.", "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", "{count} files scanned" => "{count} fitxategi eskaneatuta",
"error while scanning" => "errore bat egon da eskaneatzen zen bitartean", "error while scanning" => "errore bat egon da eskaneatzen zen bitartean",
"Name" => "Izena", "Name" => "Izena",

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array( <?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", "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", "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", "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ä", "suggest name" => "ehdota nimeä",
"cancel" => "peru", "cancel" => "peru",
"undo" => "kumoa", "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.", "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.", "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", "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", "Pending" => "Odottaa",
"Upload cancelled." => "Lähetys peruttu.", "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.", "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", "Name" => "Nimi",
"Size" => "Koko", "Size" => "Koko",
"Modified" => "Muutettu", "Modified" => "Muutettu",
@ -43,6 +49,7 @@
"New" => "Uusi", "New" => "Uusi",
"Text file" => "Tekstitiedosto", "Text file" => "Tekstitiedosto",
"Folder" => "Kansio", "Folder" => "Kansio",
"From link" => "Linkistä",
"Upload" => "Lähetä", "Upload" => "Lähetä",
"Cancel upload" => "Peru lähetys", "Cancel upload" => "Peru lähetys",
"Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!",

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array( <?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", "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", "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:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:",
@ -7,6 +10,8 @@
"No file was uploaded" => "Aucun fichier n'a été téléversé", "No file was uploaded" => "Aucun fichier n'a été téléversé",
"Missing a temporary folder" => "Il manque un répertoire temporaire", "Missing a temporary folder" => "Il manque un répertoire temporaire",
"Failed to write to disk" => "Erreur d'écriture sur le disque", "Failed to write to disk" => "Erreur d'écriture sur le disque",
"Not enough space available" => "Espace disponible insuffisant",
"Invalid directory." => "Dossier invalide.",
"Files" => "Fichiers", "Files" => "Fichiers",
"Unshare" => "Ne plus partager", "Unshare" => "Ne plus partager",
"Delete" => "Supprimer", "Delete" => "Supprimer",
@ -20,6 +25,8 @@
"replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}",
"unshared {files}" => "Fichiers non partagés : {files}", "unshared {files}" => "Fichiers non partagés : {files}",
"deleted {files}" => "Fichiers supprimés : {files}", "deleted {files}" => "Fichiers supprimés : {files}",
"'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.",
"File name cannot be empty." => "Le nom de fichier ne peut être vide.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.",
"generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.",
@ -30,7 +37,8 @@
"{count} files uploading" => "{count} fichiers téléversés", "{count} files uploading" => "{count} fichiers téléversés",
"Upload cancelled." => "Chargement annulé.", "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.", "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", "{count} files scanned" => "{count} fichiers indexés",
"error while scanning" => "erreur lors de l'indexation", "error while scanning" => "erreur lors de l'indexation",
"Name" => "Nom", "Name" => "Nom",
@ -55,7 +63,7 @@
"Upload" => "Envoyer", "Upload" => "Envoyer",
"Cancel upload" => "Annuler l'envoi", "Cancel upload" => "Annuler l'envoi",
"Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "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", "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.", "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.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.",

View File

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

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} קבצים נשלחים", "{count} files uploading" => "{count} קבצים נשלחים",
"Upload cancelled." => "ההעלאה בוטלה.", "Upload cancelled." => "ההעלאה בוטלה.",
"File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", "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} קבצים נסרקו", "{count} files scanned" => "{count} קבצים נסרקו",
"error while scanning" => "אירעה שגיאה במהלך הסריקה", "error while scanning" => "אירעה שגיאה במהלך הסריקה",
"Name" => "שם", "Name" => "שם",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Nem töltődött fel semmi", "No file was uploaded" => "Nem töltődött fel semmi",
"Missing a temporary folder" => "Hiányzik egy ideiglenes mappa", "Missing a temporary folder" => "Hiányzik egy ideiglenes mappa",
"Failed to write to disk" => "Nem sikerült a lemezre történő írás", "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", "Files" => "Fájlok",
"Unshare" => "Megosztás visszavonása", "Unshare" => "Megosztás visszavonása",
"Delete" => "Törlés", "Delete" => "Törlés",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}",
"unshared {files}" => "{files} fájl megosztása visszavonva", "unshared {files}" => "{files} fájl megosztása visszavonva",
"deleted {files}" => "{files} fájl törölve", "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 '*'", "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.", "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ű", "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", "{count} files uploading" => "{count} fájl töltődik föl",
"Upload cancelled." => "A feltöltést megszakítottuk.", "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.", "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", "{count} files scanned" => "{count} fájlt találtunk",
"error while scanning" => "Hiba a fájllista-ellenőrzés során", "error while scanning" => "Hiba a fájllista-ellenőrzés során",
"Name" => "Név", "Name" => "Név",

View File

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

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?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", "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 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.", "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", "No file was uploaded" => "Engin skrá skilaði sér",
"Missing a temporary folder" => "Vantar bráðabirgðamöppu", "Missing a temporary folder" => "Vantar bráðabirgðamöppu",
"Failed to write to disk" => "Tókst ekki að skrifa á disk", "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", "Files" => "Skrár",
"Unshare" => "Hætta deilingu", "Unshare" => "Hætta deilingu",
"Delete" => "Eyða", "Delete" => "Eyða",
@ -19,6 +25,8 @@
"replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", "replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}",
"unshared {files}" => "Hætti við deilingu á {files}", "unshared {files}" => "Hætti við deilingu á {files}",
"deleted {files}" => "eyddi {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ð.", "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.", "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.", "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", "{count} files uploading" => "{count} skrár innsendar",
"Upload cancelled." => "Hætt við innsendingu.", "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.", "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", "{count} files scanned" => "{count} skrár skimaðar",
"error while scanning" => "villa við skimun", "error while scanning" => "villa við skimun",
"Name" => "Nafn", "Name" => "Nafn",
@ -53,9 +62,9 @@
"From link" => "Af tengli", "From link" => "Af tengli",
"Upload" => "Senda inn", "Upload" => "Senda inn",
"Cancel upload" => "Hætta við innsendingu", "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", "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.", "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.", "Files are being scanned, please wait." => "Verið er að skima skrár, vinsamlegast hinkraðu.",
"Current scanning" => "Er að skima" "Current scanning" => "Er að skima"

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array( <?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", "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", "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:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:",
@ -22,6 +25,8 @@
"replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}",
"unshared {files}" => "non condivisi {files}", "unshared {files}" => "non condivisi {files}",
"deleted {files}" => "eliminati {files}", "deleted {files}" => "eliminati {files}",
"'.' is an invalid file name." => "'.' non è un nome file valido.",
"File name cannot be empty." => "Il nome del file non può essere vuoto.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.",
"generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.", "generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte",
@ -32,7 +37,8 @@
"{count} files uploading" => "{count} file in fase di caricamentoe", "{count} files uploading" => "{count} file in fase di caricamentoe",
"Upload cancelled." => "Invio annullato", "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.", "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", "{count} files scanned" => "{count} file analizzati",
"error while scanning" => "errore durante la scansione", "error while scanning" => "errore durante la scansione",
"Name" => "Nome", "Name" => "Nome",

View File

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

View File

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

View File

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

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} датотеки се подигаат", "{count} files uploading" => "{count} датотеки се подигаат",
"Upload cancelled." => "Преземањето е прекинато.", "Upload cancelled." => "Преземањето е прекинато.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", "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} датотеки скенирани", "{count} files scanned" => "{count} датотеки скенирани",
"error while scanning" => "грешка при скенирање", "error while scanning" => "грешка при скенирање",
"Name" => "Име", "Name" => "Име",

View File

@ -28,7 +28,7 @@
"{count} files uploading" => "{count} filer laster opp", "{count} files uploading" => "{count} filer laster opp",
"Upload cancelled." => "Opplasting avbrutt.", "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.", "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", "{count} files scanned" => "{count} filer lest inn",
"error while scanning" => "feil under skanning", "error while scanning" => "feil under skanning",
"Name" => "Navn", "Name" => "Navn",

View File

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

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Nie przesłano żadnego pliku", "No file was uploaded" => "Nie przesłano żadnego pliku",
"Missing a temporary folder" => "Brak katalogu tymczasowego", "Missing a temporary folder" => "Brak katalogu tymczasowego",
"Failed to write to disk" => "Błąd zapisu na dysk", "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", "Files" => "Pliki",
"Unshare" => "Nie udostępniaj", "Unshare" => "Nie udostępniaj",
"Delete" => "Usuwa element", "Delete" => "Usuwa element",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "zastąpiony {new_name} z {old_name}", "replaced {new_name} with {old_name}" => "zastąpiony {new_name} z {old_name}",
"unshared {files}" => "Udostępniane wstrzymane {files}", "unshared {files}" => "Udostępniane wstrzymane {files}",
"deleted {files}" => "usunięto {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.", "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.", "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", "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", "{count} files uploading" => "{count} przesyłanie plików",
"Upload cancelled." => "Wczytywanie anulowane.", "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.", "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", "{count} files scanned" => "{count} pliki skanowane",
"error while scanning" => "Wystąpił błąd podczas skanowania", "error while scanning" => "Wystąpił błąd podczas skanowania",
"Name" => "Nazwa", "Name" => "Nazwa",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "Enviando {count} arquivos", "{count} files uploading" => "Enviando {count} arquivos",
"Upload cancelled." => "Envio cancelado.", "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.", "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", "{count} files scanned" => "{count} arquivos scaneados",
"error while scanning" => "erro durante verificação", "error while scanning" => "erro durante verificação",
"Name" => "Nome", "Name" => "Nome",

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array( <?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", "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", "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", "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}", "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}",
"unshared {files}" => "{files} não partilhado(s)", "unshared {files}" => "{files} não partilhado(s)",
"deleted {files}" => "{files} eliminado(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.", "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.", "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", "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", "{count} files uploading" => "A carregar {count} ficheiros",
"Upload cancelled." => "O envio foi cancelado.", "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.", "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", "{count} files scanned" => "{count} ficheiros analisados",
"error while scanning" => "erro ao analisar", "error while scanning" => "erro ao analisar",
"Name" => "Nome", "Name" => "Nome",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} fisiere incarcate", "{count} files uploading" => "{count} fisiere incarcate",
"Upload cancelled." => "Încărcare anulată.", "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.", "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", "{count} files scanned" => "{count} fisiere scanate",
"error while scanning" => "eroare la scanarea", "error while scanning" => "eroare la scanarea",
"Name" => "Nume", "Name" => "Nume",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} файлов загружается", "{count} files uploading" => "{count} файлов загружается",
"Upload cancelled." => "Загрузка отменена.", "Upload cancelled." => "Загрузка отменена.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", "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} файлов просканировано", "{count} files scanned" => "{count} файлов просканировано",
"error while scanning" => "ошибка во время санирования", "error while scanning" => "ошибка во время санирования",
"Name" => "Название", "Name" => "Название",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{количество} загружено файлов", "{count} files uploading" => "{количество} загружено файлов",
"Upload cancelled." => "Загрузка отменена", "Upload cancelled." => "Загрузка отменена",
"File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", "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} files scanned" => "{количество} файлов отсканировано",
"error while scanning" => "ошибка при сканировании", "error while scanning" => "ошибка при сканировании",
"Name" => "Имя", "Name" => "Имя",

View File

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

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} súborov odosielaných", "{count} files uploading" => "{count} súborov odosielaných",
"Upload cancelled." => "Odosielanie zrušené", "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.", "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", "{count} files scanned" => "{count} súborov prehľadaných",
"error while scanning" => "chyba počas kontroly", "error while scanning" => "chyba počas kontroly",
"Name" => "Meno", "Name" => "Meno",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "nalagam {count} datotek", "{count} files uploading" => "nalagam {count} datotek",
"Upload cancelled." => "Pošiljanje je preklicano.", "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.", "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", "{count} files scanned" => "{count} files scanned",
"error while scanning" => "napaka med pregledovanjem datotek", "error while scanning" => "napaka med pregledovanjem datotek",
"Name" => "Ime", "Name" => "Ime",

View File

@ -29,7 +29,6 @@
"{count} files uploading" => "Отпремам {count} датотеке/а", "{count} files uploading" => "Отпремам {count} датотеке/а",
"Upload cancelled." => "Отпремање је прекинуто.", "Upload cancelled." => "Отпремање је прекинуто.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", "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}", "{count} files scanned" => "Скенирано датотека: {count}",
"error while scanning" => "грешка при скенирању", "error while scanning" => "грешка при скенирању",
"Name" => "Назив", "Name" => "Назив",

View File

@ -7,6 +7,8 @@
"No file was uploaded" => "Ingen fil blev uppladdad", "No file was uploaded" => "Ingen fil blev uppladdad",
"Missing a temporary folder" => "Saknar en tillfällig mapp", "Missing a temporary folder" => "Saknar en tillfällig mapp",
"Failed to write to disk" => "Misslyckades spara till disk", "Failed to write to disk" => "Misslyckades spara till disk",
"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt",
"Invalid directory." => "Felaktig mapp.",
"Files" => "Filer", "Files" => "Filer",
"Unshare" => "Sluta dela", "Unshare" => "Sluta dela",
"Delete" => "Radera", "Delete" => "Radera",
@ -20,6 +22,8 @@
"replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}",
"unshared {files}" => "stoppad delning {files}", "unshared {files}" => "stoppad delning {files}",
"deleted {files}" => "raderade {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.", "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.", "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.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.",
@ -30,7 +34,8 @@
"{count} files uploading" => "{count} filer laddas upp", "{count} files uploading" => "{count} filer laddas upp",
"Upload cancelled." => "Uppladdning avbruten.", "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.", "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", "{count} files scanned" => "{count} filer skannade",
"error while scanning" => "fel vid skanning", "error while scanning" => "fel vid skanning",
"Name" => "Namn", "Name" => "Namn",

View File

@ -29,7 +29,7 @@
"{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது", "{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது",
"Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது", "Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது",
"File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.", "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} files scanned" => "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது",
"error while scanning" => "வருடும் போதான வழு", "error while scanning" => "வருடும் போதான வழு",
"Name" => "பெயர்", "Name" => "பெயர்",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์", "{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์",
"Upload cancelled." => "การอัพโหลดถูกยกเลิก", "Upload cancelled." => "การอัพโหลดถูกยกเลิก",
"File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", "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} ไฟล์", "{count} files scanned" => "สแกนไฟล์แล้ว {count} ไฟล์",
"error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์", "error while scanning" => "พบข้อผิดพลาดในระหว่างการสแกนไฟล์",
"Name" => "ชื่อ", "Name" => "ชื่อ",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} dosya yükleniyor", "{count} files uploading" => "{count} dosya yükleniyor",
"Upload cancelled." => "Yükleme iptal edildi.", "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.", "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ı", "{count} files scanned" => "{count} dosya tarandı",
"error while scanning" => "tararamada hata oluşdu", "error while scanning" => "tararamada hata oluşdu",
"Name" => "Ad", "Name" => "Ad",

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} файлів завантажується", "{count} files uploading" => "{count} файлів завантажується",
"Upload cancelled." => "Завантаження перервано.", "Upload cancelled." => "Завантаження перервано.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", "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} файлів проскановано", "{count} files scanned" => "{count} файлів проскановано",
"error while scanning" => "помилка при скануванні", "error while scanning" => "помилка при скануванні",
"Name" => "Ім'я", "Name" => "Ім'я",

View File

@ -29,7 +29,7 @@
"{count} files uploading" => "{count} tập tin đang tải lên", "{count} files uploading" => "{count} tập tin đang tải lên",
"Upload cancelled." => "Hủy 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.", "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", "{count} files scanned" => "{count} tập tin đã được quét",
"error while scanning" => "lỗi trong khi quét", "error while scanning" => "lỗi trong khi quét",
"Name" => "Tên", "Name" => "Tên",

View File

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

View File

@ -30,7 +30,7 @@
"{count} files uploading" => "{count} 个文件上传中", "{count} files uploading" => "{count} 个文件上传中",
"Upload cancelled." => "上传已取消", "Upload cancelled." => "上传已取消",
"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "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} 个文件已扫描。", "{count} files scanned" => "{count} 个文件已扫描。",
"error while scanning" => "扫描时出错", "error while scanning" => "扫描时出错",
"Name" => "名称", "Name" => "名称",

View File

@ -1,30 +1,45 @@
<?php $TRANSLATIONS = array( <?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" => "無錯誤,檔案上傳成功", "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 exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:",
"The uploaded file was only partially uploaded" => "只有部分檔案被上傳", "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" => "無已上傳檔案", "No file was uploaded" => "無已上傳檔案",
"Missing a temporary folder" => "遺失暫存資料夾", "Missing a temporary folder" => "遺失暫存資料夾",
"Failed to write to disk" => "寫入硬碟失敗", "Failed to write to disk" => "寫入硬碟失敗",
"Not enough space available" => "沒有足夠的可用空間",
"Invalid directory." => "無效的資料夾。",
"Files" => "檔案", "Files" => "檔案",
"Unshare" => "取消共享", "Unshare" => "取消共享",
"Delete" => "刪除", "Delete" => "刪除",
"Rename" => "重新命名", "Rename" => "重新命名",
"{new_name} already exists" => "{new_name} 已經存在", "{new_name} already exists" => "{new_name} 已經存在",
"replace" => "取代", "replace" => "取代",
"suggest name" => "建議檔名",
"cancel" => "取消", "cancel" => "取消",
"replaced {new_name}" => "已取代 {new_name}", "replaced {new_name}" => "已取代 {new_name}",
"undo" => "復原", "undo" => "復原",
"replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "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", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0",
"Upload Error" => "上傳發生錯誤", "Upload Error" => "上傳發生錯誤",
"Close" => "關閉", "Close" => "關閉",
"Pending" => "等候中",
"1 file uploading" => "1 個檔案正在上傳", "1 file uploading" => "1 個檔案正在上傳",
"{count} files uploading" => "{count} 個檔案正在上傳", "{count} files uploading" => "{count} 個檔案正在上傳",
"Upload cancelled." => "上傳取消", "Upload cancelled." => "上傳取消",
"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中. 離開此頁面將會取消上傳.", "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" => "掃描時發生錯誤", "error while scanning" => "掃描時發生錯誤",
"Name" => "名稱", "Name" => "名稱",
"Size" => "大小", "Size" => "大小",
@ -34,22 +49,23 @@
"1 file" => "1 個檔案", "1 file" => "1 個檔案",
"{count} files" => "{count} 個檔案", "{count} files" => "{count} 個檔案",
"File handling" => "檔案處理", "File handling" => "檔案處理",
"Maximum upload size" => "最大上傳容量", "Maximum upload size" => "最大上傳檔案大小",
"max. possible: " => "最大允許: ", "max. possible: " => "最大允許",
"Needed for multi-file and folder downloads." => "針對多檔案和目錄下載是必填的", "Needed for multi-file and folder downloads." => "針對多檔案和目錄下載是必填的",
"Enable ZIP-download" => "啟用 Zip 下載", "Enable ZIP-download" => "啟用 Zip 下載",
"0 is unlimited" => "0代表沒有限制", "0 is unlimited" => "0代表沒有限制",
"Maximum input size for ZIP files" => "針對ZIP檔案最大輸入大小", "Maximum input size for ZIP files" => "針對 ZIP 檔案最大輸入大小",
"Save" => "儲存", "Save" => "儲存",
"New" => "新增", "New" => "新增",
"Text file" => "文字檔", "Text file" => "文字檔",
"Folder" => "資料夾", "Folder" => "資料夾",
"From link" => "從連結",
"Upload" => "上傳", "Upload" => "上傳",
"Cancel upload" => "取消上傳", "Cancel upload" => "取消上傳",
"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", "Nothing in here. Upload something!" => "沒有任何東西。請上傳內容",
"Download" => "下載", "Download" => "下載",
"Upload too large" => "上傳過大", "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." => "正在掃描檔案,請稍等。", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。",
"Current scanning" => "目前掃描" "Current scanning" => "目前掃描"
); );

View File

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

View File

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

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Encryption" => "সংকেতায়ন",
"Enable Encryption" => "সংকেতায়ন সক্রিয় কর",
"None" => "কোনটিই নয়",
"Exclude the following file types from encryption" => "সংকেতায়ন থেকে নিম্নোক্ত ধরণসমূহ বাদ দাও"
);

View File

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

View File

@ -1,6 +1,24 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Backend" => "প্রশাসক", "Access granted" => "অধিগমনের অনুমতি প্রদান করা হলো",
"Groups" => "গোষ্ঠী", "Error configuring Dropbox storage" => "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা ",
"Users" => "ব্যবহারকারিবৃন্দ", "Grant access" => "অধিগমনের অনুমতি প্রদান কর",
"Delete" => "মুছে ফেল" "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" => "রুট সনদপত্রটি আমদানি করুন"
); );

View File

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

View File

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

View File

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

View File

@ -1,6 +1,9 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Password" => "কূটশব্দ", "Password" => "কূটশব্দ",
"Submit" => "পাঠাও", "Submit" => "জমা দাও",
"%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন",
"%s shared the file %s with you" => "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন",
"Download" => "ডাউনলোড", "Download" => "ডাউনলোড",
"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়" "No preview available for" => "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়",
"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়"
); );

View File

@ -7,7 +7,7 @@ OC_App::loadApps();
// support will be removed in OC 5.0,a // support will be removed in OC 5.0,a
if (isset($_GET['token'])) { if (isset($_GET['token'])) {
unset($_GET['file']); 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(); $filepath = $qry->execute(array($_GET['token']))->fetchOne();
if(isset($filepath)) { if(isset($filepath)) {
$info = OC_FileCache_Cached::get($filepath, ''); $info = OC_FileCache_Cached::get($filepath, '');
@ -16,7 +16,9 @@ if (isset($_GET['token'])) {
} else { } else {
$_GET['file'] = $filepath; $_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); $path_parts = explode('/', $path, 5);
$user = $path_parts[1]; $user = $path_parts[1];
$intPath = '/'.$path_parts[4]; $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)); $result = $query->execute(array($user, $intPath));
$row = $result->fetchRow(); $row = $result->fetchRow();
$fileSource = $row['item_source']; $fileSource = $row['item_source'];
@ -69,7 +74,8 @@ if (isset($_GET['t'])) {
//if this is a reshare check the file owner also exists //if this is a reshare check the file owner also exists
if ($shareOwner != $fileOwner && ! OCP\User::userExists($fileOwner)) { 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'); header('HTTP/1.0 404 Not Found');
$tmpl = new OCP\Template('', '404', 'guest'); $tmpl = new OCP\Template('', '404', 'guest');
$tmpl->printPage(); $tmpl->printPage();
@ -134,7 +140,8 @@ if ($linkItem) {
// Check Password // Check Password
$forcePortable = (CRYPT_BLOWFISH != 1); $forcePortable = (CRYPT_BLOWFISH != 1);
$hasher = new PasswordHash(8, $forcePortable); $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 = new OCP\Template('files_sharing', 'authenticate', 'guest');
$tmpl->assign('URL', $url); $tmpl->assign('URL', $url);
$tmpl->assign('error', true); $tmpl->assign('error', true);
@ -145,19 +152,25 @@ if ($linkItem) {
$_SESSION['public_link_authenticated'] = $linkItem['id']; $_SESSION['public_link_authenticated'] = $linkItem['id'];
} }
} else { } 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'); header('HTTP/1.0 404 Not Found');
$tmpl = new OCP\Template('', '404', 'guest'); $tmpl = new OCP\Template('', '404', 'guest');
$tmpl->printPage(); $tmpl->printPage();
exit(); exit();
} }
// Check if item id is set in session
} else if (!isset($_SESSION['public_link_authenticated']) || $_SESSION['public_link_authenticated'] !== $linkItem['id']) { } else {
// Prompt for password // Check if item id is set in session
$tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest'); if (!isset($_SESSION['public_link_authenticated'])
$tmpl->assign('URL', $url); || $_SESSION['public_link_authenticated'] !== $linkItem['id']
$tmpl->printPage(); ) {
exit(); // 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')); $basePath = substr($pathAndUser['path'], strlen('/'.$fileOwner.'/files'));
@ -203,7 +216,9 @@ if ($linkItem) {
$getPath = ''; $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 // Show file list
if (OC_Filesystem::is_dir($path)) { if (OC_Filesystem::is_dir($path)) {
OCP\Util::addStyle('files', 'files'); OCP\Util::addStyle('files', 'files');
@ -260,13 +275,16 @@ if ($linkItem) {
$folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true)));
$tmpl->assign('folder', $folder->fetchPage(), false); $tmpl->assign('folder', $folder->fetchPage(), false);
$tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $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 { } else {
// Show file preview if viewer is available // Show file preview if viewer is available
if ($type == 'file') { if ($type == 'file') {
$tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&download'); $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files')
.$urlLinkIdentifiers.'&download');
} else { } 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(); $tmpl->printPage();

View File

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

View File

@ -1,3 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Enable" => "সক্রিয়" "Expire all versions" => "সমস্ত ভার্সন মেয়াদোত্তীর্ণ",
"History" => "ইতিহাস",
"Versions" => "ভার্সন",
"This will delete all existing backup versions of your files" => "এটি আপনার বিদ্যমান ফাইলের সমস্ত ব্যাক-আপ ভার্সন মুছে ফেলবে।",
"Files Versioning" => "ফাইল ভার্সন করা",
"Enable" => "সক্রিয় "
); );

View File

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

View File

@ -1,4 +1,37 @@
<?php $TRANSLATIONS = array( <?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" => "কূটশব্দ", "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" => "সহায়িকা" "Help" => "সহায়িকা"
); );

View File

@ -17,6 +17,7 @@
"Group Filter" => "A csoportok szűrője", "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.", "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\".", "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 User Tree" => "A felhasználói fa gyökere",
"Base Group Tree" => "A csoportfa gyökere", "Base Group Tree" => "A csoportfa gyökere",
"Group-Member association" => "A csoporttagság attribútuma", "Group-Member association" => "A csoporttagság attribútuma",

View File

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

View File

@ -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."
);

View File

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

View File

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

View File

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

View File

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

View File

@ -375,8 +375,15 @@ if(typeof localStorage !=='undefined' && localStorage !== null){
return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item)); return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item));
}, },
getItem:function(name){ getItem:function(name){
if(localStorage.getItem(OC.localStorage.namespace+name)===null){return null;} var item = localStorage.getItem(OC.localStorage.namespace+name);
return JSON.parse(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{ }else{
@ -647,7 +654,7 @@ $(document).ready(function(){
$('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true});
$('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true});
$('.password .action').tipsy({gravity:'se', 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}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true});
$('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.delete').tipsy({gravity: 'e', fade:true, live:true});
$('a.action').tipsy({gravity:'s', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true});

View File

@ -1,62 +1,19 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"This category already exists: " => "Категорията вече съществува:",
"No categories selected for deletion." => "Няма избрани категории за изтриване",
"Settings" => "Настройки", "Settings" => "Настройки",
"Cancel" => "Отказ", "seconds ago" => "преди секунди",
"No" => "Не", "1 minute ago" => "преди 1 минута",
"Yes" => "Да", "1 hour ago" => "преди 1 час",
"Ok" => "Добре", "today" => "днес",
"Error" => "Грешка", "yesterday" => "вчера",
"last month" => "последният месец",
"last year" => "последната година",
"years ago" => "последните години",
"Password" => "Парола", "Password" => "Парола",
"You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.",
"Username" => "Потребител",
"Request reset" => "Нулиране на заявка",
"Your password was reset" => "Вашата парола е нулирана",
"New password" => "Нова парола",
"Reset password" => "Нулиране на парола",
"Personal" => "Лични", "Personal" => "Лични",
"Users" => "Потребители", "Users" => "Потребители",
"Apps" => "Програми", "Apps" => "Приложения",
"Admin" => "Админ", "Admin" => "Админ",
"Help" => "Помощ", "Help" => "Помощ",
"Access forbidden" => "Достъпът е забранен",
"Cloud not found" => "облакът не намерен",
"Edit categories" => "Редактиране на категориите",
"Add" => "Добавяне", "Add" => "Добавяне",
"Create an <strong>admin account</strong>" => "Създаване на <strong>админ профил</strong>", "web services under your control" => "уеб услуги под Ваш контрол"
"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" => "следващо"
); );

View File

@ -1,12 +1,15 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"User %s shared a file with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন", "User %s shared a file with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন",
"User %s shared a folder 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." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।", "Category type not provided." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।",
"No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?", "No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?",
"This category already exists: " => "এই ক্যাটেগরিটি বিদ্যমানঃ", "This category already exists: " => "এই ক্যাটেগরিটি পূর্ব থেকেই বিদ্যমানঃ",
"Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।", "Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।",
"%s ID not provided." => "%s ID প্রদান করা হয় নি।",
"Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।", "Error adding %s to favorites." => "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।",
"No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি", "No categories selected for deletion." => "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি ",
"Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।", "Error removing %s from favorites." => "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।",
"Settings" => "নিয়ামকসমূহ", "Settings" => "নিয়ামকসমূহ",
"seconds ago" => "সেকেন্ড পূর্বে", "seconds ago" => "সেকেন্ড পূর্বে",
@ -22,8 +25,8 @@
"months ago" => "মাস পূর্বে", "months ago" => "মাস পূর্বে",
"last year" => "গত বছর", "last year" => "গত বছর",
"years ago" => "বছর পূর্বে", "years ago" => "বছর পূর্বে",
"Choose" => "নির্বাচ", "Choose" => "বেছে নিন",
"Cancel" => "বাতি", "Cancel" => "বাতি",
"No" => "না", "No" => "না",
"Yes" => "হ্যাঁ", "Yes" => "হ্যাঁ",
"Ok" => "তথাস্তু", "Ok" => "তথাস্তু",
@ -31,64 +34,67 @@
"Error" => "সমস্যা", "Error" => "সমস্যা",
"The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", "The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।",
"The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !", "The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !",
"Error while sharing" => "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে", "Error while sharing" => "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে ",
"Error while unsharing" => "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে", "Error while unsharing" => "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে",
"Error while changing permissions" => "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে", "Error while changing permissions" => "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে",
"Share with" => "যাদের সাথে ভাগাভাগি করবে", "Shared with you and the group {group} by {owner}" => "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন",
"Share with link" => "লিংক সহযোগে ভাগাভাগি", "Shared with you by {owner}" => "{owner} আপনার সাথে ভাগাভাগি করেছেন",
"Password protect" => "কূটশব্দদ্বারা সুরক্ষিত", "Share with" => "যাদের সাথে ভাগাভাগি করা হয়েছে",
"Share with link" => "লিংকের সাথে ভাগাভাগি কর",
"Password protect" => "কূটশব্দ সুরক্ষিত",
"Password" => "কূটশব্দ", "Password" => "কূটশব্দ",
"Email link to person" => "ব্যক্তির সাথে ই-মেইল যুক্ত কর", "Email link to person" => "ব্যক্তির সাথে ই-মেইল যুক্ত কর",
"Send" => "পাঠাও", "Send" => "পাঠাও",
"Set expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন", "Set expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন",
"Expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ", "Expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ",
"Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি কর", "Share via email:" => "ই-মেইলের মাধ্যমে ভাগাভাগি করুন",
"No people found" => "কোন ব্যক্তি খুঁজে পাওয়া গেল না", "No people found" => "কোন ব্যক্তি খুঁজে পাওয়া গেল না",
"Resharing is not allowed" => "পূনরায় ভাগাভাগি করার অনুমতি নেই", "Resharing is not allowed" => "পূনঃরায় ভাগাভাগি অনুমোদিত নয়",
"Unshare" => "ভাগাভাগি বাতিল", "Shared in {item} with {user}" => "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে",
"can edit" => "সম্পাদনা করতে পারবে", "Unshare" => "ভাগাভাগি বাতিল কর",
"access control" => "অধিগম্যতার নিয়ন্ত্রণ", "can edit" => "সম্পাদনা করতে পারবেন",
"create" => "তৈরি কর", "access control" => "অধিগম্যতা নিয়ন্ত্রণ",
"create" => "তৈরী করুন",
"update" => "পরিবর্ধন কর", "update" => "পরিবর্ধন কর",
"delete" => "মুছে ফেল", "delete" => "মুছে ফেল",
"share" => "ভাগাভাগি কর", "share" => "ভাগাভাগি কর",
"Password protected" => "কূটশব্দদ্বারা সুরক্ষিত", "Password protected" => "কূটশব্দদ্বারা সুরক্ষিত",
"Error unsetting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা", "Error unsetting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে",
"Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা", "Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে",
"Sending ..." => "পাঠানো হচ্ছে......", "Sending ..." => "পাঠানো হচ্ছে......",
"Email sent" => "ই-মেইল পাঠানো হয়েছে", "Email sent" => "ই-মেইল পাঠানো হয়েছে",
"ownCloud password reset" => "ownCloud কূটশব্দ পূনঃনির্ধারণ", "ownCloud password reset" => "ownCloud কূটশব্দ পূনঃনির্ধারণ",
"Use the following link to reset your password: {link}" => "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}", "Use the following link to reset your password: {link}" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}",
"You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।", "You will receive a link to reset your password via Email." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ",
"Reset email send." => "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।", "Reset email send." => "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।",
"Request failed!" => "অনুরোধ ব্যর্থ !", "Request failed!" => "অনুরোধ ব্যর্থ !",
"Username" => "ব্যবহারকারি", "Username" => "ব্যবহারকার",
"Request reset" => "পূনঃনির্ধারণের জন্য অনুরোধ", "Request reset" => "অনুরোধ পূনঃনির্ধারণ",
"Your password was reset" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে", "Your password was reset" => "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে",
"To login page" => "প্রবেশ পাতায়", "To login page" => "প্রবেশ পৃষ্ঠায়",
"New password" => "নতুন কূটশব্দ", "New password" => "নতুন কূটশব্দ",
"Reset password" => "কূটশব্দ পূনঃনির্ধারণ", "Reset password" => "কূটশব্দ পূনঃনির্ধারণ কর",
"Personal" => "ব্যক্তিগত", "Personal" => "ব্যক্তিগত",
"Users" => "ব্যবহারকারিবৃন্দ", "Users" => "ব্যবহারকার",
"Apps" => "অ্যাপস", "Apps" => "অ্যাপস",
"Admin" => "প্রশাস", "Admin" => "প্রশাস",
"Help" => "সহায়িকা", "Help" => "সহায়িকা",
"Access forbidden" => "অধিগমনের অনুমতি নেই", "Access forbidden" => "অধিগমনের অনুমতি নেই",
"Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", "Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না",
"Edit categories" => "ক্যাটেগরি সম্পাদনা", "Edit categories" => "ক্যাটেগরি সম্পাদনা",
"Add" => "যোগ কর", "Add" => "যোগ কর",
"Security Warning" => "নিরাপত্তাজনিত সতর্কতা", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা",
"Create an <strong>admin account</strong>" => "<strong>প্রশাসক একাউন্ট</strong> তৈরি কর", "Create an <strong>admin account</strong>" => "<strong>প্রশাসক একাউন্ট</strong> তৈরী করুন",
"Advanced" => "সুচারু", "Advanced" => "সুচারু",
"Data folder" => "ডাটা ফোল্ডার", "Data folder" => "ডাটা ফোল্ডার ",
"Configure the database" => "ডাটাবেজ কনফিগার কর", "Configure the database" => "ডাটাবেচ কনফিগার করুন",
"will be used" => "ব্যবহৃত হবে", "will be used" => "ব্যবহৃত হবে",
"Database user" => "ডাটাবেজ ব্যবহারকারি", "Database user" => "ডাটাবেজ ব্যবহারকার",
"Database password" => "ডাটাবেজ কূটশব্দ", "Database password" => "ডাটাবেজ কূটশব্দ",
"Database name" => "ডাটাবেজের নাম", "Database name" => "ডাটাবেজের নাম",
"Database tablespace" => "ডাটাবেজ টেবিলস্পেস", "Database tablespace" => "ডাটাবেজ টেবলস্পেস",
"Database host" => "ডাটাবেজ হোস্ট", "Database host" => "ডাটাবেজ হোস্ট",
"Finish setup" => "সেট-আপ সুসম্পন্ন কর", "Finish setup" => "সেটআপ সুসম্পন্ন কর",
"Sunday" => "রবিবার", "Sunday" => "রবিবার",
"Monday" => "সোমবার", "Monday" => "সোমবার",
"Tuesday" => "মঙ্গলবার", "Tuesday" => "মঙ্গলবার",
@ -103,19 +109,20 @@
"May" => "মে", "May" => "মে",
"June" => "জুন", "June" => "জুন",
"July" => "জুলাই", "July" => "জুলাই",
"August" => "অগা্ট", "August" => "অগা্ট",
"September" => "সেপ্টেম্বর", "September" => "সেপ্টেম্বর",
"October" => "অক্টোবর", "October" => "অক্টোবর",
"November" => "নভেম্বর", "November" => "নভেম্বর",
"December" => "ডিসেম্বর", "December" => "ডিসেম্বর",
"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়", "web services under your control" => "ওয়েব সার্ভিসের নিয়ন্ত্রণ আপনার হাতের মুঠোয়",
"Log out" => "প্রস্থান", "Log out" => "প্রস্থান",
"Lost your password?" => "আপনার কূটশব্দটি হারিয়েছেন ?", "Lost your password?" => "কূটশব্দ হারিয়েছেন?",
"remember" => "মনে রাখ", "remember" => "মনে রাখ",
"Log in" => "প্রবেশ", "Log in" => "প্রবেশ",
"You are logged out." => "আপনি প্রস্থান করেছেন", "You are logged out." => "আপনি প্রস্থান করেছেন",
"prev" => "পূর্ববর্তী", "prev" => "পূর্ববর্তী",
"next" => "পরবর্তী", "next" => "পরবর্তী",
"Updating ownCloud to version %s, this may take a while." => "%s ভার্সনে ownCloud পরিবর্ধন করা হচ্ছে, এজন্য কিছু সময় প্রয়োজন।",
"Security Warning!" => "নিরাপত্তাবিষয়ক সতর্কবাণী", "Security Warning!" => "নিরাপত্তাবিষয়ক সতর্কবাণী",
"Verify" => "যাচাই কর" "Verify" => "যাচাই কর"
); );

View File

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

View File

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

View File

@ -128,6 +128,7 @@
"You are logged out." => "Du wurdest abgemeldet.", "You are logged out." => "Du wurdest abgemeldet.",
"prev" => "Zurück", "prev" => "Zurück",
"next" => "Weiter", "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!", "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.", "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" "Verify" => "Bestätigen"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Sie wurden abgemeldet.", "You are logged out." => "Sie wurden abgemeldet.",
"prev" => "Zurück", "prev" => "Zurück",
"next" => "Weiter", "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!", "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.", "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" "Verify" => "Überprüfen"

View File

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

View File

@ -128,6 +128,7 @@
"You are logged out." => "Vous êtes désormais déconnecté.", "You are logged out." => "Vous êtes désormais déconnecté.",
"prev" => "précédent", "prev" => "précédent",
"next" => "suivant", "next" => "suivant",
"Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps.",
"Security Warning!" => "Alerte de sécurité !", "Security Warning!" => "Alerte de sécurité !",
"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Veuillez vérifier votre mot de passe. <br/>Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau.", "Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Veuillez vérifier votre mot de passe. <br/>Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau.",
"Verify" => "Vérification" "Verify" => "Vérification"

View File

@ -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 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", "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", "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:", "This category already exists: " => "Þessi flokkur er þegar til:",
"Object type not provided." => "Tegund ekki í boði.", "Object type not provided." => "Tegund ekki í boði.",
"%s ID not provided." => "%s ID ekki í boði.", "%s ID not provided." => "%s ID ekki í boði.",
@ -31,7 +31,7 @@
"Yes" => "", "Yes" => "",
"Ok" => "Í lagi", "Ok" => "Í lagi",
"The object type is not specified." => "Tegund ekki tilgreind", "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 app name is not specified." => "Nafn forrits ekki tilgreint",
"The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!", "The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!",
"Error while sharing" => "Villa við deilingu", "Error while sharing" => "Villa við deilingu",
@ -63,7 +63,7 @@
"Error setting expiration date" => "Villa við að setja gildistíma", "Error setting expiration date" => "Villa við að setja gildistíma",
"Sending ..." => "Sendi ...", "Sending ..." => "Sendi ...",
"Email sent" => "Tölvupóstur sendur", "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}", "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ð.", "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.", "Reset email send." => "Beiðni um endursetningu send.",
@ -78,9 +78,9 @@
"Users" => "Notendur", "Users" => "Notendur",
"Apps" => "Forrit", "Apps" => "Forrit",
"Admin" => "Vefstjórn", "Admin" => "Vefstjórn",
"Help" => "Help", "Help" => "Hlp",
"Access forbidden" => "Aðgangur bannaður", "Access forbidden" => "Aðgangur bannaður",
"Cloud not found" => "Skýið finnst eigi", "Cloud not found" => "Ský finnst ekki",
"Edit categories" => "Breyta flokkum", "Edit categories" => "Breyta flokkum",
"Add" => "Bæta", "Add" => "Bæta",
"Security Warning" => "Öryggis aðvörun", "Security Warning" => "Öryggis aðvörun",
@ -92,12 +92,12 @@
"Data folder" => "Gagnamappa", "Data folder" => "Gagnamappa",
"Configure the database" => "Stilla gagnagrunn", "Configure the database" => "Stilla gagnagrunn",
"will be used" => "verður notað", "will be used" => "verður notað",
"Database user" => "Notandi gagnagrunns", "Database user" => "Gagnagrunns notandi",
"Database password" => "Lykilorð gagnagrunns", "Database password" => "Gagnagrunns lykilorð",
"Database name" => "Nafn gagnagrunns", "Database name" => "Nafn gagnagrunns",
"Database tablespace" => "Töflusvæði gagnagrunns", "Database tablespace" => "Töflusvæði gagnagrunns",
"Database host" => "Netþjónn gagnagrunns", "Database host" => "Netþjónn gagnagrunns",
"Finish setup" => "Ljúka uppsetningu", "Finish setup" => "Virkja uppsetningu",
"Sunday" => "Sunnudagur", "Sunday" => "Sunnudagur",
"Monday" => "Mánudagur", "Monday" => "Mánudagur",
"Tuesday" => "Þriðjudagur", "Tuesday" => "Þriðjudagur",
@ -128,6 +128,7 @@
"You are logged out." => "Þú ert útskráð(ur).", "You are logged out." => "Þú ert útskráð(ur).",
"prev" => "fyrra", "prev" => "fyrra",
"next" => "næsta", "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!", "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.", "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" "Verify" => "Staðfesta"

View File

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

View File

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

View File

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

View File

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

View File

@ -128,6 +128,7 @@
"You are logged out." => "Wylogowano użytkownika.", "You are logged out." => "Wylogowano użytkownika.",
"prev" => "wstecz", "prev" => "wstecz",
"next" => "naprzód", "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!", "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.", "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" "Verify" => "Zweryfikowane"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Estás desconetado.", "You are logged out." => "Estás desconetado.",
"prev" => "anterior", "prev" => "anterior",
"next" => "seguinte", "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!", "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.", "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" "Verify" => "Verificar"

View File

@ -128,6 +128,7 @@
"You are logged out." => "Du är utloggad.", "You are logged out." => "Du är utloggad.",
"prev" => "föregående", "prev" => "föregående",
"next" => "nästa", "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!", "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.", "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" "Verify" => "Verifiera"

View File

@ -1,14 +1,22 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No category to add?" => "無分類添加?", "User %s shared a file with you" => "用戶 %s 與您分享了一個檔案",
"This category already exists: " => "此分類已經存在:", "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." => "不支援的物件類型", "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" => "設定", "Settings" => "設定",
"seconds ago" => "幾秒前", "seconds ago" => "幾秒前",
"1 minute ago" => "1 分鐘前", "1 minute ago" => "1 分鐘前",
"{minutes} minutes ago" => "{minutes} 分鐘前", "{minutes} minutes ago" => "{minutes} 分鐘前",
"1 hour ago" => "1 個小時前", "1 hour ago" => "1 個小時前",
"{hours} hours ago" => "{hours} 小時前", "{hours} hours ago" => "{hours} 小時前",
"today" => "今天", "today" => "今天",
"yesterday" => "昨天", "yesterday" => "昨天",
"{days} days ago" => "{days} 天前", "{days} days ago" => "{days} 天前",
@ -22,18 +30,26 @@
"No" => "No", "No" => "No",
"Yes" => "Yes", "Yes" => "Yes",
"Ok" => "Ok", "Ok" => "Ok",
"The object type is not specified." => "未指定物件類型。",
"Error" => "錯誤", "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 sharing" => "分享時發生錯誤",
"Error while unsharing" => "取消分享時發生錯誤", "Error while unsharing" => "取消分享時發生錯誤",
"Error while changing permissions" => "修改權限時發生錯誤",
"Shared with you and the group {group} by {owner}" => "{owner} 分享給您和 {group}",
"Shared with you by {owner}" => "{owner} 已經和您分享", "Shared with you by {owner}" => "{owner} 已經和您分享",
"Share with" => "與分享", "Share with" => "...分享",
"Share with link" => "使用連結分享", "Share with link" => "使用連結分享",
"Password protect" => "密碼保護", "Password protect" => "密碼保護",
"Password" => "密碼", "Password" => "密碼",
"Email link to person" => "將連結 email 給別人",
"Send" => "寄出",
"Set expiration date" => "設置到期日", "Set expiration date" => "設置到期日",
"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}", "Shared in {item} with {user}" => "已和 {user} 分享 {item}",
"Unshare" => "取消共享", "Unshare" => "取消共享",
"can edit" => "可編輯", "can edit" => "可編輯",
@ -42,15 +58,18 @@
"update" => "更新", "update" => "更新",
"delete" => "刪除", "delete" => "刪除",
"share" => "分享", "share" => "分享",
"Password protected" => "密碼保護", "Password protected" => "受密碼保護",
"Error unsetting expiration date" => "解除過期日設定失敗",
"Error setting expiration date" => "錯誤的到期日設定", "Error setting expiration date" => "錯誤的到期日設定",
"Sending ..." => "正在寄出...",
"Email sent" => "Email 已寄出",
"ownCloud password reset" => "ownCloud 密碼重設", "ownCloud password reset" => "ownCloud 密碼重設",
"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: (聯結) ", "Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼 {link}",
"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱",
"Reset email send." => "重設郵件已送出.", "Reset email send." => "重設郵件已送出",
"Request failed!" => "請求失敗!", "Request failed!" => "請求失敗",
"Username" => "使用者名稱", "Username" => "使用者名稱",
"Request reset" => "求重設", "Request reset" => "求重設",
"Your password was reset" => "你的密碼已重設", "Your password was reset" => "你的密碼已重設",
"To login page" => "至登入頁面", "To login page" => "至登入頁面",
"New password" => "新密碼", "New password" => "新密碼",
@ -60,12 +79,14 @@
"Apps" => "應用程式", "Apps" => "應用程式",
"Admin" => "管理者", "Admin" => "管理者",
"Help" => "幫助", "Help" => "幫助",
"Access forbidden" => "禁止存取", "Access forbidden" => "存取被拒",
"Cloud not found" => "未發現雲", "Cloud not found" => "未發現雲",
"Edit categories" => "編輯分類", "Edit categories" => "編輯分類",
"Add" => "", "Add" => "",
"Security Warning" => "安全性警告", "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>", "Create an <strong>admin account</strong>" => "建立一個<strong>管理者帳號</strong>",
"Advanced" => "進階", "Advanced" => "進階",
"Data folder" => "資料夾", "Data folder" => "資料夾",
@ -96,14 +117,19 @@
"October" => "十月", "October" => "十月",
"November" => "十一月", "November" => "十一月",
"December" => "十二月", "December" => "十二月",
"web services under your control" => "網路服務已在你控制", "web services under your control" => "網路服務在您控制之下",
"Log out" => "登出", "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" => "記住", "remember" => "記住",
"Log in" => "登入", "Log in" => "登入",
"You are logged out." => "你已登出", "You are logged out." => "你已登出",
"prev" => "上一頁", "prev" => "上一頁",
"next" => "下一頁", "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" => "驗證" "Verify" => "驗證"
); );

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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