Merge branch 'master' into decrypt_files_again

Conflicts:
	apps/files_encryption/tests/keymanager.php
This commit is contained in:
Bjoern Schiessle 2013-08-17 13:15:22 +02:00
commit cabe92ef12
1514 changed files with 24943 additions and 17041 deletions

View File

@ -35,7 +35,7 @@ $dir = $_GET["dir"];
$files_list = json_decode($files); $files_list = json_decode($files);
// in case we get only a single file // in case we get only a single file
if ($files_list === NULL ) { if (!is_array($files_list)) {
$files_list = array($files); $files_list = array($files);
} }

View File

@ -54,6 +54,8 @@ function progress($notification_code, $severity, $message, $message_code, $bytes
} }
} }
$target = $dir.'/'.$filename;
if($source) { if($source) {
if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') { if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') {
OCP\JSON::error(array("data" => array( "message" => "Not a valid source" ))); OCP\JSON::error(array("data" => array( "message" => "Not a valid source" )));
@ -62,7 +64,6 @@ if($source) {
$ctx = stream_context_create(null, array('notification' =>'progress')); $ctx = stream_context_create(null, array('notification' =>'progress'));
$sourceStream=fopen($source, 'rb', false, $ctx); $sourceStream=fopen($source, 'rb', false, $ctx);
$target=$dir.'/'.$filename;
$result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream);
if($result) { if($result) {
$meta = \OC\Files\Filesystem::getFileInfo($target); $meta = \OC\Files\Filesystem::getFileInfo($target);
@ -75,20 +76,24 @@ if($source) {
$eventSource->close(); $eventSource->close();
exit(); exit();
} else { } else {
$success = false;
if($content) { if($content) {
if(\OC\Files\Filesystem::file_put_contents($dir.'/'.$filename, $content)) { $success = \OC\Files\Filesystem::file_put_contents($target, $content);
$meta = \OC\Files\Filesystem::getFileInfo($dir.'/'.$filename); } else {
$id = $meta['fileid']; $success = \OC\Files\Filesystem::touch($target);
OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); }
exit();
} if($success) {
}elseif(\OC\Files\Filesystem::touch($dir . '/' . $filename)) { $meta = \OC\Files\Filesystem::getFileInfo($target);
$meta = \OC\Files\Filesystem::getFileInfo($dir.'/'.$filename);
$id = $meta['fileid']; $id = $meta['fileid'];
OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id, 'mime' => $meta['mimetype']))); $mime = $meta['mimetype'];
OCP\JSON::success(array('data' => array(
'id' => $id,
'mime' => $mime,
'content' => $content,
)));
exit(); exit();
} }
} }
OCP\JSON::error(array("data" => array( "message" => "Error when creating the file" ))); OCP\JSON::error(array("data" => array( "message" => "Error when creating the file" )));

View File

@ -0,0 +1,31 @@
<?php
if (count($argv) !== 2) {
echo "Usage:" . PHP_EOL;
echo " files:scan <user_id>" . PHP_EOL;
echo " will rescan all files of the given user" . PHP_EOL;
echo " files:scan --all" . PHP_EOL;
echo " will rescan all files of all known users" . PHP_EOL;
return;
}
function scanFiles($user) {
$scanner = new \OC\Files\Utils\Scanner($user);
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', function($path) {
echo "Scanning $path" . PHP_EOL;
});
$scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', function($path) {
echo "Scanning $path" . PHP_EOL;
});
$scanner->scan('');
}
if ($argv[1] === '--all') {
$users = OC_User::getUsers();
} else {
$users = array($argv[1]);
}
foreach ($users as $user) {
scanFiles($user);
}

View File

@ -24,7 +24,7 @@
#new>ul>li>p { cursor:pointer; } #new>ul>li>p { cursor:pointer; }
#new>ul>li>form>input { padding:0.3em; margin:-0.3em; } #new>ul>li>form>input { padding:0.3em; margin:-0.3em; }
#trash { height:17px; margin: 0 1em; z-index:1010; float: right; } #trash { margin: 0 1em; z-index:1010; float: right; }
#upload { #upload {
height:27px; padding:0; margin-left:0.2em; overflow:hidden; height:27px; padding:0; margin-left:0.2em; overflow:hidden;
@ -114,7 +114,7 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; }
position:relative; width:100%; position:relative; width:100%;
-webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms;
} }
#select_all { float:left; margin:.3em 0.6em 0 .5em; } #select_all { float:left; margin:.4em 0.6em 0 .5em; }
#uploadsize-message,#delete-confirm { display:none; } #uploadsize-message,#delete-confirm { display:none; }
/* File actions */ /* File actions */
@ -147,14 +147,14 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; }
display:none; display:none;
} }
#fileList tr:hover a.action, #fileList a.action.permanent { #fileList tr:hover a.action, #fileList a.action.permanent {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=.5)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=.5); filter: alpha(opacity=50);
opacity: .5; opacity: .5;
display:inline; display:inline;
} }
#fileList tr:hover a.action:hover { #fileList tr:hover a.action:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=1); filter: alpha(opacity=100);
opacity: 1; opacity: 1;
display:inline; display:inline;
} }

View File

@ -126,6 +126,12 @@ if ($needUpgrade) {
$publicUploadEnabled = 'no'; $publicUploadEnabled = 'no';
} }
$trashEnabled = \OCP\App::isEnabled('files_trashbin');
$trashEmpty = true;
if ($trashEnabled) {
$trashEmpty = \OCA\Files_Trashbin\Trashbin::isEmpty($user);
}
OCP\Util::addscript('files', 'fileactions'); OCP\Util::addscript('files', 'fileactions');
OCP\Util::addscript('files', 'files'); OCP\Util::addscript('files', 'files');
OCP\Util::addscript('files', 'keyboardshortcuts'); OCP\Util::addscript('files', 'keyboardshortcuts');
@ -136,7 +142,8 @@ if ($needUpgrade) {
$tmpl->assign('isCreatable', \OC\Files\Filesystem::isCreatable($dir . '/')); $tmpl->assign('isCreatable', \OC\Files\Filesystem::isCreatable($dir . '/'));
$tmpl->assign('permissions', $permissions); $tmpl->assign('permissions', $permissions);
$tmpl->assign('files', $files); $tmpl->assign('files', $files);
$tmpl->assign('trash', \OCP\App::isEnabled('files_trashbin')); $tmpl->assign('trash', $trashEnabled);
$tmpl->assign('trashEmpty', $trashEmpty);
$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize);
$tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize));
$tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true)));

View File

@ -65,7 +65,7 @@ var FileActions = {
FileActions.currentFile = parent; FileActions.currentFile = parent;
var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions());
var file = FileActions.getCurrentFile(); var file = FileActions.getCurrentFile();
if ($('tr').filterAttr('data-file', file).data('renaming')) { if ($('tr[data-file="'+file+'"]').data('renaming')) {
return; return;
} }
parent.children('a.name').append('<span class="fileactions" />'); parent.children('a.name').append('<span class="fileactions" />');
@ -123,14 +123,11 @@ var FileActions = {
img = img(file); img = img(file);
} }
if (typeof trashBinApp !== 'undefined' && trashBinApp) { if (typeof trashBinApp !== 'undefined' && trashBinApp) {
var html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete" />'; var html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete delete-icon" />';
} else { } else {
var html = '<a href="#" original-title="' + t('files', 'Delete') + '" class="action delete" />'; var html = '<a href="#" class="action delete delete-icon" />';
} }
var element = $(html); var element = $(html);
if (img) {
element.append($('<img class ="svg" src="' + img + '"/>'));
}
element.data('action', actions['Delete']); element.data('action', actions['Delete']);
element.on('click', {a: null, elem: parent, actionFunc: actions['Delete']}, actionHandler); element.on('click', {a: null, elem: parent, actionFunc: actions['Delete']}, actionHandler);
parent.parent().children().last().append(element); parent.parent().children().last().append(element);
@ -164,10 +161,11 @@ $(document).ready(function () {
window.location = OC.filePath('files', 'ajax', 'download.php') + '?files=' + encodeURIComponent(filename) + '&dir=' + encodeURIComponent($('#dir').val()); window.location = OC.filePath('files', 'ajax', 'download.php') + '?files=' + encodeURIComponent(filename) + '&dir=' + encodeURIComponent($('#dir').val());
}); });
} }
$('#fileList tr').each(function () { $('#fileList tr').each(function () {
FileActions.display($(this).children('td.filename')); FileActions.display($(this).children('td.filename'));
}); });
$('#fileList').trigger(jQuery.Event("fileActionsReady"));
}); });

View File

@ -15,7 +15,7 @@ var FileList={
// filename td // filename td
td = $('<td></td>').attr({ td = $('<td></td>').attr({
"class": "filename", "class": "filename",
"style": 'background-image:url('+iconurl+')' "style": 'background-image:url('+iconurl+'); background-size: 16px;'
}); });
td.append('<input type="checkbox" />'); td.append('<input type="checkbox" />');
var link_elem = $('<a></a>').attr({ var link_elem = $('<a></a>').attr({
@ -371,9 +371,7 @@ var FileList={
} }
for (var i=0; i<files.length; i++) { for (var i=0; i<files.length; i++) {
var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete"); var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete");
var oldHTML = deleteAction.html(); deleteAction.removeClass('delete-icon').addClass('progress-icon');
var newHTML = '<img class="move2trash" data-action="Delete" title="'+t('files', 'perform delete operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>';
deleteAction.html(newHTML);
} }
// Finish any existing actions // Finish any existing actions
if (FileList.lastAction) { if (FileList.lastAction) {
@ -392,10 +390,11 @@ var FileList={
files.removeClass('selected'); files.removeClass('selected');
}); });
procesSelection(); procesSelection();
checkTrashStatus();
} else { } else {
$.each(files,function(index,file) { $.each(files,function(index,file) {
var deleteAction = $('tr').filterAttr('data-file',file).children("td.date").children(".move2trash"); var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete");
deleteAction.html(oldHTML); deleteAction.removeClass('progress-icon').addClass('delete-icon');
}); });
} }
}); });
@ -451,13 +450,14 @@ $(document).ready(function(){
var currentUploads = parseInt(uploadtext.attr('currentUploads')); var currentUploads = parseInt(uploadtext.attr('currentUploads'));
currentUploads += 1; currentUploads += 1;
uploadtext.attr('currentUploads', currentUploads); uploadtext.attr('currentUploads', currentUploads);
var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads);
if(currentUploads === 1) { if(currentUploads === 1) {
var img = OC.imagePath('core', 'loading.gif'); var img = OC.imagePath('core', 'loading.gif');
data.context.find('td.filename').attr('style','background-image:url('+img+')'); data.context.find('td.filename').attr('style','background-image:url('+img+')');
uploadtext.text(t('files', '1 file uploading')); uploadtext.text(translatedText);
uploadtext.show(); uploadtext.show();
} else { } else {
uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); uploadtext.text(translatedText);
} }
} else { } else {
// add as stand-alone row to filelist // add as stand-alone row to filelist

View File

@ -135,7 +135,7 @@ $(document).ready(function() {
}); });
// Show trash bin // Show trash bin
$('#trash a').live('click', function() { $('#trash').on('click', function() {
window.location=OC.filePath('files_trashbin', '', 'index.php'); window.location=OC.filePath('files_trashbin', '', 'index.php');
}); });
@ -773,21 +773,13 @@ function procesSelection(){
$('#headerSize').text(humanFileSize(totalSize)); $('#headerSize').text(humanFileSize(totalSize));
var selection=''; var selection='';
if(selectedFolders.length>0){ if(selectedFolders.length>0){
if(selectedFolders.length==1){ selection += n('files', '%n folder', '%n folders', selectedFolders.length);
selection+=t('files','1 folder');
}else{
selection+=t('files','{count} folders',{count: selectedFolders.length});
}
if(selectedFiles.length>0){ if(selectedFiles.length>0){
selection+=' & '; selection+=' & ';
} }
} }
if(selectedFiles.length>0){ if(selectedFiles.length>0){
if(selectedFiles.length==1){ selection += n('files', '%n file', '%n files', selectedFiles.length);
selection+=t('files','1 file');
}else{
selection+=t('files','{count} files',{count: selectedFiles.length});
}
} }
$('#headerName>span.name').text(selection); $('#headerName>span.name').text(selection);
$('#modified').text(''); $('#modified').text('');
@ -859,3 +851,11 @@ function getUniqueName(name){
} }
return name; return name;
} }
function checkTrashStatus() {
$.post(OC.filePath('files_trashbin', 'ajax', 'isEmpty.php'), function(result){
if (result.data.isEmpty === false) {
$("input[type=button][id=trash]").removeAttr("disabled");
}
});
}

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم", "Could not move %s - File with this name already exists" => "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم",
"Could not move %s" => "فشل في نقل %s", "Could not move %s" => "فشل في نقل %s",
"No file was uploaded. Unknown error" => "لم يتم رفع أي ملف , خطأ غير معروف", "No file was uploaded. Unknown error" => "لم يتم رفع أي ملف , خطأ غير معروف",
@ -19,7 +20,6 @@
"Error" => "خطأ", "Error" => "خطأ",
"Share" => "شارك", "Share" => "شارك",
"Delete permanently" => "حذف بشكل دائم", "Delete permanently" => "حذف بشكل دائم",
"Delete" => "إلغاء",
"Rename" => "إعادة تسميه", "Rename" => "إعادة تسميه",
"Pending" => "قيد الانتظار", "Pending" => "قيد الانتظار",
"{new_name} already exists" => "{new_name} موجود مسبقا", "{new_name} already exists" => "{new_name} موجود مسبقا",
@ -28,8 +28,7 @@
"cancel" => "إلغاء", "cancel" => "إلغاء",
"replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}", "replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}",
"undo" => "تراجع", "undo" => "تراجع",
"perform delete operation" => "جاري تنفيذ عملية الحذف", "_Uploading %n file_::_Uploading %n files_" => array("","","","","",""),
"1 file uploading" => "جاري رفع 1 ملف",
"'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.", "'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.",
"File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", "File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها",
@ -40,10 +39,8 @@
"Name" => "اسم", "Name" => "اسم",
"Size" => "حجم", "Size" => "حجم",
"Modified" => "معدل", "Modified" => "معدل",
"1 folder" => "مجلد عدد 1", "_%n folder_::_%n folders_" => array("","","","","",""),
"{count} folders" => "{count} مجلدات", "_%n file_::_%n files_" => array("","","","","",""),
"1 file" => "ملف واحد",
"{count} files" => "{count} ملفات",
"Upload" => "رفع", "Upload" => "رفع",
"File handling" => "التعامل مع الملف", "File handling" => "التعامل مع الملف",
"Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها",
@ -63,9 +60,11 @@
"Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", "Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!",
"Download" => "تحميل", "Download" => "تحميل",
"Unshare" => "إلغاء مشاركة", "Unshare" => "إلغاء مشاركة",
"Delete" => "إلغاء",
"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" => "الفحص الحالي",
"Upgrading filesystem cache..." => "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..." "Upgrading filesystem cache..." => "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..."
); );
$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;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"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" => "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата.", "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" => "Файлът е качен частично", "The uploaded file was only partially uploaded" => "Файлът е качен частично",
@ -11,19 +12,17 @@
"Error" => "Грешка", "Error" => "Грешка",
"Share" => "Споделяне", "Share" => "Споделяне",
"Delete permanently" => "Изтриване завинаги", "Delete permanently" => "Изтриване завинаги",
"Delete" => "Изтриване",
"Rename" => "Преименуване", "Rename" => "Преименуване",
"Pending" => "Чакащо", "Pending" => "Чакащо",
"replace" => "препокриване", "replace" => "препокриване",
"cancel" => "отказ", "cancel" => "отказ",
"undo" => "възтановяване", "undo" => "възтановяване",
"_Uploading %n file_::_Uploading %n files_" => array("",""),
"Name" => "Име", "Name" => "Име",
"Size" => "Размер", "Size" => "Размер",
"Modified" => "Променено", "Modified" => "Променено",
"1 folder" => "1 папка", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} папки", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 файл",
"{count} files" => "{count} файла",
"Upload" => "Качване", "Upload" => "Качване",
"Maximum upload size" => "Максимален размер за качване", "Maximum upload size" => "Максимален размер за качване",
"0 is unlimited" => "Ползвайте 0 за без ограничения", "0 is unlimited" => "Ползвайте 0 за без ограничения",
@ -34,8 +33,10 @@
"Cancel upload" => "Спри качването", "Cancel upload" => "Спри качването",
"Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", "Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.",
"Download" => "Изтегляне", "Download" => "Изтегляне",
"Delete" => "Изтриване",
"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." => "Файловете се претърсват, изчакайте.",
"file" => "файл" "file" => "файл"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", "Could not move %s - File with this name already exists" => "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান",
"Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", "Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না",
"No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।", "No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।",
@ -18,7 +19,6 @@
"URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।", "URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।",
"Error" => "সমস্যা", "Error" => "সমস্যা",
"Share" => "ভাগাভাগি কর", "Share" => "ভাগাভাগি কর",
"Delete" => "মুছে",
"Rename" => "পূনঃনামকরণ", "Rename" => "পূনঃনামকরণ",
"Pending" => "মুলতুবি", "Pending" => "মুলতুবি",
"{new_name} already exists" => "{new_name} টি বিদ্যমান", "{new_name} already exists" => "{new_name} টি বিদ্যমান",
@ -27,7 +27,7 @@
"cancel" => "বাতিল", "cancel" => "বাতিল",
"replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", "replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে",
"undo" => "ক্রিয়া প্রত্যাহার", "undo" => "ক্রিয়া প্রত্যাহার",
"1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", "'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।",
"File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।",
@ -35,10 +35,8 @@
"Name" => "রাম", "Name" => "রাম",
"Size" => "আকার", "Size" => "আকার",
"Modified" => "পরিবর্তিত", "Modified" => "পরিবর্তিত",
"1 folder" => "১টি ফোল্ডার", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} টি ফোল্ডার", "_%n file_::_%n files_" => array("",""),
"1 file" => "১টি ফাইল",
"{count} files" => "{count} টি ফাইল",
"Upload" => "আপলোড", "Upload" => "আপলোড",
"File handling" => "ফাইল হ্যার্ডলিং", "File handling" => "ফাইল হ্যার্ডলিং",
"Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার",
@ -56,8 +54,10 @@
"Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !", "Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !",
"Download" => "ডাউনলোড", "Download" => "ডাউনলোড",
"Unshare" => "ভাগাভাগি বাতিল ", "Unshare" => "ভাগাভাগি বাতিল ",
"Delete" => "মুছে",
"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" => "বর্তমান স্ক্যানিং"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?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 - 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", "Could not move %s" => " No s'ha pogut moure %s",
"Unable to set upload directory." => "No es pot establir la carpeta de pujada.", "Unable to set upload directory." => "No es pot establir la carpeta de pujada.",
@ -23,7 +24,6 @@
"Error" => "Error", "Error" => "Error",
"Share" => "Comparteix", "Share" => "Comparteix",
"Delete permanently" => "Esborra permanentment", "Delete permanently" => "Esborra permanentment",
"Delete" => "Esborra",
"Rename" => "Reanomena", "Rename" => "Reanomena",
"Pending" => "Pendent", "Pending" => "Pendent",
"{new_name} already exists" => "{new_name} ja existeix", "{new_name} already exists" => "{new_name} ja existeix",
@ -32,8 +32,7 @@
"cancel" => "cancel·la", "cancel" => "cancel·la",
"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}",
"undo" => "desfés", "undo" => "desfés",
"perform delete operation" => "executa d'operació d'esborrar", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 fitxer pujant",
"files uploading" => "fitxers pujant", "files uploading" => "fitxers pujant",
"'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", "'.' 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.", "File name cannot be empty." => "El nom del fitxer no pot ser buit.",
@ -45,10 +44,8 @@
"Name" => "Nom", "Name" => "Nom",
"Size" => "Mida", "Size" => "Mida",
"Modified" => "Modificat", "Modified" => "Modificat",
"1 folder" => "1 carpeta", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} carpetes", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 fitxer",
"{count} files" => "{count} fitxers",
"%s could not be renamed" => "%s no es pot canviar el nom", "%s could not be renamed" => "%s no es pot canviar el nom",
"Upload" => "Puja", "Upload" => "Puja",
"File handling" => "Gestió de fitxers", "File handling" => "Gestió de fitxers",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!",
"Download" => "Baixa", "Download" => "Baixa",
"Unshare" => "Deixa de compartir", "Unshare" => "Deixa de compartir",
"Delete" => "Esborra",
"Upload too large" => "La pujada és massa gran", "Upload too large" => "La pujada és massa gran",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor",
"Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu", "Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu",
@ -79,3 +77,4 @@
"files" => "fitxers", "files" => "fitxers",
"Upgrading filesystem cache..." => "Actualitzant la memòria de cau del sistema de fitxers..." "Upgrading filesystem cache..." => "Actualitzant la memòria de cau del sistema de fitxers..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,12 +1,13 @@
<?php $TRANSLATIONS = array( <?php
"Could not move %s - File with this name already exists" => "Nelze přesunout %s - existuje soubor se stejným názvem", $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Nelze přesunout %s - již existuje soubor se stejným názvem",
"Could not move %s" => "Nelze přesunout %s", "Could not move %s" => "Nelze přesunout %s",
"Unable to set upload directory." => "Nelze nastavit adresář pro nahrané soubory.", "Unable to set upload directory." => "Nelze nastavit adresář pro nahrané soubory.",
"Invalid Token" => "Neplatný token", "Invalid Token" => "Neplatný token",
"No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba", "No file was uploaded. Unknown error" => "Žádný 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:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML",
"The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně", "The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně",
"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",
@ -14,16 +15,15 @@
"Not enough storage available" => "Nedostatek dostupného úložného prostoru", "Not enough storage available" => "Nedostatek dostupného úložného prostoru",
"Invalid directory." => "Neplatný adresář", "Invalid directory." => "Neplatný adresář",
"Files" => "Soubory", "Files" => "Soubory",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho 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 jeho velikost je 0 bajtů",
"Not enough space available" => "Nedostatek dostupného místa", "Not enough space available" => "Nedostatek volného místa",
"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 způsobí zrušení nahrávání.",
"URL cannot be empty." => "URL nemůže být prázdná", "URL cannot be empty." => "URL nemůže být prázdná.",
"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno",
"Error" => "Chyba", "Error" => "Chyba",
"Share" => "Sdílet", "Share" => "Sdílet",
"Delete permanently" => "Trvale odstranit", "Delete permanently" => "Trvale odstranit",
"Delete" => "Smazat",
"Rename" => "Přejmenovat", "Rename" => "Přejmenovat",
"Pending" => "Nevyřízené", "Pending" => "Nevyřízené",
"{new_name} already exists" => "{new_name} již existuje", "{new_name} already exists" => "{new_name} již existuje",
@ -31,24 +31,22 @@
"suggest name" => "navrhnout název", "suggest name" => "navrhnout název",
"cancel" => "zrušit", "cancel" => "zrušit",
"replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}",
"undo" => "zpět", "undo" => "vrátit zpět",
"perform delete operation" => "provést smazání", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "odesílá se 1 soubor",
"files uploading" => "soubory se odesílají", "files uploading" => "soubory se odesílají",
"'.' is an invalid file name." => "'.' je neplatným názvem souboru.", "'.' 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.", "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.",
"Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.",
"Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)",
"Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat.", "Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat.",
"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", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud",
"Name" => "Název", "Name" => "Název",
"Size" => "Velikost", "Size" => "Velikost",
"Modified" => "Upraveno", "Modified" => "Upraveno",
"1 folder" => "1 složka", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "{count} složky", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 soubor", "%s could not be renamed" => "%s nemůže být přejmenován",
"{count} files" => "{count} soubory",
"Upload" => "Odeslat", "Upload" => "Odeslat",
"File handling" => "Zacházení se soubory", "File handling" => "Zacházení se soubory",
"Maximum upload size" => "Maximální velikost pro odesílání", "Maximum upload size" => "Maximální velikost pro odesílání",
@ -68,11 +66,15 @@
"Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.",
"Download" => "Stáhnout", "Download" => "Stáhnout",
"Unshare" => "Zrušit sdílení", "Unshare" => "Zrušit sdílení",
"Delete" => "Smazat",
"Upload too large" => "Odesílaný soubor je příliš velký", "Upload too large" => "Odesílaný soubor je příliš velký",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.",
"Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.",
"Current scanning" => "Aktuální prohledávání", "Current scanning" => "Aktuální prohledávání",
"directory" => "adresář",
"directories" => "adresáře",
"file" => "soubor", "file" => "soubor",
"files" => "soubory", "files" => "soubory",
"Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..." "Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", "Could not move %s - File with this name already exists" => "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli",
"Could not move %s" => "Methwyd symud %s", "Could not move %s" => "Methwyd symud %s",
"No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", "No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.",
@ -20,7 +21,6 @@
"Error" => "Gwall", "Error" => "Gwall",
"Share" => "Rhannu", "Share" => "Rhannu",
"Delete permanently" => "Dileu'n barhaol", "Delete permanently" => "Dileu'n barhaol",
"Delete" => "Dileu",
"Rename" => "Ailenwi", "Rename" => "Ailenwi",
"Pending" => "I ddod", "Pending" => "I ddod",
"{new_name} already exists" => "{new_name} yn bodoli'n barod", "{new_name} already exists" => "{new_name} yn bodoli'n barod",
@ -29,8 +29,7 @@
"cancel" => "diddymu", "cancel" => "diddymu",
"replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}", "replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}",
"undo" => "dadwneud", "undo" => "dadwneud",
"perform delete operation" => "cyflawni gweithred dileu", "_Uploading %n file_::_Uploading %n files_" => array("","","",""),
"1 file uploading" => "1 ffeil yn llwytho i fyny",
"files uploading" => "ffeiliau'n llwytho i fyny", "files uploading" => "ffeiliau'n llwytho i fyny",
"'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.", "'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.",
"File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", "File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.",
@ -42,10 +41,8 @@
"Name" => "Enw", "Name" => "Enw",
"Size" => "Maint", "Size" => "Maint",
"Modified" => "Addaswyd", "Modified" => "Addaswyd",
"1 folder" => "1 blygell", "_%n folder_::_%n folders_" => array("","","",""),
"{count} folders" => "{count} plygell", "_%n file_::_%n files_" => array("","","",""),
"1 file" => "1 ffeil",
"{count} files" => "{count} ffeil",
"Upload" => "Llwytho i fyny", "Upload" => "Llwytho i fyny",
"File handling" => "Trafod ffeiliau", "File handling" => "Trafod ffeiliau",
"Maximum upload size" => "Maint mwyaf llwytho i fyny", "Maximum upload size" => "Maint mwyaf llwytho i fyny",
@ -65,9 +62,11 @@
"Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!", "Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!",
"Download" => "Llwytho i lawr", "Download" => "Llwytho i lawr",
"Unshare" => "Dad-rannu", "Unshare" => "Dad-rannu",
"Delete" => "Dileu",
"Upload too large" => "Maint llwytho i fyny'n rhy fawr", "Upload too large" => "Maint llwytho i fyny'n rhy fawr",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn.",
"Files are being scanned, please wait." => "Arhoswch, mae ffeiliau'n cael eu sganio.", "Files are being scanned, please wait." => "Arhoswch, mae ffeiliau'n cael eu sganio.",
"Current scanning" => "Sganio cyfredol", "Current scanning" => "Sganio cyfredol",
"Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..." "Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..."
); );
$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;";

View File

@ -1,6 +1,9 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s - File with this name already exists" => "Kunne ikke flytte %s - der findes allerede en fil med dette navn",
"Could not move %s" => "Kunne ikke flytte %s", "Could not move %s" => "Kunne ikke flytte %s",
"Unable to set upload directory." => "Ude af stand til at vælge upload mappe.",
"Invalid Token" => "Ugyldig Token ",
"No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.", "No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.",
"There is no error, the file uploaded with success" => "Der skete ingen fejl, filen blev succesfuldt uploadet", "There is no error, the file uploaded with success" => "Der skete ingen fejl, filen blev succesfuldt uploadet",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
@ -21,7 +24,6 @@
"Error" => "Fejl", "Error" => "Fejl",
"Share" => "Del", "Share" => "Del",
"Delete permanently" => "Slet permanent", "Delete permanently" => "Slet permanent",
"Delete" => "Slet",
"Rename" => "Omdøb", "Rename" => "Omdøb",
"Pending" => "Afventer", "Pending" => "Afventer",
"{new_name} already exists" => "{new_name} eksisterer allerede", "{new_name} already exists" => "{new_name} eksisterer allerede",
@ -30,8 +32,7 @@
"cancel" => "fortryd", "cancel" => "fortryd",
"replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}",
"undo" => "fortryd", "undo" => "fortryd",
"perform delete operation" => "udfør slet operation", "_Uploading %n file_::_Uploading %n files_" => array("Uploader %n fil","Uploader %n filer"),
"1 file uploading" => "1 fil uploades",
"files uploading" => "uploader filer", "files uploading" => "uploader filer",
"'.' is an invalid file name." => "'.' er et ugyldigt filnavn.", "'.' is an invalid file name." => "'.' er et ugyldigt filnavn.",
"File name cannot be empty." => "Filnavnet kan ikke stå tomt.", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.",
@ -43,10 +44,9 @@
"Name" => "Navn", "Name" => "Navn",
"Size" => "Størrelse", "Size" => "Størrelse",
"Modified" => "Ændret", "Modified" => "Ændret",
"1 folder" => "1 mappe", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"),
"{count} folders" => "{count} mapper", "_%n file_::_%n files_" => array("%n fil","%n filer"),
"1 file" => "1 fil", "%s could not be renamed" => "%s kunne ikke omdøbes",
"{count} files" => "{count} filer",
"Upload" => "Upload", "Upload" => "Upload",
"File handling" => "Filhåndtering", "File handling" => "Filhåndtering",
"Maximum upload size" => "Maksimal upload-størrelse", "Maximum upload size" => "Maksimal upload-størrelse",
@ -66,6 +66,7 @@
"Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!",
"Download" => "Download", "Download" => "Download",
"Unshare" => "Fjern deling", "Unshare" => "Fjern deling",
"Delete" => "Slet",
"Upload too large" => "Upload er for stor", "Upload too large" => "Upload er for stor",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server.",
"Files are being scanned, please wait." => "Filerne bliver indlæst, vent venligst.", "Files are being scanned, please wait." => "Filerne bliver indlæst, vent venligst.",
@ -76,3 +77,4 @@
"files" => "filer", "files" => "filer",
"Upgrading filesystem cache..." => "Opgraderer filsystems cachen..." "Upgrading filesystem cache..." => "Opgraderer filsystems cachen..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", "Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits",
"Could not move %s" => "Konnte %s nicht verschieben", "Could not move %s" => "Konnte %s nicht verschieben",
"Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.",
@ -23,7 +24,6 @@
"Error" => "Fehler", "Error" => "Fehler",
"Share" => "Teilen", "Share" => "Teilen",
"Delete permanently" => "Endgültig löschen", "Delete permanently" => "Endgültig löschen",
"Delete" => "Löschen",
"Rename" => "Umbenennen", "Rename" => "Umbenennen",
"Pending" => "Ausstehend", "Pending" => "Ausstehend",
"{new_name} already exists" => "{new_name} existiert bereits", "{new_name} already exists" => "{new_name} existiert bereits",
@ -32,8 +32,7 @@
"cancel" => "abbrechen", "cancel" => "abbrechen",
"replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}",
"undo" => "rückgängig machen", "undo" => "rückgängig machen",
"perform delete operation" => "Löschvorgang ausführen", "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden hochgeladen"),
"1 file uploading" => "1 Datei wird hochgeladen",
"files uploading" => "Dateien werden hoch geladen", "files uploading" => "Dateien werden hoch geladen",
"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.",
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.",
@ -45,10 +44,8 @@
"Name" => "Name", "Name" => "Name",
"Size" => "Größe", "Size" => "Größe",
"Modified" => "Geändert", "Modified" => "Geändert",
"1 folder" => "1 Ordner", "_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"),
"{count} folders" => "{count} Ordner", "_%n file_::_%n files_" => array("%n Datei","%n Dateien"),
"1 file" => "1 Datei",
"{count} files" => "{count} Dateien",
"%s could not be renamed" => "%s konnte nicht umbenannt werden", "%s could not be renamed" => "%s konnte nicht umbenannt werden",
"Upload" => "Hochladen", "Upload" => "Hochladen",
"File handling" => "Dateibehandlung", "File handling" => "Dateibehandlung",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!",
"Download" => "Herunterladen", "Download" => "Herunterladen",
"Unshare" => "Freigabe aufheben", "Unshare" => "Freigabe aufheben",
"Delete" => "Löschen",
"Upload too large" => "Der Upload ist zu groß", "Upload too large" => "Der Upload ist zu groß",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.",
@ -79,3 +77,4 @@
"files" => "Dateien", "files" => "Dateien",
"Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", "Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.",
"Could not move %s" => "Konnte %s nicht verschieben", "Could not move %s" => "Konnte %s nicht verschieben",
"Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.",
@ -23,7 +24,6 @@
"Error" => "Fehler", "Error" => "Fehler",
"Share" => "Teilen", "Share" => "Teilen",
"Delete permanently" => "Endgültig löschen", "Delete permanently" => "Endgültig löschen",
"Delete" => "Löschen",
"Rename" => "Umbenennen", "Rename" => "Umbenennen",
"Pending" => "Ausstehend", "Pending" => "Ausstehend",
"{new_name} already exists" => "{new_name} existiert bereits", "{new_name} already exists" => "{new_name} existiert bereits",
@ -32,8 +32,7 @@
"cancel" => "abbrechen", "cancel" => "abbrechen",
"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}",
"undo" => "rückgängig machen", "undo" => "rückgängig machen",
"perform delete operation" => "Löschvorgang ausführen", "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hoch geladen","%n Dateien werden hoch geladen"),
"1 file uploading" => "1 Datei wird hochgeladen",
"files uploading" => "Dateien werden hoch geladen", "files uploading" => "Dateien werden hoch geladen",
"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.",
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.",
@ -45,10 +44,8 @@
"Name" => "Name", "Name" => "Name",
"Size" => "Größe", "Size" => "Größe",
"Modified" => "Geändert", "Modified" => "Geändert",
"1 folder" => "1 Ordner", "_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"),
"{count} folders" => "{count} Ordner", "_%n file_::_%n files_" => array("%n Datei","%n Dateien"),
"1 file" => "1 Datei",
"{count} files" => "{count} Dateien",
"%s could not be renamed" => "%s konnte nicht umbenannt werden", "%s could not be renamed" => "%s konnte nicht umbenannt werden",
"Upload" => "Hochladen", "Upload" => "Hochladen",
"File handling" => "Dateibehandlung", "File handling" => "Dateibehandlung",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!", "Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!",
"Download" => "Herunterladen", "Download" => "Herunterladen",
"Unshare" => "Freigabe aufheben", "Unshare" => "Freigabe aufheben",
"Delete" => "Löschen",
"Upload too large" => "Der Upload ist zu groß", "Upload too large" => "Der Upload ist zu groß",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.",
@ -79,3 +77,4 @@
"files" => "Dateien", "files" => "Dateien",
"Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,6 +1,9 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s - File with this name already exists" => "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα",
"Could not move %s" => "Αδυναμία μετακίνησης του %s", "Could not move %s" => "Αδυναμία μετακίνησης του %s",
"Unable to set upload directory." => "Αδυναμία ορισμού καταλόγου αποστολής.",
"Invalid Token" => "Μη έγκυρο Token",
"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: " => "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini",
@ -21,7 +24,6 @@
"Error" => "Σφάλμα", "Error" => "Σφάλμα",
"Share" => "Διαμοιρασμός", "Share" => "Διαμοιρασμός",
"Delete permanently" => "Μόνιμη διαγραφή", "Delete permanently" => "Μόνιμη διαγραφή",
"Delete" => "Διαγραφή",
"Rename" => "Μετονομασία", "Rename" => "Μετονομασία",
"Pending" => "Εκκρεμεί", "Pending" => "Εκκρεμεί",
"{new_name} already exists" => "{new_name} υπάρχει ήδη", "{new_name} already exists" => "{new_name} υπάρχει ήδη",
@ -30,8 +32,7 @@
"cancel" => "ακύρωση", "cancel" => "ακύρωση",
"replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", "replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}",
"undo" => "αναίρεση", "undo" => "αναίρεση",
"perform delete operation" => "εκτέλεση της διαδικασίας διαγραφής", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 αρχείο ανεβαίνει",
"files uploading" => "αρχεία ανεβαίνουν", "files uploading" => "αρχεία ανεβαίνουν",
"'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", "'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.",
"File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", "File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.",
@ -43,10 +44,9 @@
"Name" => "Όνομα", "Name" => "Όνομα",
"Size" => "Μέγεθος", "Size" => "Μέγεθος",
"Modified" => "Τροποποιήθηκε", "Modified" => "Τροποποιήθηκε",
"1 folder" => "1 φάκελος", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} φάκελοι", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 αρχείο", "%s could not be renamed" => "Αδυναμία μετονομασίας του %s",
"{count} files" => "{count} αρχεία",
"Upload" => "Μεταφόρτωση", "Upload" => "Μεταφόρτωση",
"File handling" => "Διαχείριση αρχείων", "File handling" => "Διαχείριση αρχείων",
"Maximum upload size" => "Μέγιστο μέγεθος αποστολής", "Maximum upload size" => "Μέγιστο μέγεθος αποστολής",
@ -66,6 +66,7 @@
"Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!",
"Download" => "Λήψη", "Download" => "Λήψη",
"Unshare" => "Σταμάτημα διαμοιρασμού", "Unshare" => "Σταμάτημα διαμοιρασμού",
"Delete" => "Διαγραφή",
"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." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.",
@ -76,3 +77,4 @@
"files" => "αρχεία", "files" => "αρχεία",
"Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." "Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,3 +1,8 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"_Uploading %n file_::_Uploading %n files_" => array("",""),
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Download" => "Download" "Download" => "Download"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas", "Could not move %s - File with this name already exists" => "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas",
"Could not move %s" => "Ne eblis movi %s", "Could not move %s" => "Ne eblis movi %s",
"No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.", "No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.",
@ -21,7 +22,6 @@
"Error" => "Eraro", "Error" => "Eraro",
"Share" => "Kunhavigi", "Share" => "Kunhavigi",
"Delete permanently" => "Forigi por ĉiam", "Delete permanently" => "Forigi por ĉiam",
"Delete" => "Forigi",
"Rename" => "Alinomigi", "Rename" => "Alinomigi",
"Pending" => "Traktotaj", "Pending" => "Traktotaj",
"{new_name} already exists" => "{new_name} jam ekzistas", "{new_name} already exists" => "{new_name} jam ekzistas",
@ -30,8 +30,7 @@
"cancel" => "nuligi", "cancel" => "nuligi",
"replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", "replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}",
"undo" => "malfari", "undo" => "malfari",
"perform delete operation" => "plenumi forigan operacion", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 dosiero estas alŝutata",
"files uploading" => "dosieroj estas alŝutataj", "files uploading" => "dosieroj estas alŝutataj",
"'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", "'.' is an invalid file name." => "'.' ne estas valida dosiernomo.",
"File name cannot be empty." => "Dosiernomo devas ne malpleni.", "File name cannot be empty." => "Dosiernomo devas ne malpleni.",
@ -43,10 +42,8 @@
"Name" => "Nomo", "Name" => "Nomo",
"Size" => "Grando", "Size" => "Grando",
"Modified" => "Modifita", "Modified" => "Modifita",
"1 folder" => "1 dosierujo", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} dosierujoj", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 dosiero",
"{count} files" => "{count} dosierujoj",
"Upload" => "Alŝuti", "Upload" => "Alŝuti",
"File handling" => "Dosieradministro", "File handling" => "Dosieradministro",
"Maximum upload size" => "Maksimuma alŝutogrando", "Maximum upload size" => "Maksimuma alŝutogrando",
@ -66,6 +63,7 @@
"Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!",
"Download" => "Elŝuti", "Download" => "Elŝuti",
"Unshare" => "Malkunhavigi", "Unshare" => "Malkunhavigi",
"Delete" => "Forigi",
"Upload too large" => "Alŝuto tro larĝa", "Upload too large" => "Alŝuto tro larĝa",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.",
"Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.", "Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.",
@ -74,3 +72,4 @@
"files" => "dosieroj", "files" => "dosieroj",
"Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..." "Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "No se pudo mover %s - Un archivo con ese nombre ya existe.", "Could not move %s - File with this name already exists" => "No se pudo mover %s - Un archivo con ese nombre ya existe.",
"Could not move %s" => "No se pudo mover %s", "Could not move %s" => "No se pudo mover %s",
"Unable to set upload directory." => "Incapaz de crear directorio de subida.", "Unable to set upload directory." => "Incapaz de crear directorio de subida.",
@ -23,7 +24,6 @@
"Error" => "Error", "Error" => "Error",
"Share" => "Compartir", "Share" => "Compartir",
"Delete permanently" => "Eliminar permanentemente", "Delete permanently" => "Eliminar permanentemente",
"Delete" => "Eliminar",
"Rename" => "Renombrar", "Rename" => "Renombrar",
"Pending" => "Pendiente", "Pending" => "Pendiente",
"{new_name} already exists" => "{new_name} ya existe", "{new_name} already exists" => "{new_name} ya existe",
@ -32,8 +32,7 @@
"cancel" => "cancelar", "cancel" => "cancelar",
"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}",
"undo" => "deshacer", "undo" => "deshacer",
"perform delete operation" => "Realizar operación de borrado", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "subiendo 1 archivo",
"files uploading" => "subiendo archivos", "files uploading" => "subiendo archivos",
"'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", "'.' is an invalid file name." => "'.' no es un nombre de archivo válido.",
"File name cannot be empty." => "El nombre de archivo no puede estar vacío.", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.",
@ -45,10 +44,8 @@
"Name" => "Nombre", "Name" => "Nombre",
"Size" => "Tamaño", "Size" => "Tamaño",
"Modified" => "Modificado", "Modified" => "Modificado",
"1 folder" => "1 carpeta", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} carpetas", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 archivo",
"{count} files" => "{count} archivos",
"%s could not be renamed" => "%s no se pudo renombrar", "%s could not be renamed" => "%s no se pudo renombrar",
"Upload" => "Subir", "Upload" => "Subir",
"File handling" => "Manejo de archivos", "File handling" => "Manejo de archivos",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!", "Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!",
"Download" => "Descargar", "Download" => "Descargar",
"Unshare" => "Dejar de compartir", "Unshare" => "Dejar de compartir",
"Delete" => "Eliminar",
"Upload too large" => "Subida demasido grande", "Upload too large" => "Subida demasido grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.",
"Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", "Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.",
@ -79,3 +77,4 @@
"files" => "archivos", "files" => "archivos",
"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos" "Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "No se pudo mover %s - Un archivo con este nombre ya existe", "Could not move %s - File with this name already exists" => "No se pudo mover %s - Un archivo con este nombre ya existe",
"Could not move %s" => "No se pudo mover %s ", "Could not move %s" => "No se pudo mover %s ",
"Unable to set upload directory." => "No fue posible crear el directorio de subida.", "Unable to set upload directory." => "No fue posible crear el directorio de subida.",
@ -23,7 +24,6 @@
"Error" => "Error", "Error" => "Error",
"Share" => "Compartir", "Share" => "Compartir",
"Delete permanently" => "Borrar permanentemente", "Delete permanently" => "Borrar permanentemente",
"Delete" => "Borrar",
"Rename" => "Cambiar nombre", "Rename" => "Cambiar nombre",
"Pending" => "Pendientes", "Pending" => "Pendientes",
"{new_name} already exists" => "{new_name} ya existe", "{new_name} already exists" => "{new_name} ya existe",
@ -32,8 +32,7 @@
"cancel" => "cancelar", "cancel" => "cancelar",
"replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}", "replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}",
"undo" => "deshacer", "undo" => "deshacer",
"perform delete operation" => "Llevar a cabo borrado", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "Subiendo 1 archivo",
"files uploading" => "Subiendo archivos", "files uploading" => "Subiendo archivos",
"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.",
"File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", "File name cannot be empty." => "El nombre del archivo no puede quedar vacío.",
@ -45,10 +44,8 @@
"Name" => "Nombre", "Name" => "Nombre",
"Size" => "Tamaño", "Size" => "Tamaño",
"Modified" => "Modificado", "Modified" => "Modificado",
"1 folder" => "1 directorio", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} directorios", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 archivo",
"{count} files" => "{count} archivos",
"%s could not be renamed" => "No se pudo renombrar %s", "%s could not be renamed" => "No se pudo renombrar %s",
"Upload" => "Subir", "Upload" => "Subir",
"File handling" => "Tratamiento de archivos", "File handling" => "Tratamiento de archivos",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!", "Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!",
"Download" => "Descargar", "Download" => "Descargar",
"Unshare" => "Dejar de compartir", "Unshare" => "Dejar de compartir",
"Delete" => "Borrar",
"Upload too large" => "El tamaño del archivo que querés subir es demasiado grande", "Upload too large" => "El tamaño del archivo que querés subir es demasiado grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ",
"Files are being scanned, please wait." => "Se están escaneando los archivos, por favor esperá.", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor esperá.",
@ -79,3 +77,4 @@
"files" => "archivos", "files" => "archivos",
"Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" "Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s - File with this name already exists" => "Ei saa liigutada faili %s - samanimeline fail on juba olemas",
"Could not move %s" => "%s liigutamine ebaõnnestus", "Could not move %s" => "%s liigutamine ebaõnnestus",
"Unable to set upload directory." => "Üleslaadimiste kausta määramine ebaõnnestus.", "Unable to set upload directory." => "Üleslaadimiste kausta määramine ebaõnnestus.",
@ -23,7 +24,6 @@
"Error" => "Viga", "Error" => "Viga",
"Share" => "Jaga", "Share" => "Jaga",
"Delete permanently" => "Kustuta jäädavalt", "Delete permanently" => "Kustuta jäädavalt",
"Delete" => "Kustuta",
"Rename" => "Nimeta ümber", "Rename" => "Nimeta ümber",
"Pending" => "Ootel", "Pending" => "Ootel",
"{new_name} already exists" => "{new_name} on juba olemas", "{new_name} already exists" => "{new_name} on juba olemas",
@ -32,8 +32,7 @@
"cancel" => "loobu", "cancel" => "loobu",
"replaced {new_name} with {old_name}" => "asendas nime {old_name} nimega {new_name}", "replaced {new_name} with {old_name}" => "asendas nime {old_name} nimega {new_name}",
"undo" => "tagasi", "undo" => "tagasi",
"perform delete operation" => "teosta kustutamine", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 fail üleslaadimisel",
"files uploading" => "faili üleslaadimisel", "files uploading" => "faili üleslaadimisel",
"'.' is an invalid file name." => "'.' on vigane failinimi.", "'.' is an invalid file name." => "'.' on vigane failinimi.",
"File name cannot be empty." => "Faili nimi ei saa olla tühi.", "File name cannot be empty." => "Faili nimi ei saa olla tühi.",
@ -45,10 +44,8 @@
"Name" => "Nimi", "Name" => "Nimi",
"Size" => "Suurus", "Size" => "Suurus",
"Modified" => "Muudetud", "Modified" => "Muudetud",
"1 folder" => "1 kaust", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} kausta", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 fail",
"{count} files" => "{count} faili",
"%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus",
"Upload" => "Lae üles", "Upload" => "Lae üles",
"File handling" => "Failide käsitlemine", "File handling" => "Failide käsitlemine",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!",
"Download" => "Lae alla", "Download" => "Lae alla",
"Unshare" => "Lõpeta jagamine", "Unshare" => "Lõpeta jagamine",
"Delete" => "Kustuta",
"Upload too large" => "Üleslaadimine on liiga suur", "Upload too large" => "Üleslaadimine on liiga suur",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.",
"Files are being scanned, please wait." => "Faile skannitakse, palun oota.", "Files are being scanned, please wait." => "Faile skannitakse, palun oota.",
@ -79,3 +77,4 @@
"files" => "faili", "files" => "faili",
"Upgrading filesystem cache..." => "Failisüsteemi puhvri uuendamine..." "Upgrading filesystem cache..." => "Failisüsteemi puhvri uuendamine..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da", "Could not move %s - File with this name already exists" => "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da",
"Could not move %s" => "Ezin dira fitxategiak mugitu %s", "Could not move %s" => "Ezin dira fitxategiak mugitu %s",
"Unable to set upload directory." => "Ezin da igoera direktorioa ezarri.", "Unable to set upload directory." => "Ezin da igoera direktorioa ezarri.",
@ -23,7 +24,6 @@
"Error" => "Errorea", "Error" => "Errorea",
"Share" => "Elkarbanatu", "Share" => "Elkarbanatu",
"Delete permanently" => "Ezabatu betirako", "Delete permanently" => "Ezabatu betirako",
"Delete" => "Ezabatu",
"Rename" => "Berrizendatu", "Rename" => "Berrizendatu",
"Pending" => "Zain", "Pending" => "Zain",
"{new_name} already exists" => "{new_name} dagoeneko existitzen da", "{new_name} already exists" => "{new_name} dagoeneko existitzen da",
@ -32,8 +32,7 @@
"cancel" => "ezeztatu", "cancel" => "ezeztatu",
"replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du", "replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du",
"undo" => "desegin", "undo" => "desegin",
"perform delete operation" => "Ezabatu", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "fitxategi 1 igotzen",
"files uploading" => "fitxategiak igotzen", "files uploading" => "fitxategiak igotzen",
"'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", "'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.",
"File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", "File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.",
@ -45,10 +44,8 @@
"Name" => "Izena", "Name" => "Izena",
"Size" => "Tamaina", "Size" => "Tamaina",
"Modified" => "Aldatuta", "Modified" => "Aldatuta",
"1 folder" => "karpeta bat", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} karpeta", "_%n file_::_%n files_" => array("",""),
"1 file" => "fitxategi bat",
"{count} files" => "{count} fitxategi",
"%s could not be renamed" => "%s ezin da berrizendatu", "%s could not be renamed" => "%s ezin da berrizendatu",
"Upload" => "Igo", "Upload" => "Igo",
"File handling" => "Fitxategien kudeaketa", "File handling" => "Fitxategien kudeaketa",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!",
"Download" => "Deskargatu", "Download" => "Deskargatu",
"Unshare" => "Ez elkarbanatu", "Unshare" => "Ez elkarbanatu",
"Delete" => "Ezabatu",
"Upload too large" => "Igoera handiegia da", "Upload too large" => "Igoera handiegia da",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.",
"Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.", "Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.",
@ -79,3 +77,4 @@
"files" => "fitxategiak", "files" => "fitxategiak",
"Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..." "Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ", "Could not move %s - File with this name already exists" => "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ",
"Could not move %s" => "%s نمی تواند حرکت کند ", "Could not move %s" => "%s نمی تواند حرکت کند ",
"Unable to set upload directory." => "قادر به تنظیم پوشه آپلود نمی باشد.", "Unable to set upload directory." => "قادر به تنظیم پوشه آپلود نمی باشد.",
@ -23,7 +24,6 @@
"Error" => "خطا", "Error" => "خطا",
"Share" => "اشتراک‌گذاری", "Share" => "اشتراک‌گذاری",
"Delete permanently" => "حذف قطعی", "Delete permanently" => "حذف قطعی",
"Delete" => "حذف",
"Rename" => "تغییرنام", "Rename" => "تغییرنام",
"Pending" => "در انتظار", "Pending" => "در انتظار",
"{new_name} already exists" => "{نام _جدید} در حال حاضر وجود دارد.", "{new_name} already exists" => "{نام _جدید} در حال حاضر وجود دارد.",
@ -32,8 +32,7 @@
"cancel" => "لغو", "cancel" => "لغو",
"replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.", "replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.",
"undo" => "بازگشت", "undo" => "بازگشت",
"perform delete operation" => "انجام عمل حذف", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "1 پرونده آپلود شد.",
"files uploading" => "بارگذاری فایل ها", "files uploading" => "بارگذاری فایل ها",
"'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.", "'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.",
"File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", "File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.",
@ -45,10 +44,8 @@
"Name" => "نام", "Name" => "نام",
"Size" => "اندازه", "Size" => "اندازه",
"Modified" => "تاریخ", "Modified" => "تاریخ",
"1 folder" => "1 پوشه", "_%n folder_::_%n folders_" => array(""),
"{count} folders" => "{ شمار} پوشه ها", "_%n file_::_%n files_" => array(""),
"1 file" => "1 پرونده",
"{count} files" => "{ شمار } فایل ها",
"%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", "%s could not be renamed" => "%s نمیتواند تغییر نام دهد.",
"Upload" => "بارگزاری", "Upload" => "بارگزاری",
"File handling" => "اداره پرونده ها", "File handling" => "اداره پرونده ها",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.",
"Download" => "دانلود", "Download" => "دانلود",
"Unshare" => "لغو اشتراک", "Unshare" => "لغو اشتراک",
"Delete" => "حذف",
"Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)", "Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد",
"Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", "Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید",
@ -79,3 +77,4 @@
"files" => "پرونده ها", "files" => "پرونده ها",
"Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..." "Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Save" => "tallentaa" "Save" => "tallentaa"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?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 - 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", "Could not move %s" => "Kohteen %s siirto 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",
@ -20,7 +21,6 @@
"Error" => "Virhe", "Error" => "Virhe",
"Share" => "Jaa", "Share" => "Jaa",
"Delete permanently" => "Poista pysyvästi", "Delete permanently" => "Poista pysyvästi",
"Delete" => "Poista",
"Rename" => "Nimeä uudelleen", "Rename" => "Nimeä uudelleen",
"Pending" => "Odottaa", "Pending" => "Odottaa",
"{new_name} already exists" => "{new_name} on jo olemassa", "{new_name} already exists" => "{new_name} on jo olemassa",
@ -28,7 +28,7 @@
"suggest name" => "ehdota nimeä", "suggest name" => "ehdota nimeä",
"cancel" => "peru", "cancel" => "peru",
"undo" => "kumoa", "undo" => "kumoa",
"perform delete operation" => "suorita poistotoiminto", "_Uploading %n file_::_Uploading %n files_" => array("Lähetetään %n tiedosto","Lähetetään %n tiedostoa"),
"'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", "'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.",
"File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "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.",
@ -38,10 +38,8 @@
"Name" => "Nimi", "Name" => "Nimi",
"Size" => "Koko", "Size" => "Koko",
"Modified" => "Muokattu", "Modified" => "Muokattu",
"1 folder" => "1 kansio", "_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"),
"{count} folders" => "{count} kansiota", "_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"),
"1 file" => "1 tiedosto",
"{count} files" => "{count} tiedostoa",
"Upload" => "Lähetä", "Upload" => "Lähetä",
"File handling" => "Tiedostonhallinta", "File handling" => "Tiedostonhallinta",
"Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko",
@ -61,6 +59,7 @@
"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!",
"Download" => "Lataa", "Download" => "Lataa",
"Unshare" => "Peru jakaminen", "Unshare" => "Peru jakaminen",
"Delete" => "Poista",
"Upload too large" => "Lähetettävä tiedosto on liian suuri", "Upload too large" => "Lähetettävä tiedosto on liian suuri",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.",
"Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.", "Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.",
@ -71,3 +70,4 @@
"files" => "tiedostoa", "files" => "tiedostoa",
"Upgrading filesystem cache..." => "Päivitetään tiedostojärjestelmän välimuistia..." "Upgrading filesystem cache..." => "Päivitetään tiedostojärjestelmän välimuistia..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?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 - 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", "Could not move %s" => "Impossible de déplacer %s",
"Unable to set upload directory." => "Impossible de définir le dossier pour l'upload, charger.", "Unable to set upload directory." => "Impossible de définir le dossier pour l'upload, charger.",
@ -23,7 +24,6 @@
"Error" => "Erreur", "Error" => "Erreur",
"Share" => "Partager", "Share" => "Partager",
"Delete permanently" => "Supprimer de façon définitive", "Delete permanently" => "Supprimer de façon définitive",
"Delete" => "Supprimer",
"Rename" => "Renommer", "Rename" => "Renommer",
"Pending" => "En attente", "Pending" => "En attente",
"{new_name} already exists" => "{new_name} existe déjà", "{new_name} already exists" => "{new_name} existe déjà",
@ -32,8 +32,7 @@
"cancel" => "annuler", "cancel" => "annuler",
"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}",
"undo" => "annuler", "undo" => "annuler",
"perform delete operation" => "effectuer l'opération de suppression", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 fichier en cours d'envoi",
"files uploading" => "fichiers en cours d'envoi", "files uploading" => "fichiers en cours d'envoi",
"'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", "'.' 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.", "File name cannot be empty." => "Le nom de fichier ne peut être vide.",
@ -45,10 +44,8 @@
"Name" => "Nom", "Name" => "Nom",
"Size" => "Taille", "Size" => "Taille",
"Modified" => "Modifié", "Modified" => "Modifié",
"1 folder" => "1 dossier", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} dossiers", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 fichier",
"{count} files" => "{count} fichiers",
"%s could not be renamed" => "%s ne peut être renommé", "%s could not be renamed" => "%s ne peut être renommé",
"Upload" => "Envoyer", "Upload" => "Envoyer",
"File handling" => "Gestion des fichiers", "File handling" => "Gestion des fichiers",
@ -69,6 +66,7 @@
"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écharger", "Download" => "Télécharger",
"Unshare" => "Ne plus partager", "Unshare" => "Ne plus partager",
"Delete" => "Supprimer",
"Upload too large" => "Téléversement trop volumineux", "Upload too large" => "Téléversement 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.",
@ -79,3 +77,4 @@
"files" => "fichiers", "files" => "fichiers",
"Upgrading filesystem cache..." => "Mise à niveau du cache du système de fichier" "Upgrading filesystem cache..." => "Mise à niveau du cache du système de fichier"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Non se moveu %s - Xa existe un ficheiro con ese nome.", "Could not move %s - File with this name already exists" => "Non se moveu %s - Xa existe un ficheiro con ese nome.",
"Could not move %s" => "Non foi posíbel mover %s", "Could not move %s" => "Non foi posíbel mover %s",
"Unable to set upload directory." => "Non é posíbel configurar o directorio de envíos.", "Unable to set upload directory." => "Non é posíbel configurar o directorio de envíos.",
@ -23,7 +24,6 @@
"Error" => "Erro", "Error" => "Erro",
"Share" => "Compartir", "Share" => "Compartir",
"Delete permanently" => "Eliminar permanentemente", "Delete permanently" => "Eliminar permanentemente",
"Delete" => "Eliminar",
"Rename" => "Renomear", "Rename" => "Renomear",
"Pending" => "Pendentes", "Pending" => "Pendentes",
"{new_name} already exists" => "Xa existe un {new_name}", "{new_name} already exists" => "Xa existe un {new_name}",
@ -32,8 +32,7 @@
"cancel" => "cancelar", "cancel" => "cancelar",
"replaced {new_name} with {old_name}" => "substituír {new_name} por {old_name}", "replaced {new_name} with {old_name}" => "substituír {new_name} por {old_name}",
"undo" => "desfacer", "undo" => "desfacer",
"perform delete operation" => "realizar a operación de eliminación", "_Uploading %n file_::_Uploading %n files_" => array("Cargando %n ficheiro","Cargando %n ficheiros"),
"1 file uploading" => "Enviándose 1 ficheiro",
"files uploading" => "ficheiros enviándose", "files uploading" => "ficheiros enviándose",
"'.' is an invalid file name." => "«.» é un nome de ficheiro incorrecto", "'.' is an invalid file name." => "«.» é un nome de ficheiro incorrecto",
"File name cannot be empty." => "O nome de ficheiro non pode estar baleiro", "File name cannot be empty." => "O nome de ficheiro non pode estar baleiro",
@ -45,10 +44,8 @@
"Name" => "Nome", "Name" => "Nome",
"Size" => "Tamaño", "Size" => "Tamaño",
"Modified" => "Modificado", "Modified" => "Modificado",
"1 folder" => "1 cartafol", "_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"),
"{count} folders" => "{count} cartafoles", "_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"),
"1 file" => "1 ficheiro",
"{count} files" => "{count} ficheiros",
"%s could not be renamed" => "%s non pode cambiar de nome", "%s could not be renamed" => "%s non pode cambiar de nome",
"Upload" => "Enviar", "Upload" => "Enviar",
"File handling" => "Manexo de ficheiro", "File handling" => "Manexo de ficheiro",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Aquí non hai nada. Envíe algo.", "Nothing in here. Upload something!" => "Aquí non hai nada. Envíe algo.",
"Download" => "Descargar", "Download" => "Descargar",
"Unshare" => "Deixar de compartir", "Unshare" => "Deixar de compartir",
"Delete" => "Eliminar",
"Upload too large" => "Envío demasiado grande", "Upload too large" => "Envío demasiado grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor",
"Files are being scanned, please wait." => "Estanse analizando os ficheiros. Agarde.", "Files are being scanned, please wait." => "Estanse analizando os ficheiros. Agarde.",
@ -79,3 +77,4 @@
"files" => "ficheiros", "files" => "ficheiros",
"Upgrading filesystem cache..." => "Anovando a caché do sistema de ficheiros..." "Upgrading filesystem cache..." => "Anovando a caché do sistema de ficheiros..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים", "Could not move %s - File with this name already exists" => "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים",
"Could not move %s" => "לא ניתן להעביר את %s", "Could not move %s" => "לא ניתן להעביר את %s",
"No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.", "No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.",
@ -19,7 +20,6 @@
"Error" => "שגיאה", "Error" => "שגיאה",
"Share" => "שתף", "Share" => "שתף",
"Delete permanently" => "מחק לצמיתות", "Delete permanently" => "מחק לצמיתות",
"Delete" => "מחיקה",
"Rename" => "שינוי שם", "Rename" => "שינוי שם",
"Pending" => "ממתין", "Pending" => "ממתין",
"{new_name} already exists" => "{new_name} כבר קיים", "{new_name} already exists" => "{new_name} כבר קיים",
@ -28,17 +28,14 @@
"cancel" => "ביטול", "cancel" => "ביטול",
"replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}", "replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}",
"undo" => "ביטול", "undo" => "ביטול",
"perform delete operation" => "ביצוע פעולת מחיקה", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "קובץ אחד נשלח",
"files uploading" => "קבצים בהעלאה", "files uploading" => "קבצים בהעלאה",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.",
"Name" => "שם", "Name" => "שם",
"Size" => "גודל", "Size" => "גודל",
"Modified" => "זמן שינוי", "Modified" => "זמן שינוי",
"1 folder" => "תיקייה אחת", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} תיקיות", "_%n file_::_%n files_" => array("",""),
"1 file" => "קובץ אחד",
"{count} files" => "{count} קבצים",
"Upload" => "העלאה", "Upload" => "העלאה",
"File handling" => "טיפול בקבצים", "File handling" => "טיפול בקבצים",
"Maximum upload size" => "גודל העלאה מקסימלי", "Maximum upload size" => "גודל העלאה מקסימלי",
@ -56,6 +53,7 @@
"Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?",
"Download" => "הורדה", "Download" => "הורדה",
"Unshare" => "הסר שיתוף", "Unshare" => "הסר שיתוף",
"Delete" => "מחיקה",
"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." => "הקבצים נסרקים, נא להמתין.",
@ -63,3 +61,4 @@
"file" => "קובץ", "file" => "קובץ",
"files" => "קבצים" "files" => "קבצים"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,5 +1,10 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Error" => "त्रुटि", "Error" => "त्रुटि",
"Share" => "साझा करें", "Share" => "साझा करें",
"_Uploading %n file_::_Uploading %n files_" => array("",""),
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Save" => "सहेजें" "Save" => "सहेजें"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Nema pogreške, datoteka je poslana uspješno.", "There is no error, the file uploaded with success" => "Nema pogreške, datoteka je poslana uspješno.",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi",
"The uploaded file was only partially uploaded" => "Poslana datoteka je parcijalno poslana", "The uploaded file was only partially uploaded" => "Poslana datoteka je parcijalno poslana",
@ -11,18 +12,19 @@
"File upload is in progress. Leaving the page now will cancel the upload." => "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje.", "File upload is in progress. Leaving the page now will cancel the upload." => "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje.",
"Error" => "Greška", "Error" => "Greška",
"Share" => "Podijeli", "Share" => "Podijeli",
"Delete" => "Obriši",
"Rename" => "Promjeni ime", "Rename" => "Promjeni ime",
"Pending" => "U tijeku", "Pending" => "U tijeku",
"replace" => "zamjeni", "replace" => "zamjeni",
"suggest name" => "predloži ime", "suggest name" => "predloži ime",
"cancel" => "odustani", "cancel" => "odustani",
"undo" => "vrati", "undo" => "vrati",
"1 file uploading" => "1 datoteka se učitava", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"files uploading" => "datoteke se učitavaju", "files uploading" => "datoteke se učitavaju",
"Name" => "Ime", "Name" => "Ime",
"Size" => "Veličina", "Size" => "Veličina",
"Modified" => "Zadnja promjena", "Modified" => "Zadnja promjena",
"_%n folder_::_%n folders_" => array("","",""),
"_%n file_::_%n files_" => array("","",""),
"Upload" => "Učitaj", "Upload" => "Učitaj",
"File handling" => "datoteka za rukovanje", "File handling" => "datoteka za rukovanje",
"Maximum upload size" => "Maksimalna veličina prijenosa", "Maximum upload size" => "Maksimalna veličina prijenosa",
@ -39,6 +41,7 @@
"Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!", "Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!",
"Download" => "Preuzimanje", "Download" => "Preuzimanje",
"Unshare" => "Makni djeljenje", "Unshare" => "Makni djeljenje",
"Delete" => "Obriši",
"Upload too large" => "Prijenos je preobiman", "Upload too large" => "Prijenos je preobiman",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju.",
"Files are being scanned, please wait." => "Datoteke se skeniraju, molimo pričekajte.", "Files are being scanned, please wait." => "Datoteke se skeniraju, molimo pričekajte.",
@ -46,3 +49,4 @@
"file" => "datoteka", "file" => "datoteka",
"files" => "datoteke" "files" => "datoteke"
); );
$PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel", "Could not move %s - File with this name already exists" => "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel",
"Could not move %s" => "Nem sikerült %s áthelyezése", "Could not move %s" => "Nem sikerült %s áthelyezése",
"Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.", "Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.",
@ -23,7 +24,6 @@
"Error" => "Hiba", "Error" => "Hiba",
"Share" => "Megosztás", "Share" => "Megosztás",
"Delete permanently" => "Végleges törlés", "Delete permanently" => "Végleges törlés",
"Delete" => "Törlés",
"Rename" => "Átnevezés", "Rename" => "Átnevezés",
"Pending" => "Folyamatban", "Pending" => "Folyamatban",
"{new_name} already exists" => "{new_name} már létezik", "{new_name} already exists" => "{new_name} már létezik",
@ -32,8 +32,7 @@
"cancel" => "mégse", "cancel" => "mégse",
"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}",
"undo" => "visszavonás", "undo" => "visszavonás",
"perform delete operation" => "a törlés végrehajtása", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 fájl töltődik föl",
"files uploading" => "fájl töltődik föl", "files uploading" => "fájl töltődik föl",
"'.' is an invalid file name." => "'.' fájlnév érvénytelen.", "'.' is an invalid file name." => "'.' fájlnév érvénytelen.",
"File name cannot be empty." => "A fájlnév nem lehet semmi.", "File name cannot be empty." => "A fájlnév nem lehet semmi.",
@ -45,10 +44,8 @@
"Name" => "Név", "Name" => "Név",
"Size" => "Méret", "Size" => "Méret",
"Modified" => "Módosítva", "Modified" => "Módosítva",
"1 folder" => "1 mappa", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} mappa", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 fájl",
"{count} files" => "{count} fájl",
"%s could not be renamed" => "%s átnevezése nem sikerült", "%s could not be renamed" => "%s átnevezése nem sikerült",
"Upload" => "Feltöltés", "Upload" => "Feltöltés",
"File handling" => "Fájlkezelés", "File handling" => "Fájlkezelés",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", "Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!",
"Download" => "Letöltés", "Download" => "Letöltés",
"Unshare" => "A megosztás visszavonása", "Unshare" => "A megosztás visszavonása",
"Delete" => "Törlés",
"Upload too large" => "A feltöltés túl nagy", "Upload too large" => "A feltöltés túl nagy",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.",
"Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!", "Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!",
@ -79,3 +77,4 @@
"files" => "fájlok", "files" => "fájlok",
"Upgrading filesystem cache..." => "A fájlrendszer gyorsítótárának frissítése zajlik..." "Upgrading filesystem cache..." => "A fájlrendszer gyorsítótárának frissítése zajlik..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,5 +1,10 @@
<?php $TRANSLATIONS = array( <?php
"Delete" => "Ջնջել", $TRANSLATIONS = array(
"_Uploading %n file_::_Uploading %n files_" => array("",""),
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Save" => "Պահպանել", "Save" => "Պահպանել",
"Download" => "Բեռնել" "Download" => "Բեռնել",
"Delete" => "Ջնջել"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,14 +1,17 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"The uploaded file was only partially uploaded" => "Le file incargate solmente esseva incargate partialmente", "The uploaded file was only partially uploaded" => "Le file incargate solmente esseva incargate partialmente",
"No file was uploaded" => "Nulle file esseva incargate.", "No file was uploaded" => "Nulle file esseva incargate.",
"Missing a temporary folder" => "Manca un dossier temporari", "Missing a temporary folder" => "Manca un dossier temporari",
"Files" => "Files", "Files" => "Files",
"Error" => "Error", "Error" => "Error",
"Share" => "Compartir", "Share" => "Compartir",
"Delete" => "Deler", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"Name" => "Nomine", "Name" => "Nomine",
"Size" => "Dimension", "Size" => "Dimension",
"Modified" => "Modificate", "Modified" => "Modificate",
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Upload" => "Incargar", "Upload" => "Incargar",
"Maximum upload size" => "Dimension maxime de incargamento", "Maximum upload size" => "Dimension maxime de incargamento",
"Save" => "Salveguardar", "Save" => "Salveguardar",
@ -17,5 +20,7 @@
"Folder" => "Dossier", "Folder" => "Dossier",
"Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!",
"Download" => "Discargar", "Download" => "Discargar",
"Delete" => "Deler",
"Upload too large" => "Incargamento troppo longe" "Upload too large" => "Incargamento troppo longe"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada", "Could not move %s - File with this name already exists" => "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada",
"Could not move %s" => "Tidak dapat memindahkan %s", "Could not move %s" => "Tidak dapat memindahkan %s",
"No file was uploaded. Unknown error" => "Tidak ada berkas yang diunggah. Galat tidak dikenal.", "No file was uploaded. Unknown error" => "Tidak ada berkas yang diunggah. Galat tidak dikenal.",
@ -20,7 +21,6 @@
"Error" => "Galat", "Error" => "Galat",
"Share" => "Bagikan", "Share" => "Bagikan",
"Delete permanently" => "Hapus secara permanen", "Delete permanently" => "Hapus secara permanen",
"Delete" => "Hapus",
"Rename" => "Ubah nama", "Rename" => "Ubah nama",
"Pending" => "Menunggu", "Pending" => "Menunggu",
"{new_name} already exists" => "{new_name} sudah ada", "{new_name} already exists" => "{new_name} sudah ada",
@ -29,8 +29,7 @@
"cancel" => "batalkan", "cancel" => "batalkan",
"replaced {new_name} with {old_name}" => "mengganti {new_name} dengan {old_name}", "replaced {new_name} with {old_name}" => "mengganti {new_name} dengan {old_name}",
"undo" => "urungkan", "undo" => "urungkan",
"perform delete operation" => "Lakukan operasi penghapusan", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "1 berkas diunggah",
"files uploading" => "berkas diunggah", "files uploading" => "berkas diunggah",
"'.' is an invalid file name." => "'.' bukan nama berkas yang valid.", "'.' is an invalid file name." => "'.' bukan nama berkas yang valid.",
"File name cannot be empty." => "Nama berkas tidak boleh kosong.", "File name cannot be empty." => "Nama berkas tidak boleh kosong.",
@ -42,10 +41,8 @@
"Name" => "Nama", "Name" => "Nama",
"Size" => "Ukuran", "Size" => "Ukuran",
"Modified" => "Dimodifikasi", "Modified" => "Dimodifikasi",
"1 folder" => "1 folder", "_%n folder_::_%n folders_" => array(""),
"{count} folders" => "{count} folder", "_%n file_::_%n files_" => array(""),
"1 file" => "1 berkas",
"{count} files" => "{count} berkas",
"Upload" => "Unggah", "Upload" => "Unggah",
"File handling" => "Penanganan berkas", "File handling" => "Penanganan berkas",
"Maximum upload size" => "Ukuran pengunggahan maksimum", "Maximum upload size" => "Ukuran pengunggahan maksimum",
@ -65,6 +62,7 @@
"Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!",
"Download" => "Unduh", "Download" => "Unduh",
"Unshare" => "Batalkan berbagi", "Unshare" => "Batalkan berbagi",
"Delete" => "Hapus",
"Upload too large" => "Yang diunggah terlalu besar", "Upload too large" => "Yang diunggah terlalu besar",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.",
"Files are being scanned, please wait." => "Berkas sedang dipindai, silakan tunggu.", "Files are being scanned, please wait." => "Berkas sedang dipindai, silakan tunggu.",
@ -73,3 +71,4 @@
"files" => "berkas-berkas", "files" => "berkas-berkas",
"Upgrading filesystem cache..." => "Meningkatkan tembolok sistem berkas..." "Upgrading filesystem cache..." => "Meningkatkan tembolok sistem berkas..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?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 - 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", "Could not move %s" => "Gat ekki fært %s",
"No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", "No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.",
@ -18,7 +19,6 @@
"URL cannot be empty." => "Vefslóð má ekki vera tóm.", "URL cannot be empty." => "Vefslóð má ekki vera tóm.",
"Error" => "Villa", "Error" => "Villa",
"Share" => "Deila", "Share" => "Deila",
"Delete" => "Eyða",
"Rename" => "Endurskýra", "Rename" => "Endurskýra",
"Pending" => "Bíður", "Pending" => "Bíður",
"{new_name} already exists" => "{new_name} er þegar til", "{new_name} already exists" => "{new_name} er þegar til",
@ -27,7 +27,7 @@
"cancel" => "hætta við", "cancel" => "hætta við",
"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}",
"undo" => "afturkalla", "undo" => "afturkalla",
"1 file uploading" => "1 skrá innsend", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", "'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.",
"File name cannot be empty." => "Nafn skráar má ekki vera tómt", "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ð.",
@ -35,10 +35,8 @@
"Name" => "Nafn", "Name" => "Nafn",
"Size" => "Stærð", "Size" => "Stærð",
"Modified" => "Breytt", "Modified" => "Breytt",
"1 folder" => "1 mappa", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} möppur", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 skrá",
"{count} files" => "{count} skrár",
"Upload" => "Senda inn", "Upload" => "Senda inn",
"File handling" => "Meðhöndlun skrár", "File handling" => "Meðhöndlun skrár",
"Maximum upload size" => "Hámarks stærð innsendingar", "Maximum upload size" => "Hámarks stærð innsendingar",
@ -56,8 +54,10 @@
"Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!", "Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!",
"Download" => "Niðurhal", "Download" => "Niðurhal",
"Unshare" => "Hætta deilingu", "Unshare" => "Hætta deilingu",
"Delete" => "Eyða",
"Upload too large" => "Innsend skrá er 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"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?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 - File with this name already exists" => "Impossibile spostare %s - un file con questo nome esiste già",
"Could not move %s" => "Impossibile spostare %s", "Could not move %s" => "Impossibile spostare %s",
"Unable to set upload directory." => "Impossibile impostare una cartella di caricamento.", "Unable to set upload directory." => "Impossibile impostare una cartella di caricamento.",
@ -23,7 +24,6 @@
"Error" => "Errore", "Error" => "Errore",
"Share" => "Condividi", "Share" => "Condividi",
"Delete permanently" => "Elimina definitivamente", "Delete permanently" => "Elimina definitivamente",
"Delete" => "Elimina",
"Rename" => "Rinomina", "Rename" => "Rinomina",
"Pending" => "In corso", "Pending" => "In corso",
"{new_name} already exists" => "{new_name} esiste già", "{new_name} already exists" => "{new_name} esiste già",
@ -32,8 +32,7 @@
"cancel" => "annulla", "cancel" => "annulla",
"replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}",
"undo" => "annulla", "undo" => "annulla",
"perform delete operation" => "esegui l'operazione di eliminazione", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 file in fase di caricamento",
"files uploading" => "caricamento file", "files uploading" => "caricamento file",
"'.' is an invalid file name." => "'.' non è un nome file valido.", "'.' is an invalid file name." => "'.' non è un nome file valido.",
"File name cannot be empty." => "Il nome del file non può essere vuoto.", "File name cannot be empty." => "Il nome del file non può essere vuoto.",
@ -45,10 +44,8 @@
"Name" => "Nome", "Name" => "Nome",
"Size" => "Dimensione", "Size" => "Dimensione",
"Modified" => "Modificato", "Modified" => "Modificato",
"1 folder" => "1 cartella", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} cartelle", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 file",
"{count} files" => "{count} file",
"%s could not be renamed" => "%s non può essere rinominato", "%s could not be renamed" => "%s non può essere rinominato",
"Upload" => "Carica", "Upload" => "Carica",
"File handling" => "Gestione file", "File handling" => "Gestione file",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!",
"Download" => "Scarica", "Download" => "Scarica",
"Unshare" => "Rimuovi condivisione", "Unshare" => "Rimuovi condivisione",
"Delete" => "Elimina",
"Upload too large" => "Caricamento troppo grande", "Upload too large" => "Caricamento troppo grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.",
"Files are being scanned, please wait." => "Scansione dei file in corso, attendi", "Files are being scanned, please wait." => "Scansione dei file in corso, attendi",
@ -79,3 +77,4 @@
"files" => "file", "files" => "file",
"Upgrading filesystem cache..." => "Aggiornamento della cache del filesystem in corso..." "Upgrading filesystem cache..." => "Aggiornamento della cache del filesystem in corso..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s を移動できませんでした ― この名前のファイルはすでに存在します", "Could not move %s - File with this name already exists" => "%s を移動できませんでした ― この名前のファイルはすでに存在します",
"Could not move %s" => "%s を移動できませんでした", "Could not move %s" => "%s を移動できませんでした",
"Unable to set upload directory." => "アップロードディレクトリを設定出来ません。", "Unable to set upload directory." => "アップロードディレクトリを設定出来ません。",
@ -23,7 +24,6 @@
"Error" => "エラー", "Error" => "エラー",
"Share" => "共有", "Share" => "共有",
"Delete permanently" => "完全に削除する", "Delete permanently" => "完全に削除する",
"Delete" => "削除",
"Rename" => "名前の変更", "Rename" => "名前の変更",
"Pending" => "中断", "Pending" => "中断",
"{new_name} already exists" => "{new_name} はすでに存在しています", "{new_name} already exists" => "{new_name} はすでに存在しています",
@ -32,8 +32,7 @@
"cancel" => "キャンセル", "cancel" => "キャンセル",
"replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換",
"undo" => "元に戻す", "undo" => "元に戻す",
"perform delete operation" => "削除を実行", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "ファイルを1つアップロード中",
"files uploading" => "ファイルをアップロード中", "files uploading" => "ファイルをアップロード中",
"'.' is an invalid file name." => "'.' は無効なファイル名です。", "'.' is an invalid file name." => "'.' は無効なファイル名です。",
"File name cannot be empty." => "ファイル名を空にすることはできません。", "File name cannot be empty." => "ファイル名を空にすることはできません。",
@ -45,10 +44,8 @@
"Name" => "名前", "Name" => "名前",
"Size" => "サイズ", "Size" => "サイズ",
"Modified" => "変更", "Modified" => "変更",
"1 folder" => "1 フォルダ", "_%n folder_::_%n folders_" => array("%n個のフォルダ"),
"{count} folders" => "{count} フォルダ", "_%n file_::_%n files_" => array("%n個のファイル"),
"1 file" => "1 ファイル",
"{count} files" => "{count} ファイル",
"%s could not be renamed" => "%sの名前を変更できませんでした", "%s could not be renamed" => "%sの名前を変更できませんでした",
"Upload" => "アップロード", "Upload" => "アップロード",
"File handling" => "ファイル操作", "File handling" => "ファイル操作",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。",
"Download" => "ダウンロード", "Download" => "ダウンロード",
"Unshare" => "共有解除", "Unshare" => "共有解除",
"Delete" => "削除",
"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." => "ファイルをスキャンしています、しばらくお待ちください。",
@ -79,3 +77,4 @@
"files" => "ファイル", "files" => "ファイル",
"Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." "Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,9 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Files" => "ფაილები", "Files" => "ფაილები",
"_Uploading %n file_::_Uploading %n files_" => array(""),
"_%n folder_::_%n folders_" => array(""),
"_%n file_::_%n files_" => array(""),
"Download" => "გადმოწერა" "Download" => "გადმოწერა"
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s –ის გადატანა ვერ მოხერხდა ფაილი ამ სახელით უკვე არსებობს", "Could not move %s - File with this name already exists" => "%s –ის გადატანა ვერ მოხერხდა ფაილი ამ სახელით უკვე არსებობს",
"Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა", "Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა",
"No file was uploaded. Unknown error" => "ფაილი არ აიტვირთა. უცნობი შეცდომა", "No file was uploaded. Unknown error" => "ფაილი არ აიტვირთა. უცნობი შეცდომა",
@ -20,7 +21,6 @@
"Error" => "შეცდომა", "Error" => "შეცდომა",
"Share" => "გაზიარება", "Share" => "გაზიარება",
"Delete permanently" => "სრულად წაშლა", "Delete permanently" => "სრულად წაშლა",
"Delete" => "წაშლა",
"Rename" => "გადარქმევა", "Rename" => "გადარქმევა",
"Pending" => "მოცდის რეჟიმში", "Pending" => "მოცდის რეჟიმში",
"{new_name} already exists" => "{new_name} უკვე არსებობს", "{new_name} already exists" => "{new_name} უკვე არსებობს",
@ -29,8 +29,7 @@
"cancel" => "უარყოფა", "cancel" => "უარყოფა",
"replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", "replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით",
"undo" => "დაბრუნება", "undo" => "დაბრუნება",
"perform delete operation" => "მიმდინარეობს წაშლის ოპერაცია", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "1 ფაილის ატვირთვა",
"files uploading" => "ფაილები იტვირთება", "files uploading" => "ფაილები იტვირთება",
"'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.", "'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.",
"File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", "File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.",
@ -42,10 +41,8 @@
"Name" => "სახელი", "Name" => "სახელი",
"Size" => "ზომა", "Size" => "ზომა",
"Modified" => "შეცვლილია", "Modified" => "შეცვლილია",
"1 folder" => "1 საქაღალდე", "_%n folder_::_%n folders_" => array(""),
"{count} folders" => "{count} საქაღალდე", "_%n file_::_%n files_" => array(""),
"1 file" => "1 ფაილი",
"{count} files" => "{count} ფაილი",
"Upload" => "ატვირთვა", "Upload" => "ატვირთვა",
"File handling" => "ფაილის დამუშავება", "File handling" => "ფაილის დამუშავება",
"Maximum upload size" => "მაქსიმუმ ატვირთის ზომა", "Maximum upload size" => "მაქსიმუმ ატვირთის ზომა",
@ -65,9 +62,11 @@
"Nothing in here. Upload something!" => "აქ არაფერი არ არის. ატვირთე რამე!", "Nothing in here. Upload something!" => "აქ არაფერი არ არის. ატვირთე რამე!",
"Download" => "ჩამოტვირთვა", "Download" => "ჩამოტვირთვა",
"Unshare" => "გაუზიარებადი", "Unshare" => "გაუზიარებადი",
"Delete" => "წაშლა",
"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" => "მიმდინარე სკანირება",
"Upgrading filesystem cache..." => "ფაილური სისტემის ქეშის განახლება...." "Upgrading filesystem cache..." => "ფაილური სისტემის ქეშის განახლება...."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함", "Could not move %s - File with this name already exists" => "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함",
"Could not move %s" => "%s 항목을 이딩시키지 못하였음", "Could not move %s" => "%s 항목을 이딩시키지 못하였음",
"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다", "No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다",
@ -20,7 +21,6 @@
"Error" => "오류", "Error" => "오류",
"Share" => "공유", "Share" => "공유",
"Delete permanently" => "영원히 삭제", "Delete permanently" => "영원히 삭제",
"Delete" => "삭제",
"Rename" => "이름 바꾸기", "Rename" => "이름 바꾸기",
"Pending" => "대기 중", "Pending" => "대기 중",
"{new_name} already exists" => "{new_name}이(가) 이미 존재함", "{new_name} already exists" => "{new_name}이(가) 이미 존재함",
@ -29,8 +29,7 @@
"cancel" => "취소", "cancel" => "취소",
"replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨",
"undo" => "되돌리기", "undo" => "되돌리기",
"perform delete operation" => "삭제 작업중", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "파일 1개 업로드 중",
"files uploading" => "파일 업로드중", "files uploading" => "파일 업로드중",
"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", "'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.",
"File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", "File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.",
@ -42,10 +41,8 @@
"Name" => "이름", "Name" => "이름",
"Size" => "크기", "Size" => "크기",
"Modified" => "수정됨", "Modified" => "수정됨",
"1 folder" => "폴더 1개", "_%n folder_::_%n folders_" => array(""),
"{count} folders" => "폴더 {count}개", "_%n file_::_%n files_" => array(""),
"1 file" => "파일 1개",
"{count} files" => "파일 {count}개",
"Upload" => "업로드", "Upload" => "업로드",
"File handling" => "파일 처리", "File handling" => "파일 처리",
"Maximum upload size" => "최대 업로드 크기", "Maximum upload size" => "최대 업로드 크기",
@ -65,6 +62,7 @@
"Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!",
"Download" => "다운로드", "Download" => "다운로드",
"Unshare" => "공유 해제", "Unshare" => "공유 해제",
"Delete" => "삭제",
"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." => "파일을 검색하고 있습니다. 기다려 주십시오.",
@ -73,3 +71,4 @@
"files" => "파일", "files" => "파일",
"Upgrading filesystem cache..." => "파일 시스템 캐시 업그레이드 중..." "Upgrading filesystem cache..." => "파일 시스템 캐시 업그레이드 중..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,9 +1,14 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.",
"Error" => "هه‌ڵه", "Error" => "هه‌ڵه",
"_Uploading %n file_::_Uploading %n files_" => array("",""),
"Name" => "ناو", "Name" => "ناو",
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Upload" => "بارکردن", "Upload" => "بارکردن",
"Save" => "پاشکه‌وتکردن", "Save" => "پاشکه‌وتکردن",
"Folder" => "بوخچه", "Folder" => "بوخچه",
"Download" => "داگرتن" "Download" => "داگرتن"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Keen Feeler, Datei ass komplett ropgelueden ginn", "There is no error, the file uploaded with success" => "Keen Feeler, Datei ass komplett ropgelueden ginn",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass",
"The uploaded file was only partially uploaded" => "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn", "The uploaded file was only partially uploaded" => "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn",
@ -11,13 +12,15 @@
"File upload is in progress. Leaving the page now will cancel the upload." => "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", "File upload is in progress. Leaving the page now will cancel the upload." => "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.",
"Error" => "Fehler", "Error" => "Fehler",
"Share" => "Deelen", "Share" => "Deelen",
"Delete" => "Läschen",
"replace" => "ersetzen", "replace" => "ersetzen",
"cancel" => "ofbriechen", "cancel" => "ofbriechen",
"undo" => "réckgängeg man", "undo" => "réckgängeg man",
"_Uploading %n file_::_Uploading %n files_" => array("",""),
"Name" => "Numm", "Name" => "Numm",
"Size" => "Gréisst", "Size" => "Gréisst",
"Modified" => "Geännert", "Modified" => "Geännert",
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Upload" => "Eroplueden", "Upload" => "Eroplueden",
"File handling" => "Fichier handling", "File handling" => "Fichier handling",
"Maximum upload size" => "Maximum Upload Gréisst ", "Maximum upload size" => "Maximum Upload Gréisst ",
@ -34,6 +37,7 @@
"Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!", "Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!",
"Download" => "Download", "Download" => "Download",
"Unshare" => "Net méi deelen", "Unshare" => "Net méi deelen",
"Delete" => "Läschen",
"Upload too large" => "Upload ze grouss", "Upload too large" => "Upload ze grouss",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass.",
"Files are being scanned, please wait." => "Fichieren gi gescannt, war weg.", "Files are being scanned, please wait." => "Fichieren gi gescannt, war weg.",
@ -41,3 +45,4 @@
"file" => "Datei", "file" => "Datei",
"files" => "Dateien" "files" => "Dateien"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja", "Could not move %s - File with this name already exists" => "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja",
"Could not move %s" => "Nepavyko perkelti %s", "Could not move %s" => "Nepavyko perkelti %s",
"No file was uploaded. Unknown error" => "Failai nebuvo įkelti dėl nežinomos priežasties", "No file was uploaded. Unknown error" => "Failai nebuvo įkelti dėl nežinomos priežasties",
@ -21,7 +22,6 @@
"Error" => "Klaida", "Error" => "Klaida",
"Share" => "Dalintis", "Share" => "Dalintis",
"Delete permanently" => "Ištrinti negrįžtamai", "Delete permanently" => "Ištrinti negrįžtamai",
"Delete" => "Ištrinti",
"Rename" => "Pervadinti", "Rename" => "Pervadinti",
"Pending" => "Laukiantis", "Pending" => "Laukiantis",
"{new_name} already exists" => "{new_name} jau egzistuoja", "{new_name} already exists" => "{new_name} jau egzistuoja",
@ -30,8 +30,7 @@
"cancel" => "atšaukti", "cancel" => "atšaukti",
"replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}", "replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}",
"undo" => "anuliuoti", "undo" => "anuliuoti",
"perform delete operation" => "ištrinti", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "įkeliamas 1 failas",
"files uploading" => "įkeliami failai", "files uploading" => "įkeliami failai",
"'.' is an invalid file name." => "'.' yra neleidžiamas failo pavadinime.", "'.' is an invalid file name." => "'.' yra neleidžiamas failo pavadinime.",
"File name cannot be empty." => "Failo pavadinimas negali būti tuščias.", "File name cannot be empty." => "Failo pavadinimas negali būti tuščias.",
@ -43,10 +42,8 @@
"Name" => "Pavadinimas", "Name" => "Pavadinimas",
"Size" => "Dydis", "Size" => "Dydis",
"Modified" => "Pakeista", "Modified" => "Pakeista",
"1 folder" => "1 aplankalas", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "{count} aplankalai", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 failas",
"{count} files" => "{count} failai",
"Upload" => "Įkelti", "Upload" => "Įkelti",
"File handling" => "Failų tvarkymas", "File handling" => "Failų tvarkymas",
"Maximum upload size" => "Maksimalus įkeliamo failo dydis", "Maximum upload size" => "Maksimalus įkeliamo failo dydis",
@ -66,6 +63,7 @@
"Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!", "Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!",
"Download" => "Atsisiųsti", "Download" => "Atsisiųsti",
"Unshare" => "Nebesidalinti", "Unshare" => "Nebesidalinti",
"Delete" => "Ištrinti",
"Upload too large" => "Įkėlimui failas per didelis", "Upload too large" => "Įkėlimui failas per didelis",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje",
"Files are being scanned, please wait." => "Skenuojami failai, prašome palaukti.", "Files are being scanned, please wait." => "Skenuojami failai, prašome palaukti.",
@ -74,3 +72,4 @@
"files" => "failai", "files" => "failai",
"Upgrading filesystem cache..." => "Atnaujinamas sistemos kešavimas..." "Upgrading filesystem cache..." => "Atnaujinamas sistemos kešavimas..."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu", "Could not move %s - File with this name already exists" => "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu",
"Could not move %s" => "Nevarēja pārvietot %s", "Could not move %s" => "Nevarēja pārvietot %s",
"No file was uploaded. Unknown error" => "Netika augšupielādēta neviena datne. Nezināma kļūda", "No file was uploaded. Unknown error" => "Netika augšupielādēta neviena datne. Nezināma kļūda",
@ -20,7 +21,6 @@
"Error" => "Kļūda", "Error" => "Kļūda",
"Share" => "Dalīties", "Share" => "Dalīties",
"Delete permanently" => "Dzēst pavisam", "Delete permanently" => "Dzēst pavisam",
"Delete" => "Dzēst",
"Rename" => "Pārsaukt", "Rename" => "Pārsaukt",
"Pending" => "Gaida savu kārtu", "Pending" => "Gaida savu kārtu",
"{new_name} already exists" => "{new_name} jau eksistē", "{new_name} already exists" => "{new_name} jau eksistē",
@ -29,8 +29,7 @@
"cancel" => "atcelt", "cancel" => "atcelt",
"replaced {new_name} with {old_name}" => "aizvietoja {new_name} ar {old_name}", "replaced {new_name} with {old_name}" => "aizvietoja {new_name} ar {old_name}",
"undo" => "atsaukt", "undo" => "atsaukt",
"perform delete operation" => "veikt dzēšanas darbību", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "Augšupielādē 1 datni",
"'.' is an invalid file name." => "'.' ir nederīgs datnes nosaukums.", "'.' is an invalid file name." => "'.' ir nederīgs datnes nosaukums.",
"File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.", "File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.",
@ -41,10 +40,8 @@
"Name" => "Nosaukums", "Name" => "Nosaukums",
"Size" => "Izmērs", "Size" => "Izmērs",
"Modified" => "Mainīts", "Modified" => "Mainīts",
"1 folder" => "1 mape", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "{count} mapes", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 datne",
"{count} files" => "{count} datnes",
"Upload" => "Augšupielādēt", "Upload" => "Augšupielādēt",
"File handling" => "Datņu pārvaldība", "File handling" => "Datņu pārvaldība",
"Maximum upload size" => "Maksimālais datņu augšupielādes apjoms", "Maximum upload size" => "Maksimālais datņu augšupielādes apjoms",
@ -64,6 +61,7 @@
"Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!",
"Download" => "Lejupielādēt", "Download" => "Lejupielādēt",
"Unshare" => "Pārtraukt dalīšanos", "Unshare" => "Pārtraukt dalīšanos",
"Delete" => "Dzēst",
"Upload too large" => "Datne ir par lielu, lai to augšupielādētu", "Upload too large" => "Datne ir par lielu, lai to augšupielādētu",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu",
"Files are being scanned, please wait." => "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet.", "Files are being scanned, please wait." => "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet.",
@ -72,3 +70,4 @@
"files" => "faili", "files" => "faili",
"Upgrading filesystem cache..." => "Uzlabo datņu sistēmas kešatmiņu..." "Upgrading filesystem cache..." => "Uzlabo datņu sistēmas kešatmiņu..."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"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: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:",
@ -14,7 +15,6 @@
"URL cannot be empty." => "Адресата неможе да биде празна.", "URL cannot be empty." => "Адресата неможе да биде празна.",
"Error" => "Грешка", "Error" => "Грешка",
"Share" => "Сподели", "Share" => "Сподели",
"Delete" => "Избриши",
"Rename" => "Преименувај", "Rename" => "Преименувај",
"Pending" => "Чека", "Pending" => "Чека",
"{new_name} already exists" => "{new_name} веќе постои", "{new_name} already exists" => "{new_name} веќе постои",
@ -23,15 +23,13 @@
"cancel" => "откажи", "cancel" => "откажи",
"replaced {new_name} with {old_name}" => "заменета {new_name} со {old_name}", "replaced {new_name} with {old_name}" => "заменета {new_name} со {old_name}",
"undo" => "врати", "undo" => "врати",
"1 file uploading" => "1 датотека се подига", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.",
"Name" => "Име", "Name" => "Име",
"Size" => "Големина", "Size" => "Големина",
"Modified" => "Променето", "Modified" => "Променето",
"1 folder" => "1 папка", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} папки", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 датотека",
"{count} files" => "{count} датотеки",
"Upload" => "Подигни", "Upload" => "Подигни",
"File handling" => "Ракување со датотеки", "File handling" => "Ракување со датотеки",
"Maximum upload size" => "Максимална големина за подигање", "Maximum upload size" => "Максимална големина за подигање",
@ -49,6 +47,7 @@
"Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!", "Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!",
"Download" => "Преземи", "Download" => "Преземи",
"Unshare" => "Не споделувај", "Unshare" => "Не споделувај",
"Delete" => "Избриши",
"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." => "Се скенираат датотеки, ве молам почекајте.",
@ -56,3 +55,4 @@
"file" => "датотека", "file" => "датотека",
"files" => "датотеки" "files" => "датотеки"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "Tiada fail dimuatnaik. Ralat tidak diketahui.", "No file was uploaded. Unknown error" => "Tiada fail dimuatnaik. Ralat tidak diketahui.",
"There is no error, the file uploaded with success" => "Tiada ralat berlaku, fail berjaya dimuatnaik", "There is no error, the file uploaded with success" => "Tiada ralat berlaku, fail berjaya dimuatnaik",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML",
@ -11,13 +12,15 @@
"Upload cancelled." => "Muatnaik dibatalkan.", "Upload cancelled." => "Muatnaik dibatalkan.",
"Error" => "Ralat", "Error" => "Ralat",
"Share" => "Kongsi", "Share" => "Kongsi",
"Delete" => "Padam",
"Pending" => "Dalam proses", "Pending" => "Dalam proses",
"replace" => "ganti", "replace" => "ganti",
"cancel" => "Batal", "cancel" => "Batal",
"_Uploading %n file_::_Uploading %n files_" => array(""),
"Name" => "Nama", "Name" => "Nama",
"Size" => "Saiz", "Size" => "Saiz",
"Modified" => "Dimodifikasi", "Modified" => "Dimodifikasi",
"_%n folder_::_%n folders_" => array(""),
"_%n file_::_%n files_" => array(""),
"Upload" => "Muat naik", "Upload" => "Muat naik",
"File handling" => "Pengendalian fail", "File handling" => "Pengendalian fail",
"Maximum upload size" => "Saiz maksimum muat naik", "Maximum upload size" => "Saiz maksimum muat naik",
@ -33,6 +36,7 @@
"Cancel upload" => "Batal muat naik", "Cancel upload" => "Batal muat naik",
"Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!", "Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!",
"Download" => "Muat turun", "Download" => "Muat turun",
"Delete" => "Padam",
"Upload too large" => "Muatnaik terlalu besar", "Upload too large" => "Muatnaik terlalu besar",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server",
"Files are being scanned, please wait." => "Fail sedang diimbas, harap bersabar.", "Files are being scanned, please wait." => "Fail sedang diimbas, harap bersabar.",
@ -40,3 +44,4 @@
"file" => "fail", "file" => "fail",
"files" => "fail" "files" => "fail"
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,9 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Files" => "ဖိုင်များ", "Files" => "ဖိုင်များ",
"_Uploading %n file_::_Uploading %n files_" => array(""),
"_%n folder_::_%n folders_" => array(""),
"_%n file_::_%n files_" => array(""),
"Download" => "ဒေါင်းလုတ်" "Download" => "ဒေါင်းလုတ်"
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Kan ikke flytte %s - En fil med samme navn finnes allerede", "Could not move %s - File with this name already exists" => "Kan ikke flytte %s - En fil med samme navn finnes allerede",
"Could not move %s" => "Kunne ikke flytte %s", "Could not move %s" => "Kunne ikke flytte %s",
"Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.", "Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.",
@ -22,7 +23,6 @@
"Error" => "Feil", "Error" => "Feil",
"Share" => "Del", "Share" => "Del",
"Delete permanently" => "Slett permanent", "Delete permanently" => "Slett permanent",
"Delete" => "Slett",
"Rename" => "Omdøp", "Rename" => "Omdøp",
"Pending" => "Ventende", "Pending" => "Ventende",
"{new_name} already exists" => "{new_name} finnes allerede", "{new_name} already exists" => "{new_name} finnes allerede",
@ -31,8 +31,7 @@
"cancel" => "avbryt", "cancel" => "avbryt",
"replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}", "replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}",
"undo" => "angre", "undo" => "angre",
"perform delete operation" => "utfør sletting", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 fil lastes opp",
"files uploading" => "filer lastes opp", "files uploading" => "filer lastes opp",
"'.' is an invalid file name." => "'.' er et ugyldig filnavn.", "'.' is an invalid file name." => "'.' er et ugyldig filnavn.",
"File name cannot be empty." => "Filnavn kan ikke være tomt.", "File name cannot be empty." => "Filnavn kan ikke være tomt.",
@ -44,10 +43,8 @@
"Name" => "Navn", "Name" => "Navn",
"Size" => "Størrelse", "Size" => "Størrelse",
"Modified" => "Endret", "Modified" => "Endret",
"1 folder" => "1 mappe", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} mapper", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 fil",
"{count} files" => "{count} filer",
"Upload" => "Last opp", "Upload" => "Last opp",
"File handling" => "Filhåndtering", "File handling" => "Filhåndtering",
"Maximum upload size" => "Maksimum opplastingsstørrelse", "Maximum upload size" => "Maksimum opplastingsstørrelse",
@ -67,6 +64,7 @@
"Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!",
"Download" => "Last ned", "Download" => "Last ned",
"Unshare" => "Avslutt deling", "Unshare" => "Avslutt deling",
"Delete" => "Slett",
"Upload too large" => "Filen er for stor", "Upload too large" => "Filen er for stor",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.",
"Files are being scanned, please wait." => "Skanner etter filer, vennligst vent.", "Files are being scanned, please wait." => "Skanner etter filer, vennligst vent.",
@ -77,3 +75,4 @@
"files" => "filer", "files" => "filer",
"Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..." "Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam", "Could not move %s - File with this name already exists" => "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam",
"Could not move %s" => "Kon %s niet verplaatsen", "Could not move %s" => "Kon %s niet verplaatsen",
"Unable to set upload directory." => "Kan upload map niet instellen.", "Unable to set upload directory." => "Kan upload map niet instellen.",
@ -23,7 +24,6 @@
"Error" => "Fout", "Error" => "Fout",
"Share" => "Delen", "Share" => "Delen",
"Delete permanently" => "Verwijder definitief", "Delete permanently" => "Verwijder definitief",
"Delete" => "Verwijder",
"Rename" => "Hernoem", "Rename" => "Hernoem",
"Pending" => "In behandeling", "Pending" => "In behandeling",
"{new_name} already exists" => "{new_name} bestaat al", "{new_name} already exists" => "{new_name} bestaat al",
@ -32,8 +32,7 @@
"cancel" => "annuleren", "cancel" => "annuleren",
"replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}",
"undo" => "ongedaan maken", "undo" => "ongedaan maken",
"perform delete operation" => "uitvoeren verwijderactie", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 bestand wordt ge-upload",
"files uploading" => "bestanden aan het uploaden", "files uploading" => "bestanden aan het uploaden",
"'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", "'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.",
"File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", "File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.",
@ -45,10 +44,8 @@
"Name" => "Naam", "Name" => "Naam",
"Size" => "Grootte", "Size" => "Grootte",
"Modified" => "Aangepast", "Modified" => "Aangepast",
"1 folder" => "1 map", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} mappen", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 bestand",
"{count} files" => "{count} bestanden",
"%s could not be renamed" => "%s kon niet worden hernoemd", "%s could not be renamed" => "%s kon niet worden hernoemd",
"Upload" => "Uploaden", "Upload" => "Uploaden",
"File handling" => "Bestand", "File handling" => "Bestand",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!",
"Download" => "Downloaden", "Download" => "Downloaden",
"Unshare" => "Stop met delen", "Unshare" => "Stop met delen",
"Delete" => "Verwijder",
"Upload too large" => "Upload is te groot", "Upload too large" => "Upload is te groot",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.",
"Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.", "Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.",
@ -79,3 +77,4 @@
"files" => "bestanden", "files" => "bestanden",
"Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..." "Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Klarte ikkje flytta %s det finst allereie ei fil med dette namnet", "Could not move %s - File with this name already exists" => "Klarte ikkje flytta %s det finst allereie ei fil med dette namnet",
"Could not move %s" => "Klarte ikkje flytta %s", "Could not move %s" => "Klarte ikkje flytta %s",
"No file was uploaded. Unknown error" => "Ingen filer lasta opp. Ukjend feil", "No file was uploaded. Unknown error" => "Ingen filer lasta opp. Ukjend feil",
@ -21,7 +22,6 @@
"Error" => "Feil", "Error" => "Feil",
"Share" => "Del", "Share" => "Del",
"Delete permanently" => "Slett for godt", "Delete permanently" => "Slett for godt",
"Delete" => "Slett",
"Rename" => "Endra namn", "Rename" => "Endra namn",
"Pending" => "Under vegs", "Pending" => "Under vegs",
"{new_name} already exists" => "{new_name} finst allereie", "{new_name} already exists" => "{new_name} finst allereie",
@ -30,8 +30,7 @@
"cancel" => "avbryt", "cancel" => "avbryt",
"replaced {new_name} with {old_name}" => "bytte ut {new_name} med {old_name}", "replaced {new_name} with {old_name}" => "bytte ut {new_name} med {old_name}",
"undo" => "angre", "undo" => "angre",
"perform delete operation" => "utfør sletting", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 fil lastar opp",
"files uploading" => "filer lastar opp", "files uploading" => "filer lastar opp",
"'.' is an invalid file name." => "«.» er eit ugyldig filnamn.", "'.' is an invalid file name." => "«.» er eit ugyldig filnamn.",
"File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", "File name cannot be empty." => "Filnamnet kan ikkje vera tomt.",
@ -43,10 +42,8 @@
"Name" => "Namn", "Name" => "Namn",
"Size" => "Storleik", "Size" => "Storleik",
"Modified" => "Endra", "Modified" => "Endra",
"1 folder" => "1 mappe", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} mapper", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 fil",
"{count} files" => "{count} filer",
"Upload" => "Last opp", "Upload" => "Last opp",
"File handling" => "Filhandtering", "File handling" => "Filhandtering",
"Maximum upload size" => "Maksimal opplastingsstorleik", "Maximum upload size" => "Maksimal opplastingsstorleik",
@ -66,9 +63,11 @@
"Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!",
"Download" => "Last ned", "Download" => "Last ned",
"Unshare" => "Udel", "Unshare" => "Udel",
"Delete" => "Slett",
"Upload too large" => "For stor opplasting", "Upload too large" => "For stor opplasting",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren.",
"Files are being scanned, please wait." => "Skannar filer, ver venleg og vent.", "Files are being scanned, please wait." => "Skannar filer, ver venleg og vent.",
"Current scanning" => "Køyrande skanning", "Current scanning" => "Køyrande skanning",
"Upgrading filesystem cache..." => "Oppgraderer mellomlageret av filsystemet …" "Upgrading filesystem cache..." => "Oppgraderer mellomlageret av filsystemet …"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Amontcargament capitat, pas d'errors", "There is no error, the file uploaded with success" => "Amontcargament capitat, pas d'errors",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML",
"The uploaded file was only partially uploaded" => "Lo fichièr foguèt pas completament amontcargat", "The uploaded file was only partially uploaded" => "Lo fichièr foguèt pas completament amontcargat",
@ -11,18 +12,19 @@
"File upload is in progress. Leaving the page now will cancel the upload." => "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. ", "File upload is in progress. Leaving the page now will cancel the upload." => "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. ",
"Error" => "Error", "Error" => "Error",
"Share" => "Parteja", "Share" => "Parteja",
"Delete" => "Escafa",
"Rename" => "Torna nomenar", "Rename" => "Torna nomenar",
"Pending" => "Al esperar", "Pending" => "Al esperar",
"replace" => "remplaça", "replace" => "remplaça",
"suggest name" => "nom prepausat", "suggest name" => "nom prepausat",
"cancel" => "anulla", "cancel" => "anulla",
"undo" => "defar", "undo" => "defar",
"1 file uploading" => "1 fichièr al amontcargar", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"files uploading" => "fichièrs al amontcargar", "files uploading" => "fichièrs al amontcargar",
"Name" => "Nom", "Name" => "Nom",
"Size" => "Talha", "Size" => "Talha",
"Modified" => "Modificat", "Modified" => "Modificat",
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Upload" => "Amontcarga", "Upload" => "Amontcarga",
"File handling" => "Manejament de fichièr", "File handling" => "Manejament de fichièr",
"Maximum upload size" => "Talha maximum d'amontcargament", "Maximum upload size" => "Talha maximum d'amontcargament",
@ -39,6 +41,7 @@
"Nothing in here. Upload something!" => "Pas res dedins. Amontcarga qualquaren", "Nothing in here. Upload something!" => "Pas res dedins. Amontcarga qualquaren",
"Download" => "Avalcarga", "Download" => "Avalcarga",
"Unshare" => "Pas partejador", "Unshare" => "Pas partejador",
"Delete" => "Escafa",
"Upload too large" => "Amontcargament tròp gròs", "Upload too large" => "Amontcargament tròp gròs",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor.",
"Files are being scanned, please wait." => "Los fiichièrs son a èsser explorats, ", "Files are being scanned, please wait." => "Los fiichièrs son a èsser explorats, ",
@ -46,3 +49,4 @@
"file" => "fichièr", "file" => "fichièr",
"files" => "fichièrs" "files" => "fichièrs"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Nie można było przenieść %s - Plik o takiej nazwie już istnieje", "Could not move %s - File with this name already exists" => "Nie można było przenieść %s - Plik o takiej nazwie już istnieje",
"Could not move %s" => "Nie można było przenieść %s", "Could not move %s" => "Nie można było przenieść %s",
"Unable to set upload directory." => "Nie można ustawić katalog wczytywania.", "Unable to set upload directory." => "Nie można ustawić katalog wczytywania.",
@ -23,7 +24,6 @@
"Error" => "Błąd", "Error" => "Błąd",
"Share" => "Udostępnij", "Share" => "Udostępnij",
"Delete permanently" => "Trwale usuń", "Delete permanently" => "Trwale usuń",
"Delete" => "Usuń",
"Rename" => "Zmień nazwę", "Rename" => "Zmień nazwę",
"Pending" => "Oczekujące", "Pending" => "Oczekujące",
"{new_name} already exists" => "{new_name} już istnieje", "{new_name} already exists" => "{new_name} już istnieje",
@ -32,8 +32,7 @@
"cancel" => "anuluj", "cancel" => "anuluj",
"replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}", "replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}",
"undo" => "cofnij", "undo" => "cofnij",
"perform delete operation" => "wykonaj operację usunięcia", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "1 plik wczytywany",
"files uploading" => "pliki wczytane", "files uploading" => "pliki wczytane",
"'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.", "'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.",
"File name cannot be empty." => "Nazwa pliku nie może być pusta.", "File name cannot be empty." => "Nazwa pliku nie może być pusta.",
@ -45,10 +44,8 @@
"Name" => "Nazwa", "Name" => "Nazwa",
"Size" => "Rozmiar", "Size" => "Rozmiar",
"Modified" => "Modyfikacja", "Modified" => "Modyfikacja",
"1 folder" => "1 folder", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "Ilość folderów: {count}", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 plik",
"{count} files" => "Ilość plików: {count}",
"%s could not be renamed" => "%s nie można zmienić nazwy", "%s could not be renamed" => "%s nie można zmienić nazwy",
"Upload" => "Wyślij", "Upload" => "Wyślij",
"File handling" => "Zarządzanie plikami", "File handling" => "Zarządzanie plikami",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Pusto. Wyślij coś!", "Nothing in here. Upload something!" => "Pusto. Wyślij coś!",
"Download" => "Pobierz", "Download" => "Pobierz",
"Unshare" => "Zatrzymaj współdzielenie", "Unshare" => "Zatrzymaj współdzielenie",
"Delete" => "Usuń",
"Upload too large" => "Ładowany plik jest za duży", "Upload too large" => "Ładowany plik jest za duży",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość.",
"Files are being scanned, please wait." => "Skanowanie plików, proszę czekać.", "Files are being scanned, please wait." => "Skanowanie plików, proszę czekać.",
@ -79,3 +77,4 @@
"files" => "pliki", "files" => "pliki",
"Upgrading filesystem cache..." => "Uaktualnianie plików pamięci podręcznej..." "Upgrading filesystem cache..." => "Uaktualnianie plików pamięci podręcznej..."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Save" => "Zapisz" "Save" => "Zapisz"
); );
$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Impossível mover %s - Um arquivo com este nome já existe", "Could not move %s - File with this name already exists" => "Impossível mover %s - Um arquivo com este nome já existe",
"Could not move %s" => "Impossível mover %s", "Could not move %s" => "Impossível mover %s",
"Unable to set upload directory." => "Impossível configurar o diretório de upload", "Unable to set upload directory." => "Impossível configurar o diretório de upload",
@ -23,7 +24,6 @@
"Error" => "Erro", "Error" => "Erro",
"Share" => "Compartilhar", "Share" => "Compartilhar",
"Delete permanently" => "Excluir permanentemente", "Delete permanently" => "Excluir permanentemente",
"Delete" => "Excluir",
"Rename" => "Renomear", "Rename" => "Renomear",
"Pending" => "Pendente", "Pending" => "Pendente",
"{new_name} already exists" => "{new_name} já existe", "{new_name} already exists" => "{new_name} já existe",
@ -32,8 +32,7 @@
"cancel" => "cancelar", "cancel" => "cancelar",
"replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ", "replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ",
"undo" => "desfazer", "undo" => "desfazer",
"perform delete operation" => "realizar operação de exclusão", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "enviando 1 arquivo",
"files uploading" => "enviando arquivos", "files uploading" => "enviando arquivos",
"'.' is an invalid file name." => "'.' é um nome de arquivo inválido.", "'.' is an invalid file name." => "'.' é um nome de arquivo inválido.",
"File name cannot be empty." => "O nome do arquivo não pode estar vazio.", "File name cannot be empty." => "O nome do arquivo não pode estar vazio.",
@ -45,10 +44,8 @@
"Name" => "Nome", "Name" => "Nome",
"Size" => "Tamanho", "Size" => "Tamanho",
"Modified" => "Modificado", "Modified" => "Modificado",
"1 folder" => "1 pasta", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} pastas", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 arquivo",
"{count} files" => "{count} arquivos",
"%s could not be renamed" => "%s não pode ser renomeado", "%s could not be renamed" => "%s não pode ser renomeado",
"Upload" => "Upload", "Upload" => "Upload",
"File handling" => "Tratamento de Arquivo", "File handling" => "Tratamento de Arquivo",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!",
"Download" => "Baixar", "Download" => "Baixar",
"Unshare" => "Descompartilhar", "Unshare" => "Descompartilhar",
"Delete" => "Excluir",
"Upload too large" => "Upload muito grande", "Upload too large" => "Upload muito grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.",
"Files are being scanned, please wait." => "Arquivos sendo escaneados, por favor aguarde.", "Files are being scanned, please wait." => "Arquivos sendo escaneados, por favor aguarde.",
@ -79,3 +77,4 @@
"files" => "arquivos", "files" => "arquivos",
"Upgrading filesystem cache..." => "Atualizando cache do sistema de arquivos..." "Upgrading filesystem cache..." => "Atualizando cache do sistema de arquivos..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";

View File

@ -1,4 +1,5 @@
<?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 - 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", "Could not move %s" => "Não foi possível move o ficheiro %s",
"Unable to set upload directory." => "Não foi possível criar o diretório de upload", "Unable to set upload directory." => "Não foi possível criar o diretório de upload",
@ -23,7 +24,6 @@
"Error" => "Erro", "Error" => "Erro",
"Share" => "Partilhar", "Share" => "Partilhar",
"Delete permanently" => "Eliminar permanentemente", "Delete permanently" => "Eliminar permanentemente",
"Delete" => "Eliminar",
"Rename" => "Renomear", "Rename" => "Renomear",
"Pending" => "Pendente", "Pending" => "Pendente",
"{new_name} already exists" => "O nome {new_name} já existe", "{new_name} already exists" => "O nome {new_name} já existe",
@ -32,8 +32,7 @@
"cancel" => "cancelar", "cancel" => "cancelar",
"replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}",
"undo" => "desfazer", "undo" => "desfazer",
"perform delete operation" => "Executar a tarefa de apagar", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "A enviar 1 ficheiro",
"files uploading" => "A enviar os ficheiros", "files uploading" => "A enviar os ficheiros",
"'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", "'.' 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.", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.",
@ -45,10 +44,8 @@
"Name" => "Nome", "Name" => "Nome",
"Size" => "Tamanho", "Size" => "Tamanho",
"Modified" => "Modificado", "Modified" => "Modificado",
"1 folder" => "1 pasta", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} pastas", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 ficheiro",
"{count} files" => "{count} ficheiros",
"%s could not be renamed" => "%s não pode ser renomeada", "%s could not be renamed" => "%s não pode ser renomeada",
"Upload" => "Carregar", "Upload" => "Carregar",
"File handling" => "Manuseamento de ficheiros", "File handling" => "Manuseamento de ficheiros",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!",
"Download" => "Transferir", "Download" => "Transferir",
"Unshare" => "Deixar de partilhar", "Unshare" => "Deixar de partilhar",
"Delete" => "Eliminar",
"Upload too large" => "Upload muito grande", "Upload too large" => "Upload muito grande",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.",
"Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.", "Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.",
@ -79,3 +77,4 @@
"files" => "ficheiros", "files" => "ficheiros",
"Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..." "Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s - File with this name already exists" => "%s nu se poate muta - Fișierul cu acest nume există deja ",
"Could not move %s" => "Nu s-a putut muta %s", "Could not move %s" => "Nu s-a putut muta %s",
"Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.", "Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.",
@ -23,7 +24,6 @@
"Error" => "Eroare", "Error" => "Eroare",
"Share" => "Partajează", "Share" => "Partajează",
"Delete permanently" => "Stergere permanenta", "Delete permanently" => "Stergere permanenta",
"Delete" => "Șterge",
"Rename" => "Redenumire", "Rename" => "Redenumire",
"Pending" => "În așteptare", "Pending" => "În așteptare",
"{new_name} already exists" => "{new_name} deja exista", "{new_name} already exists" => "{new_name} deja exista",
@ -32,8 +32,7 @@
"cancel" => "anulare", "cancel" => "anulare",
"replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", "replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}",
"undo" => "Anulează ultima acțiune", "undo" => "Anulează ultima acțiune",
"perform delete operation" => "efectueaza operatiunea de stergere", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "un fișier se încarcă",
"files uploading" => "fișiere se încarcă", "files uploading" => "fișiere se încarcă",
"'.' is an invalid file name." => "'.' este un nume invalid de fișier.", "'.' is an invalid file name." => "'.' este un nume invalid de fișier.",
"File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.",
@ -45,10 +44,8 @@
"Name" => "Nume", "Name" => "Nume",
"Size" => "Dimensiune", "Size" => "Dimensiune",
"Modified" => "Modificat", "Modified" => "Modificat",
"1 folder" => "1 folder", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "{count} foldare", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 fisier",
"{count} files" => "{count} fisiere",
"%s could not be renamed" => "%s nu a putut fi redenumit", "%s could not be renamed" => "%s nu a putut fi redenumit",
"Upload" => "Încărcare", "Upload" => "Încărcare",
"File handling" => "Manipulare fișiere", "File handling" => "Manipulare fișiere",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!",
"Download" => "Descarcă", "Download" => "Descarcă",
"Unshare" => "Anulare partajare", "Unshare" => "Anulare partajare",
"Delete" => "Șterge",
"Upload too large" => "Fișierul încărcat este prea mare", "Upload too large" => "Fișierul încărcat este prea mare",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.",
"Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteptă.", "Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteptă.",
@ -79,3 +77,4 @@
"files" => "fișiere", "files" => "fișiere",
"Upgrading filesystem cache..." => "Modernizare fisiere de sistem cache.." "Upgrading filesystem cache..." => "Modernizare fisiere de sistem cache.."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует",
"Could not move %s" => "Невозможно переместить %s", "Could not move %s" => "Невозможно переместить %s",
"Unable to set upload directory." => "Не удалось установить каталог загрузки.", "Unable to set upload directory." => "Не удалось установить каталог загрузки.",
@ -23,7 +24,6 @@
"Error" => "Ошибка", "Error" => "Ошибка",
"Share" => "Открыть доступ", "Share" => "Открыть доступ",
"Delete permanently" => "Удалено навсегда", "Delete permanently" => "Удалено навсегда",
"Delete" => "Удалить",
"Rename" => "Переименовать", "Rename" => "Переименовать",
"Pending" => "Ожидание", "Pending" => "Ожидание",
"{new_name} already exists" => "{new_name} уже существует", "{new_name} already exists" => "{new_name} уже существует",
@ -32,8 +32,7 @@
"cancel" => "отмена", "cancel" => "отмена",
"replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}",
"undo" => "отмена", "undo" => "отмена",
"perform delete operation" => "выполнить операцию удаления", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "загружается 1 файл",
"files uploading" => "файлы загружаются", "files uploading" => "файлы загружаются",
"'.' is an invalid file name." => "'.' - неправильное имя файла.", "'.' is an invalid file name." => "'.' - неправильное имя файла.",
"File name cannot be empty." => "Имя файла не может быть пустым.", "File name cannot be empty." => "Имя файла не может быть пустым.",
@ -45,10 +44,8 @@
"Name" => "Имя", "Name" => "Имя",
"Size" => "Размер", "Size" => "Размер",
"Modified" => "Изменён", "Modified" => "Изменён",
"1 folder" => "1 папка", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "{count} папок", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 файл",
"{count} files" => "{count} файлов",
"%s could not be renamed" => "%s не может быть переименован", "%s could not be renamed" => "%s не может быть переименован",
"Upload" => "Загрузка", "Upload" => "Загрузка",
"File handling" => "Управление файлами", "File handling" => "Управление файлами",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!",
"Download" => "Скачать", "Download" => "Скачать",
"Unshare" => "Закрыть общий доступ", "Unshare" => "Закрыть общий доступ",
"Delete" => "Удалить",
"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." => "Подождите, файлы сканируются.",
@ -79,3 +77,4 @@
"files" => "файлы", "files" => "файлы",
"Upgrading filesystem cache..." => "Обновление кэша файловой системы..." "Upgrading filesystem cache..." => "Обновление кэша файловой системы..."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -1,16 +0,0 @@
<?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
"There is no error, the file uploaded with success" => "Ошибки нет, файл успешно загружен",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загружаемого файла превысил максимально допустимый в директиве MAX_FILE_SIZE, специфицированной в HTML-форме",
"The uploaded file was only partially uploaded" => "Загружаемый файл был загружен лишь частично",
"No file was uploaded" => "Файл не был загружен",
"Missing a temporary folder" => "Отсутствие временной папки",
"Failed to write to disk" => "Не удалось записать на диск",
"Not enough storage available" => "Недостаточно места в хранилище",
"Share" => "Сделать общим",
"Delete" => "Удалить",
"Error" => "Ошибка",
"Name" => "Имя",
"Save" => "Сохранить",
"Download" => "Загрузка"
);

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"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 MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය",
@ -12,18 +13,17 @@
"URL cannot be empty." => "යොමුව හිස් විය නොහැක", "URL cannot be empty." => "යොමුව හිස් විය නොහැක",
"Error" => "දෝෂයක්", "Error" => "දෝෂයක්",
"Share" => "බෙදා හදා ගන්න", "Share" => "බෙදා හදා ගන්න",
"Delete" => "මකා දමන්න",
"Rename" => "නැවත නම් කරන්න", "Rename" => "නැවත නම් කරන්න",
"replace" => "ප්‍රතිස්ථාපනය කරන්න", "replace" => "ප්‍රතිස්ථාපනය කරන්න",
"suggest name" => "නමක් යෝජනා කරන්න", "suggest name" => "නමක් යෝජනා කරන්න",
"cancel" => "අත් හරින්න", "cancel" => "අත් හරින්න",
"undo" => "නිෂ්ප්‍රභ කරන්න", "undo" => "නිෂ්ප්‍රභ කරන්න",
"1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"Name" => "නම", "Name" => "නම",
"Size" => "ප්‍රමාණය", "Size" => "ප්‍රමාණය",
"Modified" => "වෙනස් කළ", "Modified" => "වෙනස් කළ",
"1 folder" => "1 ෆොල්ඩරයක්", "_%n folder_::_%n folders_" => array("",""),
"1 file" => "1 ගොනුවක්", "_%n file_::_%n files_" => array("",""),
"Upload" => "උඩුගත කරන්න", "Upload" => "උඩුගත කරන්න",
"File handling" => "ගොනු පරිහරණය", "File handling" => "ගොනු පරිහරණය",
"Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්‍රමාණය", "Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්‍රමාණය",
@ -41,6 +41,7 @@
"Nothing in here. Upload something!" => "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න", "Nothing in here. Upload something!" => "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න",
"Download" => "බාන්න", "Download" => "බාන්න",
"Unshare" => "නොබෙදු", "Unshare" => "නොබෙදු",
"Delete" => "මකා දමන්න",
"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." => "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න",
@ -48,3 +49,4 @@
"file" => "ගොනුව", "file" => "ගොනුව",
"files" => "ගොනු" "files" => "ගොනු"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Nie je možné presunúť %s - súbor s týmto menom už existuje", "Could not move %s - File with this name already exists" => "Nie je možné presunúť %s - súbor s týmto menom už existuje",
"Could not move %s" => "Nie je možné presunúť %s", "Could not move %s" => "Nie je možné presunúť %s",
"Unable to set upload directory." => "Nemožno nastaviť priečinok pre nahrané súbory.", "Unable to set upload directory." => "Nemožno nastaviť priečinok pre nahrané súbory.",
@ -23,7 +24,6 @@
"Error" => "Chyba", "Error" => "Chyba",
"Share" => "Zdieľať", "Share" => "Zdieľať",
"Delete permanently" => "Zmazať trvalo", "Delete permanently" => "Zmazať trvalo",
"Delete" => "Zmazať",
"Rename" => "Premenovať", "Rename" => "Premenovať",
"Pending" => "Prebieha", "Pending" => "Prebieha",
"{new_name} already exists" => "{new_name} už existuje", "{new_name} already exists" => "{new_name} už existuje",
@ -32,8 +32,7 @@
"cancel" => "zrušiť", "cancel" => "zrušiť",
"replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}", "replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}",
"undo" => "vrátiť", "undo" => "vrátiť",
"perform delete operation" => "vykonať zmazanie", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "1 súbor sa posiela ",
"files uploading" => "nahrávanie súborov", "files uploading" => "nahrávanie súborov",
"'.' is an invalid file name." => "'.' je neplatné meno súboru.", "'.' is an invalid file name." => "'.' je neplatné meno súboru.",
"File name cannot be empty." => "Meno súboru nemôže byť prázdne", "File name cannot be empty." => "Meno súboru nemôže byť prázdne",
@ -45,10 +44,8 @@
"Name" => "Názov", "Name" => "Názov",
"Size" => "Veľkosť", "Size" => "Veľkosť",
"Modified" => "Upravené", "Modified" => "Upravené",
"1 folder" => "1 priečinok", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "{count} priečinkov", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 súbor",
"{count} files" => "{count} súborov",
"%s could not be renamed" => "%s nemohol byť premenovaný", "%s could not be renamed" => "%s nemohol byť premenovaný",
"Upload" => "Odoslať", "Upload" => "Odoslať",
"File handling" => "Nastavenie správania sa k súborom", "File handling" => "Nastavenie správania sa k súborom",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!", "Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!",
"Download" => "Sťahovanie", "Download" => "Sťahovanie",
"Unshare" => "Zrušiť zdieľanie", "Unshare" => "Zrušiť zdieľanie",
"Delete" => "Zmazať",
"Upload too large" => "Nahrávanie je príliš veľké", "Upload too large" => "Nahrávanie je príliš veľké",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server.",
"Files are being scanned, please wait." => "Čakajte, súbory sú prehľadávané.", "Files are being scanned, please wait." => "Čakajte, súbory sú prehľadávané.",
@ -79,3 +77,4 @@
"files" => "súbory", "files" => "súbory",
"Upgrading filesystem cache..." => "Aktualizujem medzipamäť súborového systému..." "Upgrading filesystem cache..." => "Aktualizujem medzipamäť súborového systému..."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s ni mogoče premakniti - datoteka s tem imenom že obstaja", "Could not move %s - File with this name already exists" => "%s ni mogoče premakniti - datoteka s tem imenom že obstaja",
"Could not move %s" => "Ni mogoče premakniti %s", "Could not move %s" => "Ni mogoče premakniti %s",
"Unable to set upload directory." => "Mapo, v katero boste prenašali dokumente, ni mogoče določiti", "Unable to set upload directory." => "Mapo, v katero boste prenašali dokumente, ni mogoče določiti",
@ -23,7 +24,6 @@
"Error" => "Napaka", "Error" => "Napaka",
"Share" => "Souporaba", "Share" => "Souporaba",
"Delete permanently" => "Izbriši dokončno", "Delete permanently" => "Izbriši dokončno",
"Delete" => "Izbriši",
"Rename" => "Preimenuj", "Rename" => "Preimenuj",
"Pending" => "V čakanju ...", "Pending" => "V čakanju ...",
"{new_name} already exists" => "{new_name} že obstaja", "{new_name} already exists" => "{new_name} že obstaja",
@ -32,8 +32,7 @@
"cancel" => "prekliči", "cancel" => "prekliči",
"replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}", "replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}",
"undo" => "razveljavi", "undo" => "razveljavi",
"perform delete operation" => "izvedi opravilo brisanja", "_Uploading %n file_::_Uploading %n files_" => array("","","",""),
"1 file uploading" => "Pošiljanje 1 datoteke",
"files uploading" => "poteka pošiljanje datotek", "files uploading" => "poteka pošiljanje datotek",
"'.' is an invalid file name." => "'.' je neveljavno ime datoteke.", "'.' is an invalid file name." => "'.' je neveljavno ime datoteke.",
"File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", "File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.",
@ -45,10 +44,8 @@
"Name" => "Ime", "Name" => "Ime",
"Size" => "Velikost", "Size" => "Velikost",
"Modified" => "Spremenjeno", "Modified" => "Spremenjeno",
"1 folder" => "1 mapa", "_%n folder_::_%n folders_" => array("","","",""),
"{count} folders" => "{count} map", "_%n file_::_%n files_" => array("","","",""),
"1 file" => "1 datoteka",
"{count} files" => "{count} datotek",
"%s could not be renamed" => "%s ni bilo mogoče preimenovati", "%s could not be renamed" => "%s ni bilo mogoče preimenovati",
"Upload" => "Pošlji", "Upload" => "Pošlji",
"File handling" => "Upravljanje z datotekami", "File handling" => "Upravljanje z datotekami",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!", "Nothing in here. Upload something!" => "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!",
"Download" => "Prejmi", "Download" => "Prejmi",
"Unshare" => "Prekliči souporabo", "Unshare" => "Prekliči souporabo",
"Delete" => "Izbriši",
"Upload too large" => "Prekoračenje omejitve velikosti", "Upload too large" => "Prekoračenje omejitve velikosti",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku.",
"Files are being scanned, please wait." => "Poteka preučevanje datotek, počakajte ...", "Files are being scanned, please wait." => "Poteka preučevanje datotek, počakajte ...",
@ -79,3 +77,4 @@
"files" => "datoteke", "files" => "datoteke",
"Upgrading filesystem cache..." => "Nadgrajevanje predpomnilnika datotečnega sistema ..." "Upgrading filesystem cache..." => "Nadgrajevanje predpomnilnika datotečnega sistema ..."
); );
$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër", "Could not move %s - File with this name already exists" => "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër",
"Could not move %s" => "%s nuk u spostua", "Could not move %s" => "%s nuk u spostua",
"No file was uploaded. Unknown error" => "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur", "No file was uploaded. Unknown error" => "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur",
@ -20,7 +21,6 @@
"Error" => "Veprim i gabuar", "Error" => "Veprim i gabuar",
"Share" => "Nda", "Share" => "Nda",
"Delete permanently" => "Elimino përfundimisht", "Delete permanently" => "Elimino përfundimisht",
"Delete" => "Elimino",
"Rename" => "Riemërto", "Rename" => "Riemërto",
"Pending" => "Pezulluar", "Pending" => "Pezulluar",
"{new_name} already exists" => "{new_name} ekziston", "{new_name} already exists" => "{new_name} ekziston",
@ -29,8 +29,7 @@
"cancel" => "anulo", "cancel" => "anulo",
"replaced {new_name} with {old_name}" => "U zëvëndësua {new_name} me {old_name}", "replaced {new_name} with {old_name}" => "U zëvëndësua {new_name} me {old_name}",
"undo" => "anulo", "undo" => "anulo",
"perform delete operation" => "ekzekuto operacionin e eliminimit", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "Po ngarkohet 1 skedar",
"files uploading" => "po ngarkoj skedarët", "files uploading" => "po ngarkoj skedarët",
"'.' is an invalid file name." => "'.' është emër i pavlefshëm.", "'.' is an invalid file name." => "'.' është emër i pavlefshëm.",
"File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.", "File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.",
@ -42,10 +41,8 @@
"Name" => "Emri", "Name" => "Emri",
"Size" => "Dimensioni", "Size" => "Dimensioni",
"Modified" => "Modifikuar", "Modified" => "Modifikuar",
"1 folder" => "1 dosje", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} dosje", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 skedar",
"{count} files" => "{count} skedarë",
"Upload" => "Ngarko", "Upload" => "Ngarko",
"File handling" => "Trajtimi i skedarit", "File handling" => "Trajtimi i skedarit",
"Maximum upload size" => "Dimensioni maksimal i ngarkimit", "Maximum upload size" => "Dimensioni maksimal i ngarkimit",
@ -65,9 +62,11 @@
"Nothing in here. Upload something!" => "Këtu nuk ka asgjë. Ngarkoni diçka!", "Nothing in here. Upload something!" => "Këtu nuk ka asgjë. Ngarkoni diçka!",
"Download" => "Shkarko", "Download" => "Shkarko",
"Unshare" => "Hiq ndarjen", "Unshare" => "Hiq ndarjen",
"Delete" => "Elimino",
"Upload too large" => "Ngarkimi është shumë i madh", "Upload too large" => "Ngarkimi është shumë i madh",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server.",
"Files are being scanned, please wait." => "Skedarët po analizohen, ju lutemi pritni.", "Files are being scanned, please wait." => "Skedarët po analizohen, ju lutemi pritni.",
"Current scanning" => "Analizimi aktual", "Current scanning" => "Analizimi aktual",
"Upgrading filesystem cache..." => "Po përmirësoj memorjen e filesystem-it..." "Upgrading filesystem cache..." => "Po përmirësoj memorjen e filesystem-it..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Не могу да преместим %s датотека с овим именом већ постоји", "Could not move %s - File with this name already exists" => "Не могу да преместим %s датотека с овим именом већ постоји",
"Could not move %s" => "Не могу да преместим %s", "Could not move %s" => "Не могу да преместим %s",
"No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке", "No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке",
@ -20,7 +21,6 @@
"Error" => "Грешка", "Error" => "Грешка",
"Share" => "Дели", "Share" => "Дели",
"Delete permanently" => "Обриши за стално", "Delete permanently" => "Обриши за стално",
"Delete" => "Обриши",
"Rename" => "Преименуј", "Rename" => "Преименуј",
"Pending" => "На чекању", "Pending" => "На чекању",
"{new_name} already exists" => "{new_name} већ постоји", "{new_name} already exists" => "{new_name} већ постоји",
@ -29,8 +29,7 @@
"cancel" => "откажи", "cancel" => "откажи",
"replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", "replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}",
"undo" => "опозови", "undo" => "опозови",
"perform delete operation" => "обриши", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "Отпремам 1 датотеку",
"files uploading" => "датотеке се отпремају", "files uploading" => "датотеке се отпремају",
"'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", "'.' is an invalid file name." => "Датотека „.“ је неисправног имена.",
"File name cannot be empty." => "Име датотеке не може бити празно.", "File name cannot be empty." => "Име датотеке не може бити празно.",
@ -42,10 +41,8 @@
"Name" => "Име", "Name" => "Име",
"Size" => "Величина", "Size" => "Величина",
"Modified" => "Измењено", "Modified" => "Измењено",
"1 folder" => "1 фасцикла", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "{count} фасцикле/и", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 датотека",
"{count} files" => "{count} датотеке/а",
"Upload" => "Отпреми", "Upload" => "Отпреми",
"File handling" => "Управљање датотекама", "File handling" => "Управљање датотекама",
"Maximum upload size" => "Највећа величина датотеке", "Maximum upload size" => "Највећа величина датотеке",
@ -65,9 +62,11 @@
"Nothing in here. Upload something!" => "Овде нема ничег. Отпремите нешто!", "Nothing in here. Upload something!" => "Овде нема ничег. Отпремите нешто!",
"Download" => "Преузми", "Download" => "Преузми",
"Unshare" => "Укини дељење", "Unshare" => "Укини дељење",
"Delete" => "Обриши",
"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" => "Тренутно скенирање",
"Upgrading filesystem cache..." => "Дограђујем кеш система датотека…" "Upgrading filesystem cache..." => "Дограђујем кеш система датотека…"
); );
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -1,19 +1,24 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Nema greške, fajl je uspešno poslat", "There is no error, the file uploaded with success" => "Nema greške, fajl je uspešno poslat",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi",
"The uploaded file was only partially uploaded" => "Poslati fajl je samo delimično otpremljen!", "The uploaded file was only partially uploaded" => "Poslati fajl je samo delimično otpremljen!",
"No file was uploaded" => "Nijedan fajl nije poslat", "No file was uploaded" => "Nijedan fajl nije poslat",
"Missing a temporary folder" => "Nedostaje privremena fascikla", "Missing a temporary folder" => "Nedostaje privremena fascikla",
"Files" => "Fajlovi", "Files" => "Fajlovi",
"Delete" => "Obriši", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"Name" => "Ime", "Name" => "Ime",
"Size" => "Veličina", "Size" => "Veličina",
"Modified" => "Zadnja izmena", "Modified" => "Zadnja izmena",
"_%n folder_::_%n folders_" => array("","",""),
"_%n file_::_%n files_" => array("","",""),
"Upload" => "Pošalji", "Upload" => "Pošalji",
"Maximum upload size" => "Maksimalna veličina pošiljke", "Maximum upload size" => "Maksimalna veličina pošiljke",
"Save" => "Snimi", "Save" => "Snimi",
"Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!",
"Download" => "Preuzmi", "Download" => "Preuzmi",
"Delete" => "Obriši",
"Upload too large" => "Pošiljka je prevelika", "Upload too large" => "Pošiljka je prevelika",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Kunde inte flytta %s - Det finns redan en fil med detta namn", "Could not move %s - File with this name already exists" => "Kunde inte flytta %s - Det finns redan en fil med detta namn",
"Could not move %s" => "Kan inte flytta %s", "Could not move %s" => "Kan inte flytta %s",
"Unable to set upload directory." => "Kan inte sätta mapp för uppladdning.", "Unable to set upload directory." => "Kan inte sätta mapp för uppladdning.",
@ -23,7 +24,6 @@
"Error" => "Fel", "Error" => "Fel",
"Share" => "Dela", "Share" => "Dela",
"Delete permanently" => "Radera permanent", "Delete permanently" => "Radera permanent",
"Delete" => "Radera",
"Rename" => "Byt namn", "Rename" => "Byt namn",
"Pending" => "Väntar", "Pending" => "Väntar",
"{new_name} already exists" => "{new_name} finns redan", "{new_name} already exists" => "{new_name} finns redan",
@ -32,8 +32,7 @@
"cancel" => "avbryt", "cancel" => "avbryt",
"replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}",
"undo" => "ångra", "undo" => "ångra",
"perform delete operation" => "utför raderingen", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"1 file uploading" => "1 filuppladdning",
"files uploading" => "filer laddas upp", "files uploading" => "filer laddas upp",
"'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", "'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.",
"File name cannot be empty." => "Filnamn kan inte vara tomt.", "File name cannot be empty." => "Filnamn kan inte vara tomt.",
@ -45,10 +44,8 @@
"Name" => "Namn", "Name" => "Namn",
"Size" => "Storlek", "Size" => "Storlek",
"Modified" => "Ändrad", "Modified" => "Ändrad",
"1 folder" => "1 mapp", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{count} mappar", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 fil",
"{count} files" => "{count} filer",
"%s could not be renamed" => "%s kunde inte namnändras", "%s could not be renamed" => "%s kunde inte namnändras",
"Upload" => "Ladda upp", "Upload" => "Ladda upp",
"File handling" => "Filhantering", "File handling" => "Filhantering",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!",
"Download" => "Ladda ner", "Download" => "Ladda ner",
"Unshare" => "Sluta dela", "Unshare" => "Sluta dela",
"Delete" => "Radera",
"Upload too large" => "För stor uppladdning", "Upload too large" => "För stor uppladdning",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.",
"Files are being scanned, please wait." => "Filer skannas, var god vänta", "Files are being scanned, please wait." => "Filer skannas, var god vänta",
@ -79,3 +77,4 @@
"files" => "filer", "files" => "filer",
"Upgrading filesystem cache..." => "Uppgraderar filsystemets cache..." "Upgrading filesystem cache..." => "Uppgraderar filsystemets cache..."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"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 MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது",
@ -13,7 +14,6 @@
"URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.", "URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.",
"Error" => "வழு", "Error" => "வழு",
"Share" => "பகிர்வு", "Share" => "பகிர்வு",
"Delete" => "நீக்குக",
"Rename" => "பெயர்மாற்றம்", "Rename" => "பெயர்மாற்றம்",
"Pending" => "நிலுவையிலுள்ள", "Pending" => "நிலுவையிலுள்ள",
"{new_name} already exists" => "{new_name} ஏற்கனவே உள்ளது", "{new_name} already exists" => "{new_name} ஏற்கனவே உள்ளது",
@ -22,15 +22,13 @@
"cancel" => "இரத்து செய்க", "cancel" => "இரத்து செய்க",
"replaced {new_name} with {old_name}" => "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது", "replaced {new_name} with {old_name}" => "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது",
"undo" => "முன் செயல் நீக்கம் ", "undo" => "முன் செயல் நீக்கம் ",
"1 file uploading" => "1 கோப்பு பதிவேற்றப்படுகிறது", "_Uploading %n file_::_Uploading %n files_" => array("",""),
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.",
"Name" => "பெயர்", "Name" => "பெயர்",
"Size" => "அளவு", "Size" => "அளவு",
"Modified" => "மாற்றப்பட்டது", "Modified" => "மாற்றப்பட்டது",
"1 folder" => "1 கோப்புறை", "_%n folder_::_%n folders_" => array("",""),
"{count} folders" => "{எண்ணிக்கை} கோப்புறைகள்", "_%n file_::_%n files_" => array("",""),
"1 file" => "1 கோப்பு",
"{count} files" => "{எண்ணிக்கை} கோப்புகள்",
"Upload" => "பதிவேற்றுக", "Upload" => "பதிவேற்றுக",
"File handling" => "கோப்பு கையாளுதல்", "File handling" => "கோப்பு கையாளுதல்",
"Maximum upload size" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ", "Maximum upload size" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ",
@ -48,8 +46,10 @@
"Nothing in here. Upload something!" => "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!", "Nothing in here. Upload something!" => "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!",
"Download" => "பதிவிறக்குக", "Download" => "பதிவிறக்குக",
"Unshare" => "பகிரப்படாதது", "Unshare" => "பகிரப்படாதது",
"Delete" => "நீக்குக",
"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" => "தற்போது வருடப்படுபவை"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,10 +1,15 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Error" => "పొరపాటు", "Error" => "పొరపాటు",
"Delete permanently" => "శాశ్వతంగా తొలగించు", "Delete permanently" => "శాశ్వతంగా తొలగించు",
"Delete" => "తొలగించు",
"cancel" => "రద్దుచేయి", "cancel" => "రద్దుచేయి",
"_Uploading %n file_::_Uploading %n files_" => array("",""),
"Name" => "పేరు", "Name" => "పేరు",
"Size" => "పరిమాణం", "Size" => "పరిమాణం",
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Save" => "భద్రపరచు", "Save" => "భద్రపరచు",
"Folder" => "సంచయం" "Folder" => "సంచయం",
"Delete" => "తొలగించు"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว", "Could not move %s - File with this name already exists" => "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว",
"Could not move %s" => "ไม่สามารถย้าย %s ได้", "Could not move %s" => "ไม่สามารถย้าย %s ได้",
"No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", "No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ",
@ -19,7 +20,6 @@
"URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้", "URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้",
"Error" => "ข้อผิดพลาด", "Error" => "ข้อผิดพลาด",
"Share" => "แชร์", "Share" => "แชร์",
"Delete" => "ลบ",
"Rename" => "เปลี่ยนชื่อ", "Rename" => "เปลี่ยนชื่อ",
"Pending" => "อยู่ระหว่างดำเนินการ", "Pending" => "อยู่ระหว่างดำเนินการ",
"{new_name} already exists" => "{new_name} มีอยู่แล้วในระบบ", "{new_name} already exists" => "{new_name} มีอยู่แล้วในระบบ",
@ -28,8 +28,7 @@
"cancel" => "ยกเลิก", "cancel" => "ยกเลิก",
"replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว", "replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว",
"undo" => "เลิกทำ", "undo" => "เลิกทำ",
"perform delete operation" => "ดำเนินการตามคำสั่งลบ", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "กำลังอัพโหลดไฟล์ 1 ไฟล์",
"files uploading" => "การอัพโหลดไฟล์", "files uploading" => "การอัพโหลดไฟล์",
"'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง", "'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง",
"File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", "File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้",
@ -41,10 +40,8 @@
"Name" => "ชื่อ", "Name" => "ชื่อ",
"Size" => "ขนาด", "Size" => "ขนาด",
"Modified" => "แก้ไขแล้ว", "Modified" => "แก้ไขแล้ว",
"1 folder" => "1 โฟลเดอร์", "_%n folder_::_%n folders_" => array(""),
"{count} folders" => "{count} โฟลเดอร์", "_%n file_::_%n files_" => array(""),
"1 file" => "1 ไฟล์",
"{count} files" => "{count} ไฟล์",
"Upload" => "อัพโหลด", "Upload" => "อัพโหลด",
"File handling" => "การจัดกาไฟล์", "File handling" => "การจัดกาไฟล์",
"Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้",
@ -62,6 +59,7 @@
"Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", "Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!",
"Download" => "ดาวน์โหลด", "Download" => "ดาวน์โหลด",
"Unshare" => "ยกเลิกการแชร์", "Unshare" => "ยกเลิกการแชร์",
"Delete" => "ลบ",
"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." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.",
@ -70,3 +68,4 @@
"files" => "ไฟล์", "files" => "ไฟล์",
"Upgrading filesystem cache..." => "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..." "Upgrading filesystem cache..." => "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "%s taşınamadı. Bu isimde dosya zaten var.", "Could not move %s - File with this name already exists" => "%s taşınamadı. Bu isimde dosya zaten var.",
"Could not move %s" => "%s taşınamadı", "Could not move %s" => "%s taşınamadı",
"Unable to set upload directory." => "Yükleme dizini tanımlanamadı.", "Unable to set upload directory." => "Yükleme dizini tanımlanamadı.",
@ -23,7 +24,6 @@
"Error" => "Hata", "Error" => "Hata",
"Share" => "Paylaş", "Share" => "Paylaş",
"Delete permanently" => "Kalıcı olarak sil", "Delete permanently" => "Kalıcı olarak sil",
"Delete" => "Sil",
"Rename" => "İsim değiştir.", "Rename" => "İsim değiştir.",
"Pending" => "Bekliyor", "Pending" => "Bekliyor",
"{new_name} already exists" => "{new_name} zaten mevcut", "{new_name} already exists" => "{new_name} zaten mevcut",
@ -32,8 +32,7 @@
"cancel" => "iptal", "cancel" => "iptal",
"replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi", "replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi",
"undo" => "geri al", "undo" => "geri al",
"perform delete operation" => "Silme işlemini gerçekleştir", "_Uploading %n file_::_Uploading %n files_" => array("%n dosya yükleniyor","%n dosya yükleniyor"),
"1 file uploading" => "1 dosya yüklendi",
"files uploading" => "Dosyalar yükleniyor", "files uploading" => "Dosyalar yükleniyor",
"'.' is an invalid file name." => "'.' geçersiz dosya adı.", "'.' is an invalid file name." => "'.' geçersiz dosya adı.",
"File name cannot be empty." => "Dosya adı boş olamaz.", "File name cannot be empty." => "Dosya adı boş olamaz.",
@ -45,10 +44,8 @@
"Name" => "İsim", "Name" => "İsim",
"Size" => "Boyut", "Size" => "Boyut",
"Modified" => "Değiştirilme", "Modified" => "Değiştirilme",
"1 folder" => "1 dizin", "_%n folder_::_%n folders_" => array("%n dizin","%n dizin"),
"{count} folders" => "{count} dizin", "_%n file_::_%n files_" => array("%n dosya","%n dosya"),
"1 file" => "1 dosya",
"{count} files" => "{count} dosya",
"%s could not be renamed" => "%s yeniden adlandırılamadı", "%s could not be renamed" => "%s yeniden adlandırılamadı",
"Upload" => "Yükle", "Upload" => "Yükle",
"File handling" => "Dosya taşıma", "File handling" => "Dosya taşıma",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!",
"Download" => "İndir", "Download" => "İndir",
"Unshare" => "Paylaşılmayan", "Unshare" => "Paylaşılmayan",
"Delete" => "Sil",
"Upload too large" => "Yükleme çok büyük", "Upload too large" => "Yükleme çok büyük",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.",
"Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.", "Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.",
@ -79,3 +77,4 @@
"files" => "dosyalar", "files" => "dosyalar",
"Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor" "Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s" => "%s يۆتكىيەلمەيدۇ", "Could not move %s" => "%s يۆتكىيەلمەيدۇ",
"No file was uploaded. Unknown error" => "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق", "No file was uploaded. Unknown error" => "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق",
"No file was uploaded" => "ھېچقانداق ھۆججەت يۈكلەنمىدى", "No file was uploaded" => "ھېچقانداق ھۆججەت يۈكلەنمىدى",
@ -12,7 +13,6 @@
"Error" => "خاتالىق", "Error" => "خاتالىق",
"Share" => "ھەمبەھىر", "Share" => "ھەمبەھىر",
"Delete permanently" => "مەڭگۈلۈك ئۆچۈر", "Delete permanently" => "مەڭگۈلۈك ئۆچۈر",
"Delete" => "ئۆچۈر",
"Rename" => "ئات ئۆزگەرت", "Rename" => "ئات ئۆزگەرت",
"Pending" => "كۈتۈۋاتىدۇ", "Pending" => "كۈتۈۋاتىدۇ",
"{new_name} already exists" => "{new_name} مەۋجۇت", "{new_name} already exists" => "{new_name} مەۋجۇت",
@ -20,14 +20,13 @@
"suggest name" => "تەۋسىيە ئات", "suggest name" => "تەۋسىيە ئات",
"cancel" => "ۋاز كەچ", "cancel" => "ۋاز كەچ",
"undo" => "يېنىۋال", "undo" => "يېنىۋال",
"1 file uploading" => "1 ھۆججەت يۈكلىنىۋاتىدۇ", "_Uploading %n file_::_Uploading %n files_" => array(""),
"files uploading" => "ھۆججەت يۈكلىنىۋاتىدۇ", "files uploading" => "ھۆججەت يۈكلىنىۋاتىدۇ",
"Name" => "ئاتى", "Name" => "ئاتى",
"Size" => "چوڭلۇقى", "Size" => "چوڭلۇقى",
"Modified" => "ئۆزگەرتكەن", "Modified" => "ئۆزگەرتكەن",
"1 folder" => "1 قىسقۇچ", "_%n folder_::_%n folders_" => array(""),
"1 file" => "1 ھۆججەت", "_%n file_::_%n files_" => array(""),
"{count} files" => "{count} ھۆججەت",
"Upload" => "يۈكلە", "Upload" => "يۈكلە",
"Save" => "ساقلا", "Save" => "ساقلا",
"New" => "يېڭى", "New" => "يېڭى",
@ -38,6 +37,8 @@
"Nothing in here. Upload something!" => "بۇ جايدا ھېچنېمە يوق. Upload something!", "Nothing in here. Upload something!" => "بۇ جايدا ھېچنېمە يوق. Upload something!",
"Download" => "چۈشۈر", "Download" => "چۈشۈر",
"Unshare" => "ھەمبەھىرلىمە", "Unshare" => "ھەمبەھىرلىمە",
"Delete" => "ئۆچۈر",
"Upload too large" => "يۈكلەندىغىنى بەك چوڭ", "Upload too large" => "يۈكلەندىغىنى بەك چوڭ",
"Upgrading filesystem cache..." => "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" "Upgrading filesystem cache..." => "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…"
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Не вдалося перемістити %s - Файл з таким ім'ям вже існує", "Could not move %s - File with this name already exists" => "Не вдалося перемістити %s - Файл з таким ім'ям вже існує",
"Could not move %s" => "Не вдалося перемістити %s", "Could not move %s" => "Не вдалося перемістити %s",
"No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка", "No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка",
@ -20,7 +21,6 @@
"Error" => "Помилка", "Error" => "Помилка",
"Share" => "Поділитися", "Share" => "Поділитися",
"Delete permanently" => "Видалити назавжди", "Delete permanently" => "Видалити назавжди",
"Delete" => "Видалити",
"Rename" => "Перейменувати", "Rename" => "Перейменувати",
"Pending" => "Очікування", "Pending" => "Очікування",
"{new_name} already exists" => "{new_name} вже існує", "{new_name} already exists" => "{new_name} вже існує",
@ -29,8 +29,7 @@
"cancel" => "відміна", "cancel" => "відміна",
"replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", "replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}",
"undo" => "відмінити", "undo" => "відмінити",
"perform delete operation" => "виконати операцію видалення", "_Uploading %n file_::_Uploading %n files_" => array("","",""),
"1 file uploading" => "1 файл завантажується",
"files uploading" => "файли завантажуються", "files uploading" => "файли завантажуються",
"'.' is an invalid file name." => "'.' це невірне ім'я файлу.", "'.' is an invalid file name." => "'.' це невірне ім'я файлу.",
"File name cannot be empty." => " Ім'я файлу не може бути порожнім.", "File name cannot be empty." => " Ім'я файлу не може бути порожнім.",
@ -42,10 +41,9 @@
"Name" => "Ім'я", "Name" => "Ім'я",
"Size" => "Розмір", "Size" => "Розмір",
"Modified" => "Змінено", "Modified" => "Змінено",
"1 folder" => "1 папка", "_%n folder_::_%n folders_" => array("","",""),
"{count} folders" => "{count} папок", "_%n file_::_%n files_" => array("","",""),
"1 file" => "1 файл", "%s could not be renamed" => "%s не може бути перейменований",
"{count} files" => "{count} файлів",
"Upload" => "Вивантажити", "Upload" => "Вивантажити",
"File handling" => "Робота з файлами", "File handling" => "Робота з файлами",
"Maximum upload size" => "Максимальний розмір відвантажень", "Maximum upload size" => "Максимальний розмір відвантажень",
@ -65,11 +63,15 @@
"Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!",
"Download" => "Завантажити", "Download" => "Завантажити",
"Unshare" => "Закрити доступ", "Unshare" => "Закрити доступ",
"Delete" => "Видалити",
"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" => "Поточне сканування",
"directory" => "каталог",
"directories" => "каталоги",
"file" => "файл", "file" => "файл",
"files" => "файли", "files" => "файли",
"Upgrading filesystem cache..." => "Оновлення кеша файлової системи..." "Upgrading filesystem cache..." => "Оновлення кеша файлової системи..."
); );
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";

View File

@ -1,4 +1,9 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Error" => "ایرر", "Error" => "ایرر",
"_Uploading %n file_::_Uploading %n files_" => array("",""),
"_%n folder_::_%n folders_" => array("",""),
"_%n file_::_%n files_" => array("",""),
"Unshare" => "شئیرنگ ختم کریں" "Unshare" => "شئیرنگ ختم کریں"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống", "Could not move %s - File with this name already exists" => "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống",
"Could not move %s" => "Không thể di chuyển %s", "Could not move %s" => "Không thể di chuyển %s",
"No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định", "No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định",
@ -20,7 +21,6 @@
"Error" => "Lỗi", "Error" => "Lỗi",
"Share" => "Chia sẻ", "Share" => "Chia sẻ",
"Delete permanently" => "Xóa vĩnh vễn", "Delete permanently" => "Xóa vĩnh vễn",
"Delete" => "Xóa",
"Rename" => "Sửa tên", "Rename" => "Sửa tên",
"Pending" => "Đang chờ", "Pending" => "Đang chờ",
"{new_name} already exists" => "{new_name} đã tồn tại", "{new_name} already exists" => "{new_name} đã tồn tại",
@ -29,8 +29,7 @@
"cancel" => "hủy", "cancel" => "hủy",
"replaced {new_name} with {old_name}" => "đã thay thế {new_name} bằng {old_name}", "replaced {new_name} with {old_name}" => "đã thay thế {new_name} bằng {old_name}",
"undo" => "lùi lại", "undo" => "lùi lại",
"perform delete operation" => "thực hiện việc xóa", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "1 tệp tin đang được tải lên",
"files uploading" => "tệp tin đang được tải lên", "files uploading" => "tệp tin đang được tải lên",
"'.' is an invalid file name." => "'.' là một tên file không hợp lệ", "'.' is an invalid file name." => "'.' là một tên file không hợp lệ",
"File name cannot be empty." => "Tên file không được rỗng", "File name cannot be empty." => "Tên file không được rỗng",
@ -42,10 +41,8 @@
"Name" => "Tên", "Name" => "Tên",
"Size" => "Kích cỡ", "Size" => "Kích cỡ",
"Modified" => "Thay đổi", "Modified" => "Thay đổi",
"1 folder" => "1 thư mục", "_%n folder_::_%n folders_" => array(""),
"{count} folders" => "{count} thư mục", "_%n file_::_%n files_" => array(""),
"1 file" => "1 tập tin",
"{count} files" => "{count} tập tin",
"Upload" => "Tải lên", "Upload" => "Tải lên",
"File handling" => "Xử lý tập tin", "File handling" => "Xử lý tập tin",
"Maximum upload size" => "Kích thước tối đa ", "Maximum upload size" => "Kích thước tối đa ",
@ -65,6 +62,7 @@
"Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", "Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !",
"Download" => "Tải về", "Download" => "Tải về",
"Unshare" => "Bỏ chia sẻ", "Unshare" => "Bỏ chia sẻ",
"Delete" => "Xóa",
"Upload too large" => "Tập tin tải lên quá lớn", "Upload too large" => "Tập tin tải lên quá lớn",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ .", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ .",
"Files are being scanned, please wait." => "Tập tin đang được quét ,vui lòng chờ.", "Files are being scanned, please wait." => "Tập tin đang được quét ,vui lòng chờ.",
@ -73,3 +71,4 @@
"files" => "files", "files" => "files",
"Upgrading filesystem cache..." => "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." "Upgrading filesystem cache..." => "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "无法移动 %s - 存在同名文件", "Could not move %s - File with this name already exists" => "无法移动 %s - 存在同名文件",
"Could not move %s" => "无法移动 %s", "Could not move %s" => "无法移动 %s",
"Unable to set upload directory." => "无法设置上传文件夹", "Unable to set upload directory." => "无法设置上传文件夹",
@ -23,7 +24,6 @@
"Error" => "出错", "Error" => "出错",
"Share" => "分享", "Share" => "分享",
"Delete permanently" => "永久删除", "Delete permanently" => "永久删除",
"Delete" => "删除",
"Rename" => "重命名", "Rename" => "重命名",
"Pending" => "等待中", "Pending" => "等待中",
"{new_name} already exists" => "{new_name} 已存在", "{new_name} already exists" => "{new_name} 已存在",
@ -32,8 +32,7 @@
"cancel" => "取消", "cancel" => "取消",
"replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", "replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}",
"undo" => "撤销", "undo" => "撤销",
"perform delete operation" => "执行删除", "_Uploading %n file_::_Uploading %n files_" => array("正在上传 %n 个文件"),
"1 file uploading" => "1 个文件正在上传",
"files uploading" => "个文件正在上传", "files uploading" => "个文件正在上传",
"'.' is an invalid file name." => "'.' 文件名不正确", "'.' is an invalid file name." => "'.' 文件名不正确",
"File name cannot be empty." => "文件名不能为空", "File name cannot be empty." => "文件名不能为空",
@ -45,10 +44,8 @@
"Name" => "名称", "Name" => "名称",
"Size" => "大小", "Size" => "大小",
"Modified" => "修改日期", "Modified" => "修改日期",
"1 folder" => "1 个文件夹", "_%n folder_::_%n folders_" => array("%n 个文件夹"),
"{count} folders" => "{count} 个文件夹", "_%n file_::_%n files_" => array("%n 个文件"),
"1 file" => "1 个文件",
"{count} files" => "{count} 个文件",
"%s could not be renamed" => "不能重命名 %s", "%s could not be renamed" => "不能重命名 %s",
"Upload" => "上传", "Upload" => "上传",
"File handling" => "文件处理中", "File handling" => "文件处理中",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "这里没有东西.上传点什么!", "Nothing in here. Upload something!" => "这里没有东西.上传点什么!",
"Download" => "下载", "Download" => "下载",
"Unshare" => "取消分享", "Unshare" => "取消分享",
"Delete" => "删除",
"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." => "正在扫描文件,请稍候.",
@ -79,3 +77,4 @@
"files" => "文件", "files" => "文件",
"Upgrading filesystem cache..." => "升级系统缓存..." "Upgrading filesystem cache..." => "升级系统缓存..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "无法移动 %s - 同名文件已存在", "Could not move %s - File with this name already exists" => "无法移动 %s - 同名文件已存在",
"Could not move %s" => "无法移动 %s", "Could not move %s" => "无法移动 %s",
"Unable to set upload directory." => "无法设置上传文件夹。", "Unable to set upload directory." => "无法设置上传文件夹。",
@ -23,7 +24,6 @@
"Error" => "错误", "Error" => "错误",
"Share" => "分享", "Share" => "分享",
"Delete permanently" => "永久删除", "Delete permanently" => "永久删除",
"Delete" => "删除",
"Rename" => "重命名", "Rename" => "重命名",
"Pending" => "等待", "Pending" => "等待",
"{new_name} already exists" => "{new_name} 已存在", "{new_name} already exists" => "{new_name} 已存在",
@ -32,8 +32,7 @@
"cancel" => "取消", "cancel" => "取消",
"replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}",
"undo" => "撤销", "undo" => "撤销",
"perform delete operation" => "进行删除操作", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "1个文件上传中",
"files uploading" => "文件上传中", "files uploading" => "文件上传中",
"'.' is an invalid file name." => "'.' 是一个无效的文件名。", "'.' is an invalid file name." => "'.' 是一个无效的文件名。",
"File name cannot be empty." => "文件名不能为空。", "File name cannot be empty." => "文件名不能为空。",
@ -45,10 +44,8 @@
"Name" => "名称", "Name" => "名称",
"Size" => "大小", "Size" => "大小",
"Modified" => "修改日期", "Modified" => "修改日期",
"1 folder" => "1个文件夹", "_%n folder_::_%n folders_" => array(""),
"{count} folders" => "{count} 个文件夹", "_%n file_::_%n files_" => array(""),
"1 file" => "1 个文件",
"{count} files" => "{count} 个文件",
"%s could not be renamed" => "%s 不能被重命名", "%s could not be renamed" => "%s 不能被重命名",
"Upload" => "上传", "Upload" => "上传",
"File handling" => "文件处理", "File handling" => "文件处理",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!",
"Download" => "下载", "Download" => "下载",
"Unshare" => "取消共享", "Unshare" => "取消共享",
"Delete" => "删除",
"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." => "文件正在被扫描,请稍候。",
@ -77,3 +75,4 @@
"files" => "文件", "files" => "文件",
"Upgrading filesystem cache..." => "正在更新文件系统缓存..." "Upgrading filesystem cache..." => "正在更新文件系统缓存..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,12 +1,16 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Files" => "文件", "Files" => "文件",
"Error" => "錯誤", "Error" => "錯誤",
"Share" => "分享", "Share" => "分享",
"Delete" => "刪除", "_Uploading %n file_::_Uploading %n files_" => array(""),
"Name" => "名稱", "Name" => "名稱",
"{count} folders" => "{}文件夾", "_%n folder_::_%n folders_" => array(""),
"_%n file_::_%n files_" => array(""),
"Upload" => "上傳", "Upload" => "上傳",
"Save" => "儲存", "Save" => "儲存",
"Download" => "下載", "Download" => "下載",
"Unshare" => "取消分享" "Unshare" => "取消分享",
"Delete" => "刪除"
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "無法移動 %s - 同名的檔案已經存在", "Could not move %s - File with this name already exists" => "無法移動 %s - 同名的檔案已經存在",
"Could not move %s" => "無法移動 %s", "Could not move %s" => "無法移動 %s",
"Unable to set upload directory." => "無法設定上傳目錄。", "Unable to set upload directory." => "無法設定上傳目錄。",
@ -23,7 +24,6 @@
"Error" => "錯誤", "Error" => "錯誤",
"Share" => "分享", "Share" => "分享",
"Delete permanently" => "永久刪除", "Delete permanently" => "永久刪除",
"Delete" => "刪除",
"Rename" => "重新命名", "Rename" => "重新命名",
"Pending" => "等候中", "Pending" => "等候中",
"{new_name} already exists" => "{new_name} 已經存在", "{new_name} already exists" => "{new_name} 已經存在",
@ -32,8 +32,7 @@
"cancel" => "取消", "cancel" => "取消",
"replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}",
"undo" => "復原", "undo" => "復原",
"perform delete operation" => "進行刪除動作", "_Uploading %n file_::_Uploading %n files_" => array(""),
"1 file uploading" => "1 個檔案正在上傳",
"files uploading" => "檔案正在上傳中", "files uploading" => "檔案正在上傳中",
"'.' is an invalid file name." => "'.' 是不合法的檔名。", "'.' is an invalid file name." => "'.' 是不合法的檔名。",
"File name cannot be empty." => "檔名不能為空。", "File name cannot be empty." => "檔名不能為空。",
@ -45,10 +44,8 @@
"Name" => "名稱", "Name" => "名稱",
"Size" => "大小", "Size" => "大小",
"Modified" => "修改", "Modified" => "修改",
"1 folder" => "1 個資料夾", "_%n folder_::_%n folders_" => array(""),
"{count} folders" => "{count} 個資料夾", "_%n file_::_%n files_" => array(""),
"1 file" => "1 個檔案",
"{count} files" => "{count} 個檔案",
"%s could not be renamed" => "無法重新命名 %s", "%s could not be renamed" => "無法重新命名 %s",
"Upload" => "上傳", "Upload" => "上傳",
"File handling" => "檔案處理", "File handling" => "檔案處理",
@ -69,6 +66,7 @@
"Nothing in here. Upload something!" => "這裡什麼也沒有,上傳一些東西吧!", "Nothing in here. Upload something!" => "這裡什麼也沒有,上傳一些東西吧!",
"Download" => "下載", "Download" => "下載",
"Unshare" => "取消共享", "Unshare" => "取消共享",
"Delete" => "刪除",
"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." => "正在掃描檔案,請稍等。",
@ -79,3 +77,4 @@
"files" => "檔案", "files" => "檔案",
"Upgrading filesystem cache..." => "正在升級檔案系統快取..." "Upgrading filesystem cache..." => "正在升級檔案系統快取..."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -38,9 +38,7 @@
</form> </form>
</div> </div>
<?php if ($_['trash'] ): ?> <?php if ($_['trash'] ): ?>
<div id="trash" class="button"> <input id="trash" type="button" value="<?php p($l->t('Deleted files'));?>" class="button" <?php $_['trashEmpty'] ? p('disabled') : '' ?>></input>
<a><?php p($l->t('Deleted files'));?></a>
</div>
<?php endif; ?> <?php endif; ?>
<div id="uploadprogresswrapper"> <div id="uploadprogresswrapper">
<div id="uploadprogressbar"></div> <div id="uploadprogressbar"></div>

View File

@ -1,6 +1,6 @@
<?php <?php
if (!isset($_)) { //also provide standalone error page if (!isset($_)) { //also provide standalone error page
require_once '../../../lib/base.php'; require_once __DIR__ . '/../../../lib/base.php';
$l = OC_L10N::get('files_encryption'); $l = OC_L10N::get('files_encryption');

View File

@ -30,9 +30,6 @@ use OC\Files\Filesystem;
*/ */
class Hooks { class Hooks {
// TODO: use passphrase for encrypting private key that is separate to
// the login password
/** /**
* @brief Startup encryption backend upon user login * @brief Startup encryption backend upon user login
* @note This method should never be called for users using client side encryption * @note This method should never be called for users using client side encryption
@ -40,9 +37,9 @@ class Hooks {
public static function login($params) { public static function login($params) {
$l = new \OC_L10N('files_encryption'); $l = new \OC_L10N('files_encryption');
//check if all requirements are met //check if all requirements are met
if(!Helper::checkRequirements() ) { if(!Helper::checkRequirements() || !Helper::checkConfiguration() ) {
$error_msg = $l->t("Missing requirements."); $error_msg = $l->t("Missing requirements.");
$hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled.'); $hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.');
\OC_App::disable('files_encryption'); \OC_App::disable('files_encryption');
\OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR); \OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR);
\OCP\Template::printErrorPage($error_msg, $hint); \OCP\Template::printErrorPage($error_msg, $hint);
@ -227,6 +224,7 @@ class Hooks {
*/ */
public static function preShared($params) { public static function preShared($params) {
$l = new \OC_L10N('files_encryption');
$users = array(); $users = array();
$view = new \OC\Files\View('/public-keys/'); $view = new \OC\Files\View('/public-keys/');
@ -239,21 +237,18 @@ class Hooks {
break; break;
} }
$error = false; $notConfigured = array();
foreach ($users as $user) { foreach ($users as $user) {
if (!$view->file_exists($user . '.public.key')) { if (!$view->file_exists($user . '.public.key')) {
$error = true; $notConfigured[] = $user;
break;
} }
} }
if ($error) // Set flag var 'run' to notify emitting if (count($notConfigured) > 0) {
// script that hook execution failed $params['run'] = false;
{ $params['error'] = $l->t('Following users are not set up for encryption:') . ' ' . join(', ' , $notConfigured);
$params['run']->run = false;
} }
// TODO: Make sure files_sharing provides user
// feedback on failed share
} }
/** /**

View File

@ -1,4 +1,6 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Saving..." => "جاري الحفظ...", "Saving..." => "جاري الحفظ...",
"Encryption" => "التشفير" "Encryption" => "التشفير"
); );
$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;";

View File

@ -1,4 +1,6 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Saving..." => "Записване...", "Saving..." => "Записване...",
"Encryption" => "Криптиране" "Encryption" => "Криптиране"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,6 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Saving..." => "সংরক্ষণ করা হচ্ছে..", "Saving..." => "সংরক্ষণ করা হচ্ছে..",
"Encryption" => "সংকেতায়ন" "Encryption" => "সংকেতায়ন"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "La clau de recuperació s'ha activat", "Recovery key successfully enabled" => "La clau de recuperació s'ha activat",
"Could not enable recovery key. Please check your recovery key password!" => "No s'ha pogut activar la clau de recuperació. Comproveu contrasenya de la clau de recuperació!", "Could not enable recovery key. Please check your recovery key password!" => "No s'ha pogut activar la clau de recuperació. Comproveu contrasenya de la clau de recuperació!",
"Recovery key successfully disabled" => "La clau de recuperació s'ha descativat", "Recovery key successfully disabled" => "La clau de recuperació s'ha descativat",
@ -9,7 +10,8 @@
"Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", "Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.",
"Missing requirements." => "Manca de requisits.", "Missing requirements." => "Manca de requisits.",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat.",
"Following users are not set up for encryption:" => "Els usuaris següents no estan configurats per a l'encriptació:",
"Saving..." => "Desant...", "Saving..." => "Desant...",
"Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", "Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.",
"You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", "You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre",
@ -34,3 +36,4 @@
"File recovery settings updated" => "S'han actualitzat els arranjaments de recuperació de fitxers", "File recovery settings updated" => "S'han actualitzat els arranjaments de recuperació de fitxers",
"Could not update file recovery" => "No s'ha pogut actualitzar la recuperació de fitxers" "Could not update file recovery" => "No s'ha pogut actualitzar la recuperació de fitxers"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,22 +1,39 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Záchranný klíč byl úspěšně povolen", "Recovery key successfully enabled" => "Záchranný klíč byl úspěšně povolen",
"Could not enable recovery key. Please check your recovery key password!" => "Nepodařilo se povolit záchranný klíč. Zkontrolujte prosím vaše heslo záchranného klíče!", "Could not enable recovery key. Please check your recovery key password!" => "Nepodařilo se povolit záchranný klíč. Zkontrolujte prosím vaše heslo záchranného klíče!",
"Recovery key successfully disabled" => "Záchranný klíč byl úspěšně zakázán", "Recovery key successfully disabled" => "Záchranný klíč byl úspěšně zakázán",
"Could not disable recovery key. Please check your recovery key password!" => "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče.", "Could not disable recovery key. Please check your recovery key password!" => "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče!",
"Password successfully changed." => "Heslo bylo úspěšně změněno.", "Password successfully changed." => "Heslo bylo úspěšně změněno.",
"Could not change the password. Maybe the old password was not correct." => "Nelze změnit heslo. Pravděpodobně nebylo stávající heslo zadáno správně.", "Could not change the password. Maybe the old password was not correct." => "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.",
"Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.", "Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.",
"Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.",
"Missing requirements." => "Nesplněné závislosti.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta.",
"Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:",
"Saving..." => "Ukládám...", "Saving..." => "Ukládám...",
"Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.",
"You can unlock your private key in your " => "Můžete odemknout váš soukromý klíč ve vašem",
"personal settings" => "osobní nastavení", "personal settings" => "osobní nastavení",
"Encryption" => "Šifrování", "Encryption" => "Šifrování",
"Enable recovery key (allow to recover users files in case of password loss):" => "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)",
"Recovery key password" => "Heslo klíče pro obnovu",
"Enabled" => "Povoleno", "Enabled" => "Povoleno",
"Disabled" => "Zakázáno", "Disabled" => "Zakázáno",
"Change recovery key password:" => "Změna hesla klíče pro obnovu:",
"Old Recovery key password" => "Původní heslo klíče pro obnovu",
"New Recovery key password" => "Nové heslo klíče pro obnovu",
"Change Password" => "Změnit heslo", "Change Password" => "Změnit heslo",
"Old log-in password" => "Staré přihlašovací heslo", "Your private key password no longer match your log-in password:" => "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:",
"Set your old private key password to your current log-in password." => "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo.",
" If you don't remember your old password you can ask your administrator to recover your files." => "Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů.",
"Old log-in password" => "Původní přihlašovací heslo",
"Current log-in password" => "Aktuální přihlašovací heslo", "Current log-in password" => "Aktuální přihlašovací heslo",
"Update Private Key Password" => "Změnit heslo soukromého klíče",
"Enable password recovery:" => "Povolit obnovu hesla:", "Enable password recovery:" => "Povolit obnovu hesla:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo",
"File recovery settings updated" => "Možnosti obnovy souborů aktualizovány", "File recovery settings updated" => "Možnosti záchrany souborů aktualizovány",
"Could not update file recovery" => "Nelze aktualizovat obnovu souborů" "Could not update file recovery" => "Nelze nastavit záchranu souborů"
); );
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";

View File

@ -1,4 +1,6 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Saving..." => "Yn cadw...", "Saving..." => "Yn cadw...",
"Encryption" => "Amgryptiad" "Encryption" => "Amgryptiad"
); );
$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;";

View File

@ -1,8 +1,39 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Gendannelsesnøgle aktiveret med succes",
"Could not enable recovery key. Please check your recovery key password!" => "Kunne ikke aktivere gendannelsesnøgle. Kontroller venligst dit gendannelsesnøgle kodeord!",
"Recovery key successfully disabled" => "Gendannelsesnøgle deaktiveret succesfuldt",
"Could not disable recovery key. Please check your recovery key password!" => "Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!",
"Password successfully changed." => "Kodeordet blev ændret succesfuldt",
"Could not change the password. Maybe the old password was not correct." => "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.",
"Private key password successfully updated." => "Privat nøgle kodeord succesfuldt opdateret.",
"Could not update the private key password. Maybe the old password was not correct." => "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din private nøgle er gyldig! Sandsynligvis blev dit kodeord ændre uden for ownCloud systemet (f.eks. dit firmas register). Du kan opdatere dit private nøgle kodeord under personlige indstillinger, for at generhverve adgang til dine krypterede filer.",
"Missing requirements." => "Manglende betingelser.",
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.",
"Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:",
"Saving..." => "Gemmer...", "Saving..." => "Gemmer...",
"Your private key is not valid! Maybe the your password was changed from outside." => "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra.",
"You can unlock your private key in your " => "Du kan låse din private nøgle op i din ",
"personal settings" => "Personlige indstillinger", "personal settings" => "Personlige indstillinger",
"Encryption" => "Kryptering", "Encryption" => "Kryptering",
"Enable recovery key (allow to recover users files in case of password loss):" => "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):",
"Recovery key password" => "Gendannelsesnøgle kodeord",
"Enabled" => "Aktiveret", "Enabled" => "Aktiveret",
"Disabled" => "Deaktiveret", "Disabled" => "Deaktiveret",
"Change Password" => "Skift Kodeord" "Change recovery key password:" => "Skift gendannelsesnøgle kodeord:",
"Old Recovery key password" => "Gammel Gendannelsesnøgle kodeord",
"New Recovery key password" => "Ny Gendannelsesnøgle kodeord",
"Change Password" => "Skift Kodeord",
"Your private key password no longer match your log-in password:" => "Dit private nøgle kodeord stemmer ikke længere overens med dit login kodeord:",
"Set your old private key password to your current log-in password." => "Sæt dit gamle private nøgle kodeord til at være dit nuværende login kodeord. ",
" If you don't remember your old password you can ask your administrator to recover your files." => "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer.",
"Old log-in password" => "Gammelt login kodeord",
"Current log-in password" => "Nuvrende login kodeord",
"Update Private Key Password" => "Opdater Privat Nøgle Kodeord",
"Enable password recovery:" => "Aktiver kodeord gendannelse:",
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord",
"File recovery settings updated" => "Filgendannelsesindstillinger opdateret",
"Could not update file recovery" => "Kunne ikke opdatere filgendannelse"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Wiederherstellungsschlüssel wurde erfolgreich aktiviert", "Recovery key successfully enabled" => "Wiederherstellungsschlüssel wurde erfolgreich aktiviert",
"Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfen Sie Ihr Wiederherstellungspasswort!", "Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfen Sie Ihr Wiederherstellungspasswort!",
"Recovery key successfully disabled" => "Wiederherstellungsschlüssel deaktiviert.", "Recovery key successfully disabled" => "Wiederherstellungsschlüssel deaktiviert.",
@ -9,7 +10,8 @@
"Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.",
"Missing requirements." => "Fehlende Vorraussetzungen", "Missing requirements." => "Fehlende Vorraussetzungen",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.",
"Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
"Saving..." => "Speichern...", "Saving..." => "Speichern...",
"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.",
"You can unlock your private key in your " => "Du kannst den privaten Schlüssel ändern und zwar in deinem", "You can unlock your private key in your " => "Du kannst den privaten Schlüssel ändern und zwar in deinem",
@ -34,3 +36,4 @@
"File recovery settings updated" => "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert", "File recovery settings updated" => "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert",
"Could not update file recovery" => "Dateiwiederherstellung konnte nicht aktualisiert werden" "Could not update file recovery" => "Dateiwiederherstellung konnte nicht aktualisiert werden"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.", "Recovery key successfully enabled" => "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.",
"Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!", "Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
"Recovery key successfully disabled" => "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.", "Recovery key successfully disabled" => "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.",
@ -9,7 +10,8 @@
"Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.",
"Missing requirements." => "Fehlende Voraussetzungen", "Missing requirements." => "Fehlende Voraussetzungen",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.",
"Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
"Saving..." => "Speichern...", "Saving..." => "Speichern...",
"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.",
"You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", "You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem",
@ -34,3 +36,4 @@
"File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.", "File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.",
"Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden." "Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden."
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.", "Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.",
"Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.",
"Saving..." => "Γίνεται αποθήκευση...", "Saving..." => "Γίνεται αποθήκευση...",
@ -9,3 +10,4 @@
"Change Password" => "Αλλαγή Κωδικού Πρόσβασης", "Change Password" => "Αλλαγή Κωδικού Πρόσβασης",
"File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" "File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Password successfully changed." => "La pasvorto sukcese ŝanĝiĝis.", "Password successfully changed." => "La pasvorto sukcese ŝanĝiĝis.",
"Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", "Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.",
"Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", "Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.",
@ -13,3 +14,4 @@
"Current log-in password" => "Nuna ensaluta pasvorto", "Current log-in password" => "Nuna ensaluta pasvorto",
"Update Private Key Password" => "Ĝisdatigi la pasvorton de la malpublika klavo" "Update Private Key Password" => "Ĝisdatigi la pasvorton de la malpublika klavo"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Se ha habilitado la recuperación de archivos", "Recovery key successfully enabled" => "Se ha habilitado la recuperación de archivos",
"Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.", "Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.",
"Recovery key successfully disabled" => "Clave de recuperación deshabilitada", "Recovery key successfully disabled" => "Clave de recuperación deshabilitada",
@ -9,7 +10,6 @@
"Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.",
"Missing requirements." => "Requisitos incompletos.", "Missing requirements." => "Requisitos incompletos.",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.",
"Saving..." => "Guardando...", "Saving..." => "Guardando...",
"Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.",
"You can unlock your private key in your " => "Puede desbloquear su clave privada en su", "You can unlock your private key in your " => "Puede desbloquear su clave privada en su",
@ -34,3 +34,4 @@
"File recovery settings updated" => "Opciones de recuperación de archivos actualizada", "File recovery settings updated" => "Opciones de recuperación de archivos actualizada",
"Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" "Could not update file recovery" => "No se pudo actualizar la recuperación de archivos"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Se habilitó la recuperación de archivos", "Recovery key successfully enabled" => "Se habilitó la recuperación de archivos",
"Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor, comprobá tu contraseña.", "Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor, comprobá tu contraseña.",
"Recovery key successfully disabled" => "Clave de recuperación deshabilitada", "Recovery key successfully disabled" => "Clave de recuperación deshabilitada",
@ -9,7 +10,6 @@
"Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta.", "Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos.",
"Missing requirements." => "Requisitos incompletos.", "Missing requirements." => "Requisitos incompletos.",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación está deshabilitada.",
"Saving..." => "Guardando...", "Saving..." => "Guardando...",
"Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.",
"You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", "You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu",
@ -34,3 +34,4 @@
"File recovery settings updated" => "Las opciones de recuperación de archivos fueron actualizadas", "File recovery settings updated" => "Las opciones de recuperación de archivos fueron actualizadas",
"Could not update file recovery" => "No fue posible actualizar la recuperación de archivos" "Could not update file recovery" => "No fue posible actualizar la recuperación de archivos"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Taastevõtme lubamine õnnestus", "Recovery key successfully enabled" => "Taastevõtme lubamine õnnestus",
"Could not enable recovery key. Please check your recovery key password!" => "Ei suutnud lubada taastevõtit. Palun kontrolli oma taastevõtme parooli!", "Could not enable recovery key. Please check your recovery key password!" => "Ei suutnud lubada taastevõtit. Palun kontrolli oma taastevõtme parooli!",
"Recovery key successfully disabled" => "Taastevõtme keelamine õnnestus", "Recovery key successfully disabled" => "Taastevõtme keelamine õnnestus",
@ -9,7 +10,8 @@
"Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", "Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.",
"Missing requirements." => "Nõutavad on puudu.", "Missing requirements." => "Nõutavad on puudu.",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.",
"Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:",
"Saving..." => "Salvestamine...", "Saving..." => "Salvestamine...",
"Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.", "Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.",
"You can unlock your private key in your " => "Saad avada oma privaatse võtme oma", "You can unlock your private key in your " => "Saad avada oma privaatse võtme oma",
@ -34,3 +36,4 @@
"File recovery settings updated" => "Faili taaste seaded uuendatud", "File recovery settings updated" => "Faili taaste seaded uuendatud",
"Could not update file recovery" => "Ei suuda uuendada taastefaili" "Could not update file recovery" => "Ei suuda uuendada taastefaili"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Berreskuratze gakoa behar bezala gaitua", "Recovery key successfully enabled" => "Berreskuratze gakoa behar bezala gaitua",
"Could not enable recovery key. Please check your recovery key password!" => "Ezin da berreskuratze gako gaitu. Egiaztatu berreskuratze gako pasahitza!", "Could not enable recovery key. Please check your recovery key password!" => "Ezin da berreskuratze gako gaitu. Egiaztatu berreskuratze gako pasahitza!",
"Recovery key successfully disabled" => "Berreskuratze gakoa behar bezala desgaitu da", "Recovery key successfully disabled" => "Berreskuratze gakoa behar bezala desgaitu da",
@ -9,7 +10,6 @@
"Could not update the private key password. Maybe the old password was not correct." => "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da.", "Could not update the private key password. Maybe the old password was not correct." => "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.",
"Missing requirements." => "Eskakizun batzuk ez dira betetzen.", "Missing requirements." => "Eskakizun batzuk ez dira betetzen.",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ziurtatu PHP 5.3.3 edo berriagoa instalatuta dagoela eta PHPren OpenSSL gehigarria gaituta eta ongi konfiguratuta dagoela. Oraingoz enkriptazio programa ez dago gaituta.",
"Saving..." => "Gordetzen...", "Saving..." => "Gordetzen...",
"Your private key is not valid! Maybe the your password was changed from outside." => "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da.", "Your private key is not valid! Maybe the your password was changed from outside." => "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da.",
"You can unlock your private key in your " => "Zure gako pribatua desblokeatu dezakezu zure", "You can unlock your private key in your " => "Zure gako pribatua desblokeatu dezakezu zure",
@ -34,3 +34,4 @@
"File recovery settings updated" => "Fitxategi berreskuratze ezarpenak eguneratuak", "File recovery settings updated" => "Fitxategi berreskuratze ezarpenak eguneratuak",
"Could not update file recovery" => "Ezin da fitxategi berreskuratzea eguneratu" "Could not update file recovery" => "Ezin da fitxategi berreskuratzea eguneratu"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "کلید بازیابی با موفقیت فعال شده است.", "Recovery key successfully enabled" => "کلید بازیابی با موفقیت فعال شده است.",
"Could not enable recovery key. Please check your recovery key password!" => "کلید بازیابی نمی تواند فعال شود. لطفا رمزعبور کلید بازیابی خود را بررسی نمایید!", "Could not enable recovery key. Please check your recovery key password!" => "کلید بازیابی نمی تواند فعال شود. لطفا رمزعبور کلید بازیابی خود را بررسی نمایید!",
"Recovery key successfully disabled" => "کلید بازیابی با موفقیت غیر فعال شده است.", "Recovery key successfully disabled" => "کلید بازیابی با موفقیت غیر فعال شده است.",
@ -9,7 +10,6 @@
"Could not update the private key password. Maybe the old password was not correct." => "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد.", "Could not update the private key password. Maybe the old password was not correct." => "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید.",
"Missing requirements." => "نیازمندی های گمشده", "Missing requirements." => "نیازمندی های گمشده",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "لطفا مطمئن شوید که PHP 5.3.3 یا جدیدتر نصب شده و پسوند OpenSSL PHP فعال است و به درستی پیکربندی شده است. در حال حاضر، برنامه رمزگذاری غیر فعال شده است.",
"Saving..." => "در حال ذخیره سازی...", "Saving..." => "در حال ذخیره سازی...",
"Your private key is not valid! Maybe the your password was changed from outside." => "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است.", "Your private key is not valid! Maybe the your password was changed from outside." => "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است.",
"You can unlock your private key in your " => "شما میتوانید کلید خصوصی خود را باز نمایید.", "You can unlock your private key in your " => "شما میتوانید کلید خصوصی خود را باز نمایید.",
@ -34,3 +34,4 @@
"File recovery settings updated" => "تنظیمات بازیابی فایل به روز شده است.", "File recovery settings updated" => "تنظیمات بازیابی فایل به روز شده است.",
"Could not update file recovery" => "به روز رسانی بازیابی فایل را نمی تواند انجام دهد." "Could not update file recovery" => "به روز رسانی بازیابی فایل را نمی تواند انجام دهد."
); );
$PLURAL_FORMS = "nplurals=1; plural=0;";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Password successfully changed." => "Salasana vaihdettiin onnistuneesti.", "Password successfully changed." => "Salasana vaihdettiin onnistuneesti.",
"Could not change the password. Maybe the old password was not correct." => "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.", "Could not change the password. Maybe the old password was not correct." => "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.",
"Saving..." => "Tallennetaan...", "Saving..." => "Tallennetaan...",
@ -7,3 +8,4 @@
"Disabled" => "Ei käytössä", "Disabled" => "Ei käytössä",
"Change Password" => "Vaihda salasana" "Change Password" => "Vaihda salasana"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php
$TRANSLATIONS = array(
"Recovery key successfully enabled" => "Clé de récupération activée avec succès", "Recovery key successfully enabled" => "Clé de récupération activée avec succès",
"Could not enable recovery key. Please check your recovery key password!" => "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !", "Could not enable recovery key. Please check your recovery key password!" => "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !",
"Recovery key successfully disabled" => "Clé de récupération désactivée avec succès", "Recovery key successfully disabled" => "Clé de récupération désactivée avec succès",
@ -9,7 +10,6 @@
"Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.",
"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.",
"Missing requirements." => "Système minimum requis non respecté.", "Missing requirements." => "Système minimum requis non respecté.",
"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée.",
"Saving..." => "Enregistrement...", "Saving..." => "Enregistrement...",
"Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.",
"You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", "You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre",
@ -34,3 +34,4 @@
"File recovery settings updated" => "Paramètres de récupération de fichiers mis à jour", "File recovery settings updated" => "Paramètres de récupération de fichiers mis à jour",
"Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération" "Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération"
); );
$PLURAL_FORMS = "nplurals=2; plural=(n > 1);";

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