diff --git a/apps/files/ajax/autocomplete.php b/apps/files/ajax/autocomplete.php deleted file mode 100644 index 7613a1cb77..0000000000 --- a/apps/files/ajax/autocomplete.php +++ /dev/null @@ -1,54 +0,0 @@ -$item, 'label'=>$item, 'name'=>$item); - } - } - } - } - } -} -OCP\JSON::encodedPrint($files); diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index 8f05eaaa1b..196d698278 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -23,8 +23,20 @@ foreach ($files as $file) { } } -if ($success) { - OCP\JSON::success(array("data" => array("dir" => $dir, "files" => $files))); +// updated max file size after upload +$l=new OC_L10N('files'); +$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); +$maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize); +$maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize; + +if($success) { + OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $files, + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); } else { - OCP\JSON::error(array("data" => array("message" => "Could not delete:\n" . $filesWithError))); + OCP\JSON::error(array("data" => array( "message" => "Could not delete:\n" . $filesWithError, + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); } diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php new file mode 100644 index 0000000000..e55e346ed6 --- /dev/null +++ b/apps/files/ajax/getstoragestats.php @@ -0,0 +1,16 @@ +t('Upload') . ' max. ' . $maxHumanFilesize; + +// send back json +OCP\JSON::success(array('data' => array('uploadMaxFilesize' => $maxUploadFilesize, + 'maxHumanFilesize' => $maxHumanFilesize +))); diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index eea66d6b26..b4a2035301 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -10,8 +10,17 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); $l=OC_L10N::get('files'); +// current max upload size +$l=new OC_L10N('files'); +$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); +$maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize); +$maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize; + if (!isset($_FILES['files'])) { - OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' )))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' ), + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); exit(); } @@ -28,7 +37,10 @@ foreach ($_FILES['files']['error'] as $error) { UPLOAD_ERR_NO_TMP_DIR=>$l->t('Missing a temporary folder'), UPLOAD_ERR_CANT_WRITE=>$l->t('Failed to write to disk'), ); - OCP\JSON::error(array('data' => array( 'message' => $errors[$error] ))); + OCP\JSON::error(array('data' => array( 'message' => $errors[$error], + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); exit(); } } @@ -42,7 +54,9 @@ foreach($files['size'] as $size) { $totalSize+=$size; } if($totalSize>\OC\Files\Filesystem::free_space($dir)) { - OCP\JSON::error(array('data' => array( 'message' => 'Not enough space available' ))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' ), + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize))); exit(); } @@ -55,11 +69,19 @@ if(strpos($dir, '..') === false) { $target = \OC\Files\Filesystem::normalizePath($target); if(is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) { $meta = \OC\Files\Filesystem::getFileInfo($target); + // updated max file size after upload + $maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); + $maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize); + $maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize; + $result[]=array( 'status' => 'success', 'mime'=>$meta['mimetype'], 'size'=>$meta['size'], 'id'=>$meta['fileid'], - 'name'=>basename($target)); + 'name'=>basename($target), + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ); } } OCP\JSON::encodedPrint($result); @@ -68,4 +90,7 @@ if(strpos($dir, '..') === false) { $error=$l->t( 'Invalid directory.' ); } -OCP\JSON::error(array('data' => array('message' => $error ))); +OCP\JSON::error(array('data' => array('message' => $error, + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize +))); diff --git a/apps/files/index.php b/apps/files/index.php index 854218eee5..c10ae76e9e 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -28,6 +28,7 @@ OCP\User::checkLoggedIn(); OCP\Util::addStyle('files', 'files'); OCP\Util::addscript('files', 'jquery.iframe-transport'); OCP\Util::addscript('files', 'jquery.fileupload'); +OCP\Util::addscript('files', 'jquery-visibility'); OCP\Util::addscript('files', 'filelist'); OCP\Util::addscript('files', 'fileactions'); @@ -97,12 +98,7 @@ $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); $breadcrumbNav->assign('breadcrumb', $breadcrumb, false); $breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir=', false); -$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); -$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); -$maxUploadFilesize = min($upload_max_filesize, $post_max_size); - -$freeSpace = max($freeSpace, 0); -$maxUploadFilesize = min($maxUploadFilesize, $freeSpace); +$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); $permissions = OCP\PERMISSION_READ; if (\OC\Files\Filesystem::isUpdatable($dir . '/')) { diff --git a/apps/files/js/files.js b/apps/files/js/files.js index f560e90845..1c3926e05d 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -26,6 +26,23 @@ Files={ }); procesSelection(); }, + updateMaxUploadFilesize:function(response) { + if(response == undefined) { + return; + } + if(response.data !== undefined && response.data.uploadMaxFilesize !== undefined) { + $('#max_upload').val(response.data.uploadMaxFilesize); + $('#data-upload-form a').attr('original-title', response.data.maxHumanFilesize); + } + if(response[0] == undefined) { + return; + } + if(response[0].uploadMaxFilesize !== undefined) { + $('#max_upload').val(response[0].uploadMaxFilesize); + $('#data-upload-form a').attr('original-title', response[0].maxHumanFilesize); + } + + }, isFileNameValid:function (name) { if (name === '.') { $('#notification').text(t('files', '\'.\' is an invalid file name.')); @@ -184,7 +201,7 @@ $(document).ready(function() { $('.download').click('click',function(event) { var files=getSelectedFiles('name').join(';'); var dir=$('#dir').val()||'/'; - $('#notification').text(t('files','generating ZIP-file, it may take some time.')); + $('#notification').text(t('files','Your download is being prepared. This might take some time if the files are big.')); $('#notification').fadeIn(); // use special download URL if provided, e.g. for public shared files if ( (downloadURL = document.getElementById("downloadURL")) ) { @@ -317,6 +334,7 @@ $(document).ready(function() { $('#notification').text(t('files', response.data.message)); $('#notification').fadeIn(); } + Files.updateMaxUploadFilesize(response); var file=response[0]; // TODO: this doesn't work if the file name has been changed server side delete uploadingFiles[dirName][file.name]; @@ -369,6 +387,8 @@ $(document).ready(function() { .success(function(result, textStatus, jqXHR) { var response; response=jQuery.parseJSON(result); + Files.updateMaxUploadFilesize(response); + if(response[0] != undefined && response[0].status == 'success') { var file=response[0]; delete uploadingFiles[file.name]; @@ -402,6 +422,7 @@ $(document).ready(function() { data.submit().success(function(data, status) { // in safari data is a string response = jQuery.parseJSON(typeof data === 'string' ? data : data[0].body.innerText); + Files.updateMaxUploadFilesize(response); if(response[0] != undefined && response[0].status == 'success') { var file=response[0]; delete uploadingFiles[file.name]; @@ -708,6 +729,32 @@ $(document).ready(function() { }); resizeBreadcrumbs(true); + + // file space size sync + function update_storage_statistics() { + $.getJSON(OC.filePath('files','ajax','getstoragestats.php'),function(response) { + Files.updateMaxUploadFilesize(response); + }); + } + + // start on load - we ask the server every 5 minutes + var update_storage_statistics_interval = 5*60*1000; + var update_storage_statistics_interval_id = setInterval(update_storage_statistics, update_storage_statistics_interval); + + // Use jquery-visibility to de-/re-activate file stats sync + if ($.support.pageVisibility) { + $(document).on({ + 'show.visibility': function() { + if (!update_storage_statistics_interval_id) { + update_storage_statistics_interval_id = setInterval(update_storage_statistics, update_storage_statistics_interval); + } + }, + 'hide.visibility': function() { + clearInterval(update_storage_statistics_interval_id); + update_storage_statistics_interval_id = 0; + } + }); + } }); function scanFiles(force, dir){ @@ -733,6 +780,7 @@ scanFiles.scanning=false; function boolOperationFinished(data, callback) { result = jQuery.parseJSON(data.responseText); + Files.updateMaxUploadFilesize(result); if(result.status == 'success'){ callback.call(); } else { diff --git a/apps/files/js/jquery-visibility.js b/apps/files/js/jquery-visibility.js new file mode 100644 index 0000000000..a824bf6873 --- /dev/null +++ b/apps/files/js/jquery-visibility.js @@ -0,0 +1,32 @@ +/*! http://mths.be/visibility v1.0.5 by @mathias */ +(function (window, document, $, undefined) { + + var prefix, + property, +// In Opera, `'onfocusin' in document == true`, hence the extra `hasFocus` check to detect IE-like behavior + eventName = 'onfocusin' in document && 'hasFocus' in document ? 'focusin focusout' : 'focus blur', + prefixes = ['', 'moz', 'ms', 'o', 'webkit'], + $support = $.support, + $event = $.event; + + while ((property = prefix = prefixes.pop()) != undefined) { + property = (prefix ? prefix + 'H' : 'h') + 'idden'; + if ($support.pageVisibility = typeof document[property] == 'boolean') { + eventName = prefix + 'visibilitychange'; + break; + } + } + + $(/blur$/.test(eventName) ? window : document).on(eventName, function (event) { + var type = event.type, + originalEvent = event.originalEvent, + toElement = originalEvent.toElement; +// If it’s a `{focusin,focusout}` event (IE), `fromElement` and `toElement` should both be `null` or `undefined`; +// else, the page visibility hasn’t changed, but the user just clicked somewhere in the doc. +// In IE9, we need to check the `relatedTarget` property instead. + if (!/^focus./.test(type) || (toElement == undefined && originalEvent.fromElement == undefined && originalEvent.relatedTarget == undefined)) { + $event.trigger((property && document[property] || /^(?:blur|focusout)$/.test(type) ? 'hide' : 'show') + '.visibility'); + } + }); + +}(this, document, jQuery)); diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 5740d54f8b..d468b10287 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -1,4 +1,5 @@ "إرفع", "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" => "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط", @@ -16,7 +17,6 @@ "New" => "جديد", "Text file" => "ملف", "Folder" => "مجلد", -"Upload" => "إرفع", "Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", "Download" => "تحميل", "Upload too large" => "حجم الترفيع أعلى من المسموح", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index bc10979611..a8c2dc97e0 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -1,4 +1,5 @@ "Качване", "Missing a temporary folder" => "Липсва временна папка", "Files" => "Файлове", "Delete" => "Изтриване", @@ -15,7 +16,6 @@ "Save" => "Запис", "New" => "Ново", "Folder" => "Папка", -"Upload" => "Качване", "Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", "Download" => "Изтегляне", "Upload too large" => "Файлът който сте избрали за качване е прекалено голям" diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index e55c881139..e8e19c6898 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -1,4 +1,5 @@ "আপলোড", "Could not move %s - File with this name already exists" => "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", "Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", "Unable to rename file" => "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", "File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", -"generating ZIP-file, it may take some time." => "ZIP- ফাইল তৈরী করা হচ্ছে, এজন্য কিছু সময় আবশ্যক।", "Unable to upload your file as it is a directory or has 0 bytes" => "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট", "Upload Error" => "আপলোড করতে সমস্যা ", "Close" => "বন্ধ", @@ -60,7 +60,6 @@ "Text file" => "টেক্সট ফাইল", "Folder" => "ফোল্ডার", "From link" => " লিংক থেকে", -"Upload" => "আপলোড", "Cancel upload" => "আপলোড বাতিল কর", "Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !", "Download" => "ডাউনলোড", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index f6ddbcd8e1..be330fb82c 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,5 @@ "Puja", "Could not move %s - File with this name already exists" => "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", "Could not move %s" => " No s'ha pogut moure %s", "Unable to rename file" => "No es pot canviar el nom del fitxer", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", "File name cannot be empty." => "El nom del fitxer no pot ser buit.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", -"generating ZIP-file, it may take some time." => "s'estan generant fitxers ZIP, pot trigar una estona.", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", "Upload Error" => "Error en la pujada", "Close" => "Tanca", @@ -60,7 +60,6 @@ "Text file" => "Fitxer de text", "Folder" => "Carpeta", "From link" => "Des d'enllaç", -"Upload" => "Puja", "Cancel upload" => "Cancel·la la pujada", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Download" => "Baixa", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 65ac4b0493..ef02aa73b5 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,4 +1,5 @@ "Odeslat", "Could not move %s - File with this name already exists" => "Nelze přesunout %s - existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", "Unable to rename file" => "Nelze přejmenovat soubor", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' je neplatným názvem souboru.", "File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", -"generating ZIP-file, it may take some time." => "generuji ZIP soubor, může to nějakou dobu trvat.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů", "Upload Error" => "Chyba odesílání", "Close" => "Zavřít", @@ -60,7 +60,6 @@ "Text file" => "Textový soubor", "Folder" => "Složka", "From link" => "Z odkazu", -"Upload" => "Odeslat", "Cancel upload" => "Zrušit odesílání", "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Download" => "Stáhnout", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 02c177a2f1..010af12e96 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,4 +1,5 @@ "Upload", "No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.", "There is no error, the file uploaded with success" => "Der er ingen fejl, filen blev uploadet med success", "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 +22,6 @@ "unshared {files}" => "ikke delte {files}", "deleted {files}" => "slettede {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", -"generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", "Upload Error" => "Fejl ved upload", "Close" => "Luk", @@ -52,7 +52,6 @@ "Text file" => "Tekstfil", "Folder" => "Mappe", "From link" => "Fra link", -"Upload" => "Upload", "Cancel upload" => "Fortryd upload", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Download" => "Download", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 089ce1c0a2..a7d0b0f6ad 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,4 +1,5 @@ "Hochladen", "Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits.", "Could not move %s" => "Konnte %s nicht verschieben", "Unable to rename file" => "Konnte Datei nicht umbenennen", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname", "File name cannot be empty." => "Der Dateiname darf nicht leer sein", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", -"generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", "Upload Error" => "Fehler beim Upload", "Close" => "Schließen", @@ -60,7 +60,6 @@ "Text file" => "Textdatei", "Folder" => "Ordner", "From link" => "Von einem Link", -"Upload" => "Hochladen", "Cancel upload" => "Upload abbrechen", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", "Download" => "Herunterladen", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 5cd4ef7042..a61fdf5be4 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,4 +1,5 @@ "Hochladen", "Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben - Datei mit diesem Namen existiert bereits", "Could not move %s" => "Konnte %s nicht verschieben", "Unable to rename file" => "Konnte Datei nicht umbenennen", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", -"generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", "Upload Error" => "Fehler beim Upload", "Close" => "Schließen", @@ -60,7 +60,6 @@ "Text file" => "Textdatei", "Folder" => "Ordner", "From link" => "Von einem Link", -"Upload" => "Hochladen", "Cancel upload" => "Upload abbrechen", "Nothing in here. Upload something!" => "Alles leer. Bitte laden Sie etwas hoch!", "Download" => "Herunterladen", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 3c1ac53809..274367b32a 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,4 +1,8 @@ "Αποστολή", +"Could not move %s - File with this name already exists" => "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", +"Could not move %s" => "Αδυναμία μετακίνησης του %s", +"Unable to rename file" => "Αδυναμία μετονομασίας αρχείου", "No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", "There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:", @@ -7,6 +11,8 @@ "No file was uploaded" => "Κανένα αρχείο δεν στάλθηκε", "Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος", "Failed to write to disk" => "Αποτυχία εγγραφής στο δίσκο", +"Not enough space available" => "Δεν υπάρχει αρκετός διαθέσιμος χώρος", +"Invalid directory." => "Μη έγκυρος φάκελος.", "Files" => "Αρχεία", "Unshare" => "Διακοπή κοινής χρήσης", "Delete" => "Διαγραφή", @@ -20,8 +26,9 @@ "replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", "unshared {files}" => "μη διαμοιρασμένα {files}", "deleted {files}" => "διαγραμμένα {files}", +"'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", +"File name cannot be empty." => "Το όνομα αρχείου δεν πρέπει να είναι κενό.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.", -"generating ZIP-file, it may take some time." => "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", "Upload Error" => "Σφάλμα Αποστολής", "Close" => "Κλείσιμο", @@ -31,6 +38,7 @@ "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", "URL cannot be empty." => "Η URL δεν πρέπει να είναι κενή.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud", "{count} files scanned" => "{count} αρχεία ανιχνεύτηκαν", "error while scanning" => "σφάλμα κατά την ανίχνευση", "Name" => "Όνομα", @@ -52,7 +60,6 @@ "Text file" => "Αρχείο κειμένου", "Folder" => "Φάκελος", "From link" => "Από σύνδεσμο", -"Upload" => "Αποστολή", "Cancel upload" => "Ακύρωση αποστολής", "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανέβασε κάτι!", "Download" => "Λήψη", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 92c03ee882..29a0c5faff 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -1,4 +1,5 @@ "Alŝuti", "No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.", "There is no error, the file uploaded with success" => "Ne estas eraro, la dosiero alŝutiĝis sukcese", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ", @@ -21,7 +22,6 @@ "unshared {files}" => "malkunhaviĝis {files}", "deleted {files}" => "foriĝis {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas.", -"generating ZIP-file, it may take some time." => "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo", "Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", "Upload Error" => "Alŝuta eraro", "Close" => "Fermi", @@ -52,7 +52,6 @@ "Text file" => "Tekstodosiero", "Folder" => "Dosierujo", "From link" => "El ligilo", -"Upload" => "Alŝuti", "Cancel upload" => "Nuligi alŝuton", "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", "Download" => "Elŝuti", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 885ed3770e..98b977f206 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,4 +1,5 @@ "Subir", "Could not move %s - File with this name already exists" => "No se puede mover %s - Ya existe un archivo con ese nombre", "Could not move %s" => "No se puede mover %s", "Unable to rename file" => "No se puede renombrar el archivo", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", -"generating ZIP-file, it may take some time." => "generando un fichero ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes", "Upload Error" => "Error al subir el archivo", "Close" => "cerrrar", @@ -59,7 +59,6 @@ "Text file" => "Archivo de texto", "Folder" => "Carpeta", "From link" => "Desde el enlace", -"Upload" => "Subir", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!", "Download" => "Descargar", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 650a3149e4..3e80e5e1b2 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,4 +1,5 @@ "Subir", "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 ", "Unable to rename file" => "No fue posible cambiar el nombre al archivo", @@ -28,7 +29,6 @@ "'.' 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.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", -"generating ZIP-file, it may take some time." => "generando un archivo ZIP, puede llevar un tiempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes", "Upload Error" => "Error al subir el archivo", "Close" => "Cerrar", @@ -60,7 +60,6 @@ "Text file" => "Archivo de texto", "Folder" => "Carpeta", "From link" => "Desde enlace", -"Upload" => "Subir", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!", "Download" => "Descargar", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 6996b0a791..8305cf0ede 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,4 +1,5 @@ "Lae üles", "No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga", "There is no error, the file uploaded with success" => "Ühtegi viga pole, fail on üles laetud", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse", @@ -20,7 +21,6 @@ "unshared {files}" => "jagamata {files}", "deleted {files}" => "kustutatud {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.", -"generating ZIP-file, it may take some time." => "ZIP-faili loomine, see võib veidi aega võtta.", "Unable to upload your file as it is a directory or has 0 bytes" => "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti", "Upload Error" => "Üleslaadimise viga", "Close" => "Sulge", @@ -51,7 +51,6 @@ "Text file" => "Tekstifail", "Folder" => "Kaust", "From link" => "Allikast", -"Upload" => "Lae üles", "Cancel upload" => "Tühista üleslaadimine", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Download" => "Lae alla", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 96f59a668e..a1cb563212 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,4 +1,8 @@ "Igo", +"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", +"Unable to rename file" => "Ezin izan da fitxategia berrizendatu", "No file was uploaded. Unknown error" => "Ez da fitxategirik igo. Errore ezezaguna", "There is no error, the file uploaded with success" => "Ez da arazorik izan, fitxategia ongi igo da", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:", @@ -7,6 +11,8 @@ "No file was uploaded" => "Ez da fitxategirik igo", "Missing a temporary folder" => "Aldi baterako karpeta falta da", "Failed to write to disk" => "Errore bat izan da diskoan idazterakoan", +"Not enough space available" => "Ez dago leku nahikorik.", +"Invalid directory." => "Baliogabeko karpeta.", "Files" => "Fitxategiak", "Unshare" => "Ez elkarbanatu", "Delete" => "Ezabatu", @@ -20,8 +26,9 @@ "replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du", "unshared {files}" => "elkarbanaketa utzita {files}", "deleted {files}" => "ezabatuta {files}", +"'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", +"File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta.", -"generating ZIP-file, it may take some time." => "ZIP-fitxategia sortzen ari da, denbora har dezake", "Unable to upload your file as it is a directory or has 0 bytes" => "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu", "Upload Error" => "Igotzean errore bat suertatu da", "Close" => "Itxi", @@ -31,6 +38,7 @@ "Upload cancelled." => "Igoera ezeztatuta", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", "URL cannot be empty." => "URLa ezin da hutsik egon.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du", "{count} files scanned" => "{count} fitxategi eskaneatuta", "error while scanning" => "errore bat egon da eskaneatzen zen bitartean", "Name" => "Izena", @@ -52,7 +60,6 @@ "Text file" => "Testu fitxategia", "Folder" => "Karpeta", "From link" => "Estekatik", -"Upload" => "Igo", "Cancel upload" => "Ezeztatu igoera", "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", "Download" => "Deskargatu", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 062df6a56b..24059bdeab 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,4 +1,5 @@ "بارگذاری", "No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس", "There is no error, the file uploaded with success" => "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE", @@ -12,7 +13,6 @@ "replace" => "جایگزین", "cancel" => "لغو", "undo" => "بازگشت", -"generating ZIP-file, it may take some time." => "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد", "Unable to upload your file as it is a directory or has 0 bytes" => "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد", "Upload Error" => "خطا در بار گذاری", "Close" => "بستن", @@ -32,7 +32,6 @@ "New" => "جدید", "Text file" => "فایل متنی", "Folder" => "پوشه", -"Upload" => "بارگذاری", "Cancel upload" => "متوقف کردن بار گذاری", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Download" => "بارگیری", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index e7e4b04437..496b9a7faf 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,4 +1,5 @@ "Lähetä", "Could not move %s - File with this name already exists" => "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", "Could not move %s" => "Kohteen %s siirto ei onnistunut", "Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut", @@ -23,7 +24,6 @@ "'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", "File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", -"generating ZIP-file, it may take some time." => "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio", "Upload Error" => "Lähetysvirhe.", "Close" => "Sulje", @@ -50,7 +50,6 @@ "Text file" => "Tekstitiedosto", "Folder" => "Kansio", "From link" => "Linkistä", -"Upload" => "Lähetä", "Cancel upload" => "Peru lähetys", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", "Download" => "Lataa", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index f14759ff8f..162c2e2dfd 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,5 @@ "Envoyer", "Could not move %s - File with this name already exists" => "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", "Could not move %s" => "Impossible de déplacer %s", "Unable to rename file" => "Impossible de renommer le fichier", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", "File name cannot be empty." => "Le nom de fichier ne peut être vide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", -"generating ZIP-file, it may take some time." => "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet.", "Upload Error" => "Erreur de chargement", "Close" => "Fermer", @@ -60,7 +60,6 @@ "Text file" => "Fichier texte", "Folder" => "Dossier", "From link" => "Depuis le lien", -"Upload" => "Envoyer", "Cancel upload" => "Annuler l'envoi", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Download" => "Télécharger", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index c15066163c..d24680eaa8 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,4 +1,5 @@ "Enviar", "Could not move %s - File with this name already exists" => "Non se moveu %s - Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non se puido mover %s", "Unable to rename file" => "Non se pode renomear o ficheiro", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' é un nonme de ficheiro non válido", "File name cannot be empty." => "O nome de ficheiro non pode estar baldeiro", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten.", -"generating ZIP-file, it may take some time." => "xerando un ficheiro ZIP, o que pode levar un anaco.", "Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes", "Upload Error" => "Erro na subida", "Close" => "Pechar", @@ -60,7 +60,6 @@ "Text file" => "Ficheiro de texto", "Folder" => "Cartafol", "From link" => "Dende a ligazón", -"Upload" => "Enviar", "Cancel upload" => "Cancelar a subida", "Nothing in here. Upload something!" => "Nada por aquí. Envía algo.", "Download" => "Descargar", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index bac9a8a6a5..8acc544cf5 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -1,4 +1,5 @@ "העלאה", "No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.", "There is no error, the file uploaded with success" => "לא אירעה תקלה, הקבצים הועלו בהצלחה", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:", @@ -21,7 +22,6 @@ "unshared {files}" => "בוטל שיתופם של {files}", "deleted {files}" => "{files} נמחקו", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", -"generating ZIP-file, it may take some time." => "יוצר קובץ ZIP, אנא המתן.", "Unable to upload your file as it is a directory or has 0 bytes" => "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים", "Upload Error" => "שגיאת העלאה", "Close" => "סגירה", @@ -52,7 +52,6 @@ "Text file" => "קובץ טקסט", "Folder" => "תיקייה", "From link" => "מקישור", -"Upload" => "העלאה", "Cancel upload" => "ביטול ההעלאה", "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", "Download" => "הורדה", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index 4db4ac3f3e..a9a7354d1d 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -1,4 +1,5 @@ "Pošalji", "There is no error, the file uploaded with success" => "Datoteka je poslana uspješno i bez pogrešaka", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu", "The uploaded file was only partially uploaded" => "Datoteka je poslana samo djelomično", @@ -13,7 +14,6 @@ "suggest name" => "predloži ime", "cancel" => "odustani", "undo" => "vrati", -"generating ZIP-file, it may take some time." => "generiranje ZIP datoteke, ovo može potrajati.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij", "Upload Error" => "Pogreška pri slanju", "Close" => "Zatvori", @@ -36,7 +36,6 @@ "New" => "novo", "Text file" => "tekstualna datoteka", "Folder" => "mapa", -"Upload" => "Pošalji", "Cancel upload" => "Prekini upload", "Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!", "Download" => "Preuzmi", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index b0d46ee7a2..57cc0a8630 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,4 +1,8 @@ "Feltöltés", +"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", +"Unable to rename file" => "Nem lehet átnevezni a fájlt", "No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba", "There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", @@ -25,7 +29,6 @@ "'.' is an invalid file name." => "'.' fájlnév érvénytelen.", "File name cannot be empty." => "A fájlnév nem lehet semmi.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", -"generating ZIP-file, it may take some time." => "ZIP-fájl generálása, ez eltarthat egy ideig.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", "Upload Error" => "Feltöltési hiba", "Close" => "Bezárás", @@ -35,6 +38,7 @@ "Upload cancelled." => "A feltöltést megszakítottuk.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", "URL cannot be empty." => "Az URL nem lehet semmi.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges.", "{count} files scanned" => "{count} fájlt találtunk", "error while scanning" => "Hiba a fájllista-ellenőrzés során", "Name" => "Név", @@ -56,7 +60,6 @@ "Text file" => "Szövegfájl", "Folder" => "Mappa", "From link" => "Feltöltés linkről", -"Upload" => "Feltöltés", "Cancel upload" => "A feltöltés megszakítása", "Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", "Download" => "Letöltés", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index ada64cd757..a7babb27d9 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -1,4 +1,5 @@ "Incargar", "The uploaded file was only partially uploaded" => "Le file incargate solmente esseva incargate partialmente", "No file was uploaded" => "Nulle file esseva incargate", "Missing a temporary folder" => "Manca un dossier temporari", @@ -13,7 +14,6 @@ "New" => "Nove", "Text file" => "File de texto", "Folder" => "Dossier", -"Upload" => "Incargar", "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", "Download" => "Discargar", "Upload too large" => "Incargamento troppo longe" diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 5d934e97e7..46d9ad1a75 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -1,4 +1,5 @@ "Unggah", "There is no error, the file uploaded with success" => "Tidak ada galat, berkas sukses diunggah", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML.", "The uploaded file was only partially uploaded" => "Berkas hanya diunggah sebagian", @@ -11,7 +12,6 @@ "replace" => "mengganti", "cancel" => "batalkan", "undo" => "batal dikerjakan", -"generating ZIP-file, it may take some time." => "membuat berkas ZIP, ini mungkin memakan waktu.", "Unable to upload your file as it is a directory or has 0 bytes" => "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte", "Upload Error" => "Terjadi Galat Pengunggahan", "Close" => "tutup", @@ -32,7 +32,6 @@ "New" => "Baru", "Text file" => "Berkas teks", "Folder" => "Folder", -"Upload" => "Unggah", "Cancel upload" => "Batal mengunggah", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", "Download" => "Unduh", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 2eff686611..c3adf0984e 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -1,4 +1,5 @@ "Senda inn", "Could not move %s - File with this name already exists" => "Gat ekki fært %s - Skrá með þessu nafni er þegar til", "Could not move %s" => "Gat ekki fært %s", "Unable to rename file" => "Gat ekki endurskýrt skrá", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", "File name cannot be empty." => "Nafn skráar má ekki vera tómt", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", -"generating ZIP-file, it may take some time." => "bý til ZIP skrá, það gæti tekið smá stund.", "Unable to upload your file as it is a directory or has 0 bytes" => "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti.", "Upload Error" => "Villa við innsendingu", "Close" => "Loka", @@ -60,7 +60,6 @@ "Text file" => "Texta skrá", "Folder" => "Mappa", "From link" => "Af tengli", -"Upload" => "Senda inn", "Cancel upload" => "Hætta við innsendingu", "Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!", "Download" => "Niðurhal", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index a54e424694..8f9606a7de 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,5 @@ "Carica", "Could not move %s - File with this name already exists" => "Impossibile spostare %s - un file con questo nome esiste già", "Could not move %s" => "Impossibile spostare %s", "Unable to rename file" => "Impossibile rinominare il file", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' non è un nome file valido.", "File name cannot be empty." => "Il nome del file non può essere vuoto.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", -"generating ZIP-file, it may take some time." => "creazione file ZIP, potrebbe richiedere del tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte", "Upload Error" => "Errore di invio", "Close" => "Chiudi", @@ -60,7 +60,6 @@ "Text file" => "File di testo", "Folder" => "Cartella", "From link" => "Da collegamento", -"Upload" => "Carica", "Cancel upload" => "Annulla invio", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", "Download" => "Scarica", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 4621cc5d4e..750b4644d7 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,5 @@ "アップロード", "Could not move %s - File with this name already exists" => "%s を移動できませんでした ― この名前のファイルはすでに存在します", "Could not move %s" => "%s を移動できませんでした", "Unable to rename file" => "ファイル名の変更ができません", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' は無効なファイル名です。", "File name cannot be empty." => "ファイル名を空にすることはできません。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", -"generating ZIP-file, it may take some time." => "ZIPファイルを生成中です、しばらくお待ちください。", "Unable to upload your file as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのファイルはアップロードできません", "Upload Error" => "アップロードエラー", "Close" => "閉じる", @@ -60,7 +60,6 @@ "Text file" => "テキストファイル", "Folder" => "フォルダ", "From link" => "リンク", -"Upload" => "アップロード", "Cancel upload" => "アップロードをキャンセル", "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", "Download" => "ダウンロード", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index 9a73abfbe3..3f5a532f6b 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -1,4 +1,5 @@ "ატვირთვა", "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" => "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა", @@ -18,7 +19,6 @@ "replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", "unshared {files}" => "გაზიარება მოხსნილი {files}", "deleted {files}" => "წაშლილი {files}", -"generating ZIP-file, it may take some time." => "ZIP-ფაილის გენერირება, ამას ჭირდება გარკვეული დრო.", "Unable to upload your file as it is a directory or has 0 bytes" => "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს", "Upload Error" => "შეცდომა ატვირთვისას", "Close" => "დახურვა", @@ -47,7 +47,6 @@ "New" => "ახალი", "Text file" => "ტექსტური ფაილი", "Folder" => "საქაღალდე", -"Upload" => "ატვირთვა", "Cancel upload" => "ატვირთვის გაუქმება", "Nothing in here. Upload something!" => "აქ არაფერი არ არის. ატვირთე რამე!", "Download" => "ჩამოტვირთვა", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 928b7cbb7e..891b036761 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,4 +1,5 @@ "업로드", "Could not move %s - File with this name already exists" => "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함", "Could not move %s" => "%s 항목을 이딩시키지 못하였음", "Unable to rename file" => "파일 이름바꾸기 할 수 없음", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", "File name cannot be empty." => "파일이름은 공란이 될 수 없습니다.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", -"generating ZIP-file, it may take some time." => "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다.", "Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다", "Upload Error" => "업로드 오류", "Close" => "닫기", @@ -60,7 +60,6 @@ "Text file" => "텍스트 파일", "Folder" => "폴더", "From link" => "링크에서", -"Upload" => "업로드", "Cancel upload" => "업로드 취소", "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", "Download" => "다운로드", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index d6cf645079..ddd2c14278 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,9 +1,9 @@ "بارکردن", "Close" => "داخستن", "URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Name" => "ناو", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", -"Upload" => "بارکردن", "Download" => "داگرتن" ); diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 229ec3f202..b041079f0d 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -1,4 +1,5 @@ "Eroplueden", "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 was only partially uploaded" => "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn", @@ -10,7 +11,6 @@ "replace" => "ersetzen", "cancel" => "ofbriechen", "undo" => "réckgängeg man", -"generating ZIP-file, it may take some time." => "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass.", "Upload Error" => "Fehler beim eroplueden", "Close" => "Zoumaachen", @@ -30,7 +30,6 @@ "New" => "Nei", "Text file" => "Text Fichier", "Folder" => "Dossier", -"Upload" => "Eroplueden", "Cancel upload" => "Upload ofbriechen", "Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!", "Download" => "Eroflueden", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index fd9824e0c1..22490f8e9f 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -1,4 +1,5 @@ "Įkelti", "There is no error, the file uploaded with success" => "Klaidų nėra, failas įkeltas sėkmingai", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Įkeliamo failo dydis viršija MAX_FILE_SIZE parametrą, kuris yra nustatytas HTML formoje", "The uploaded file was only partially uploaded" => "Failas buvo įkeltas tik dalinai", @@ -18,7 +19,6 @@ "replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}", "unshared {files}" => "nebesidalinti {files}", "deleted {files}" => "ištrinti {files}", -"generating ZIP-file, it may take some time." => "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko.", "Unable to upload your file as it is a directory or has 0 bytes" => "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas", "Upload Error" => "Įkėlimo klaida", "Close" => "Užverti", @@ -47,7 +47,6 @@ "New" => "Naujas", "Text file" => "Teksto failas", "Folder" => "Katalogas", -"Upload" => "Įkelti", "Cancel upload" => "Atšaukti siuntimą", "Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!", "Download" => "Atsisiųsti", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 3336798491..589b7020c4 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -1,4 +1,5 @@ "Augšuplādet", "There is no error, the file uploaded with success" => "Viss kārtībā, augšupielāde veiksmīga", "No file was uploaded" => "Neviens fails netika augšuplādēts", "Missing a temporary folder" => "Trūkst pagaidu mapes", @@ -11,7 +12,6 @@ "suggest name" => "Ieteiktais nosaukums", "cancel" => "atcelt", "undo" => "vienu soli atpakaļ", -"generating ZIP-file, it may take some time." => "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida", "Unable to upload your file as it is a directory or has 0 bytes" => "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)", "Upload Error" => "Augšuplādēšanas laikā radās kļūda", "Pending" => "Gaida savu kārtu", @@ -30,7 +30,6 @@ "New" => "Jauns", "Text file" => "Teksta fails", "Folder" => "Mape", -"Upload" => "Augšuplādet", "Cancel upload" => "Atcelt augšuplādi", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšuplādēt", "Download" => "Lejuplādēt", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 3f48a69874..2916e86a94 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -1,4 +1,5 @@ "Подигни", "No file was uploaded. Unknown error" => "Ниту еден фајл не се вчита. Непозната грешка", "There is no error, the file uploaded with success" => "Нема грешка, датотеката беше подигната успешно", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:", @@ -21,7 +22,6 @@ "unshared {files}" => "без споделување {files}", "deleted {files}" => "избришани {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", -"generating ZIP-file, it may take some time." => "Се генерира ZIP фајлот, ќе треба извесно време.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти", "Upload Error" => "Грешка при преземање", "Close" => "Затвои", @@ -52,7 +52,6 @@ "Text file" => "Текстуална датотека", "Folder" => "Папка", "From link" => "Од врска", -"Upload" => "Подигни", "Cancel upload" => "Откажи прикачување", "Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!", "Download" => "Преземи", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 7fa8784084..23a2783cd9 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -1,4 +1,5 @@ "Muat naik", "No file was uploaded. Unknown error" => "Tiada fail dimuatnaik. Ralat tidak diketahui.", "There is no error, the file uploaded with success" => "Tiada ralat, fail berjaya dimuat naik.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML ", @@ -10,7 +11,6 @@ "Delete" => "Padam", "replace" => "ganti", "cancel" => "Batal", -"generating ZIP-file, it may take some time." => "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes", "Upload Error" => "Muat naik ralat", "Close" => "Tutup", @@ -30,7 +30,6 @@ "New" => "Baru", "Text file" => "Fail teks", "Folder" => "Folder", -"Upload" => "Muat naik", "Cancel upload" => "Batal muat naik", "Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!", "Download" => "Muat turun", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 9be868164b..48b873e1ef 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -1,4 +1,5 @@ "Last opp", "No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.", "There is no error, the file uploaded with success" => "Det er ingen feil. Filen ble lastet opp.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet", @@ -19,7 +20,6 @@ "replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}", "deleted {files}" => "slettet {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt.", -"generating ZIP-file, it may take some time." => "opprettet ZIP-fil, dette kan ta litt tid", "Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes", "Upload Error" => "Opplasting feilet", "Close" => "Lukk", @@ -50,7 +50,6 @@ "Text file" => "Tekstfil", "Folder" => "Mappe", "From link" => "Fra link", -"Upload" => "Last opp", "Cancel upload" => "Avbryt opplasting", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Download" => "Last ned", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 48c4ac74c2..b046c38b79 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -1,4 +1,5 @@ "Upload", "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", "Unable to rename file" => "Kan bestand niet hernoemen", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", "File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", -"generating ZIP-file, it may take some time." => "aanmaken ZIP-file, dit kan enige tijd duren.", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", "Upload Error" => "Upload Fout", "Close" => "Sluit", @@ -60,7 +60,6 @@ "Text file" => "Tekstbestand", "Folder" => "Map", "From link" => "Vanaf link", -"Upload" => "Upload", "Cancel upload" => "Upload afbreken", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Download" => "Download", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 04e01a39cf..8abbe1b6cd 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -1,4 +1,5 @@ "Last opp", "There is no error, the file uploaded with success" => "Ingen feil, fila vart lasta opp", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet", "The uploaded file was only partially uploaded" => "Fila vart berre delvis lasta opp", @@ -15,7 +16,6 @@ "New" => "Ny", "Text file" => "Tekst fil", "Folder" => "Mappe", -"Upload" => "Last opp", "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", "Download" => "Last ned", "Upload too large" => "For stor opplasting", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 36bbb43339..87ec98e4cf 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -1,4 +1,5 @@ "Amontcarga", "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 was only partially uploaded" => "Lo fichièr foguèt pas completament amontcargat", @@ -13,7 +14,6 @@ "suggest name" => "nom prepausat", "cancel" => "anulla", "undo" => "defar", -"generating ZIP-file, it may take some time." => "Fichièr ZIP a se far, aquò pòt trigar un briu.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet.", "Upload Error" => "Error d'amontcargar", "Pending" => "Al esperar", @@ -35,7 +35,6 @@ "New" => "Nòu", "Text file" => "Fichièr de tèxte", "Folder" => "Dorsièr", -"Upload" => "Amontcarga", "Cancel upload" => " Anulla l'amontcargar", "Nothing in here. Upload something!" => "Pas res dedins. Amontcarga qualquaren", "Download" => "Avalcarga", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 226dae896c..4166bac545 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -1,4 +1,5 @@ "Prześlij", "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", "Unable to rename file" => "Nie można zmienić nazwy pliku", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' jest nieprawidłową nazwą pliku.", "File name cannot be empty." => "Nazwa pliku nie może być pusta.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone.", -"generating ZIP-file, it may take some time." => "Generowanie pliku ZIP, może potrwać pewien czas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów", "Upload Error" => "Błąd wczytywania", "Close" => "Zamknij", @@ -60,7 +60,6 @@ "Text file" => "Plik tekstowy", "Folder" => "Katalog", "From link" => "Z linku", -"Upload" => "Prześlij", "Cancel upload" => "Przestań wysyłać", "Nothing in here. Upload something!" => "Brak zawartości. Proszę wysłać pliki!", "Download" => "Pobiera element", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index ece24c7a2f..b199ded9fe 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -1,4 +1,5 @@ "Carregar", "No file was uploaded. Unknown error" => "Nenhum arquivo foi transferido. Erro desconhecido", "There is no error, the file uploaded with success" => "Não houve nenhum erro, o arquivo foi transferido com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: ", @@ -21,7 +22,6 @@ "unshared {files}" => "{files} não compartilhados", "deleted {files}" => "{files} apagados", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", -"generating ZIP-file, it may take some time." => "gerando arquivo ZIP, isso pode levar um tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes.", "Upload Error" => "Erro de envio", "Close" => "Fechar", @@ -52,7 +52,6 @@ "Text file" => "Arquivo texto", "Folder" => "Pasta", "From link" => "Do link", -"Upload" => "Carregar", "Cancel upload" => "Cancelar upload", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Download" => "Baixar", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index fb22894b34..d3f2251326 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,5 @@ "Enviar", "Could not move %s - File with this name already exists" => "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", "Could not move %s" => "Não foi possível move o ficheiro %s", "Unable to rename file" => "Não foi possível renomear o ficheiro", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", -"generating ZIP-file, it may take some time." => "a gerar o ficheiro ZIP, poderá demorar algum tempo.", "Unable to upload your file as it is a directory or has 0 bytes" => "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes", "Upload Error" => "Erro no envio", "Close" => "Fechar", @@ -60,7 +60,6 @@ "Text file" => "Ficheiro de texto", "Folder" => "Pasta", "From link" => "Da ligação", -"Upload" => "Enviar", "Cancel upload" => "Cancelar envio", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Download" => "Transferir", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index c34a341e53..fdba003bf3 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,4 +1,5 @@ "Încarcă", "Could not move %s" => "Nu s-a putut muta %s", "Unable to rename file" => "Nu s-a putut redenumi fișierul", "No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută", @@ -27,7 +28,6 @@ "'.' is an invalid file name." => "'.' este un nume invalid de fișier.", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.", -"generating ZIP-file, it may take some time." => "se generază fișierul ZIP, va dura ceva timp.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.", "Upload Error" => "Eroare la încărcare", "Close" => "Închide", @@ -37,6 +37,7 @@ "Upload cancelled." => "Încărcare anulată.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", "URL cannot be empty." => "Adresa URL nu poate fi goală.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Invalid folder name. Usage of 'Shared' is reserved by Ownclou", "{count} files scanned" => "{count} fisiere scanate", "error while scanning" => "eroare la scanarea", "Name" => "Nume", @@ -58,7 +59,6 @@ "Text file" => "Fișier text", "Folder" => "Dosar", "From link" => "de la adresa", -"Upload" => "Încarcă", "Cancel upload" => "Anulează încărcarea", "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", "Download" => "Descarcă", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 49ead61f67..cb17476b9f 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -1,4 +1,5 @@ "Загрузить", "Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", "Unable to rename file" => "Невозможно переименовать файл", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' - неправильное имя файла.", "File name cannot be empty." => "Имя файла не может быть пустым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", -"generating ZIP-file, it may take some time." => "создание ZIP-файла, это может занять некоторое время.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", "Upload Error" => "Ошибка загрузки", "Close" => "Закрыть", @@ -60,7 +60,6 @@ "Text file" => "Текстовый файл", "Folder" => "Папка", "From link" => "Из ссылки", -"Upload" => "Загрузить", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Download" => "Скачать", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index 16bcc54e59..4f8bd1d5b9 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -1,4 +1,5 @@ "Загрузить ", "No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка", "There is no error, the file uploaded with success" => "Ошибка отсутствует, файл загружен успешно.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:", @@ -21,7 +22,6 @@ "unshared {files}" => "Cовместное использование прекращено {файлы}", "deleted {files}" => "удалено {файлы}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы.", -"generating ZIP-file, it may take some time." => "Создание ZIP-файла, это может занять некоторое время.", "Unable to upload your file as it is a directory or has 0 bytes" => "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией", "Upload Error" => "Ошибка загрузки", "Close" => "Закрыть", @@ -52,7 +52,6 @@ "Text file" => "Текстовый файл", "Folder" => "Папка", "From link" => "По ссылке", -"Upload" => "Загрузить ", "Cancel upload" => "Отмена загрузки", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Download" => "Загрузить", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index e1e06c4f81..8b276bdaa8 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -1,4 +1,5 @@ "උඩුගත කිරීම", "No file was uploaded. Unknown error" => "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්", "There is no error, the file uploaded with success" => "නිවැරදි ව ගොනුව උඩුගත කෙරිනි", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය", @@ -14,7 +15,6 @@ "suggest name" => "නමක් යෝජනා කරන්න", "cancel" => "අත් හරින්න", "undo" => "නිෂ්ප්‍රභ කරන්න", -"generating ZIP-file, it may take some time." => "ගොනුවක් සෑදෙමින් පවතී. කෙටි වේලාවක් ගත විය හැක", "Upload Error" => "උඩුගත කිරීමේ දෝශයක්", "Close" => "වසන්න", "1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ", @@ -39,7 +39,6 @@ "Text file" => "පෙළ ගොනුව", "Folder" => "ෆෝල්ඩරය", "From link" => "යොමුවෙන්", -"Upload" => "උඩුගත කිරීම", "Cancel upload" => "උඩුගත කිරීම අත් හරින්න", "Nothing in here. Upload something!" => "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න", "Download" => "බාගත කිරීම", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 003b1aff22..b28e2648fe 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -1,4 +1,5 @@ "Odoslať", "No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba", "There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:", @@ -21,7 +22,6 @@ "unshared {files}" => "zdieľanie zrušené pre {files}", "deleted {files}" => "zmazané {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.", -"generating ZIP-file, it may take some time." => "generujem ZIP-súbor, môže to chvíľu trvať.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov.", "Upload Error" => "Chyba odosielania", "Close" => "Zavrieť", @@ -52,7 +52,6 @@ "Text file" => "Textový súbor", "Folder" => "Priečinok", "From link" => "Z odkazu", -"Upload" => "Odoslať", "Cancel upload" => "Zrušiť odosielanie", "Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!", "Download" => "Stiahnuť", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 2a0f450638..34544e3401 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,4 +1,5 @@ "Pošlji", "No file was uploaded. Unknown error" => "Nobena datoteka ni naložena. Neznana napaka.", "There is no error, the file uploaded with success" => "Datoteka je uspešno naložena brez napak.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:", @@ -21,7 +22,6 @@ "unshared {files}" => "odstranjeno iz souporabe {files}", "deleted {files}" => "izbrisano {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", -"generating ZIP-file, it may take some time." => "Ustvarjanje datoteke ZIP. To lahko traja nekaj časa.", "Unable to upload your file as it is a directory or has 0 bytes" => "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov.", "Upload Error" => "Napaka med nalaganjem", "Close" => "Zapri", @@ -52,7 +52,6 @@ "Text file" => "Besedilna datoteka", "Folder" => "Mapa", "From link" => "Iz povezave", -"Upload" => "Pošlji", "Cancel upload" => "Prekliči pošiljanje", "Nothing in here. Upload something!" => "Tukaj ni ničesar. Naložite kaj!", "Download" => "Prejmi", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index ecde8be4cc..3da6e27373 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -1,4 +1,5 @@ "Отпреми", "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 MAX_FILE_SIZE directive that was specified in the HTML form" => "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу", @@ -20,7 +21,6 @@ "unshared {files}" => "укинуто дељење {files}", "deleted {files}" => "обрисано {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", -"generating ZIP-file, it may take some time." => "правим ZIP датотеку…", "Unable to upload your file as it is a directory or has 0 bytes" => "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова", "Upload Error" => "Грешка при отпремању", "Close" => "Затвори", @@ -50,7 +50,6 @@ "Text file" => "текстуална датотека", "Folder" => "фасцикла", "From link" => "Са везе", -"Upload" => "Отпреми", "Cancel upload" => "Прекини отпремање", "Nothing in here. Upload something!" => "Овде нема ничег. Отпремите нешто!", "Download" => "Преузми", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index fddaf5840c..117d437f0b 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -1,4 +1,5 @@ "Pošalji", "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 was only partially uploaded" => "Poslati fajl je samo delimično otpremljen!", @@ -12,7 +13,6 @@ "Modified" => "Zadnja izmena", "Maximum upload size" => "Maksimalna veličina pošiljke", "Save" => "Snimi", -"Upload" => "Pošalji", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", "Download" => "Preuzmi", "Upload too large" => "Pošiljka je prevelika", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 7277ec1785..df75f15e7a 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -1,4 +1,5 @@ "Ladda upp", "No file was uploaded. Unknown error" => "Ingen fil uppladdad. Okänt fel", "There is no error, the file uploaded with success" => "Inga fel uppstod. Filen laddades upp utan problem", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:", @@ -25,7 +26,6 @@ "'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", "File name cannot be empty." => "Filnamn kan inte vara tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", -"generating ZIP-file, it may take some time." => "genererar ZIP-fil, det kan ta lite tid.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes.", "Upload Error" => "Uppladdningsfel", "Close" => "Stäng", @@ -57,7 +57,6 @@ "Text file" => "Textfil", "Folder" => "Mapp", "From link" => "Från länk", -"Upload" => "Ladda upp", "Cancel upload" => "Avbryt uppladdning", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Download" => "Ladda ner", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 16cab5cf96..d7a9313d97 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -1,4 +1,5 @@ "பதிவேற்றுக", "No file was uploaded. Unknown error" => "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு", "There is no error, the file uploaded with success" => "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது", @@ -20,7 +21,6 @@ "unshared {files}" => "பகிரப்படாதது {கோப்புகள்}", "deleted {files}" => "நீக்கப்பட்டது {கோப்புகள்}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", -"generating ZIP-file, it may take some time." => " ZIP கோப்பு உருவாக்கப்படுகின்றது, இது சில நேரம் ஆகலாம்.", "Unable to upload your file as it is a directory or has 0 bytes" => "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை", "Upload Error" => "பதிவேற்றல் வழு", "Close" => "மூடுக", @@ -51,7 +51,6 @@ "Text file" => "கோப்பு உரை", "Folder" => "கோப்புறை", "From link" => "இணைப்பிலிருந்து", -"Upload" => "பதிவேற்றுக", "Cancel upload" => "பதிவேற்றலை இரத்து செய்க", "Nothing in here. Upload something!" => "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!", "Download" => "பதிவிறக்குக", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 3fda142a4e..f2394f0449 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,4 +1,5 @@ "อัพโหลด", "No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", "There is no error, the file uploaded with success" => "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", @@ -21,7 +22,6 @@ "unshared {files}" => "ยกเลิกการแชร์แล้ว {files} ไฟล์", "deleted {files}" => "ลบไฟล์แล้ว {files} ไฟล์", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้", -"generating ZIP-file, it may take some time." => "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่", "Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์", "Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด", "Close" => "ปิด", @@ -52,7 +52,6 @@ "Text file" => "ไฟล์ข้อความ", "Folder" => "แฟ้มเอกสาร", "From link" => "จากลิงก์", -"Upload" => "อัพโหลด", "Cancel upload" => "ยกเลิกการอัพโหลด", "Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", "Download" => "ดาวน์โหลด", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index b32da7de25..c49c7e47dd 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,4 +1,5 @@ "Yükle", "No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata", "There is no error, the file uploaded with success" => "Bir hata yok, dosya başarıyla yüklendi", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.", @@ -21,7 +22,6 @@ "unshared {files}" => "paylaşılmamış {files}", "deleted {files}" => "silinen {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", -"generating ZIP-file, it may take some time." => "ZIP dosyası oluşturuluyor, biraz sürebilir.", "Unable to upload your file as it is a directory or has 0 bytes" => "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi", "Upload Error" => "Yükleme hatası", "Close" => "Kapat", @@ -52,7 +52,6 @@ "Text file" => "Metin dosyası", "Folder" => "Klasör", "From link" => "Bağlantıdan", -"Upload" => "Yükle", "Cancel upload" => "Yüklemeyi iptal et", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", "Download" => "İndir", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index eba48a41cb..f1279bc77c 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -1,4 +1,5 @@ "Відвантажити", "No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка", "There is no error, the file uploaded with success" => "Файл успішно вивантажено без помилок.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: ", @@ -21,7 +22,6 @@ "unshared {files}" => "неопубліковано {files}", "deleted {files}" => "видалено {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені.", -"generating ZIP-file, it may take some time." => "Створення ZIP-файлу, це може зайняти певний час.", "Unable to upload your file as it is a directory or has 0 bytes" => "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт", "Upload Error" => "Помилка завантаження", "Close" => "Закрити", @@ -52,7 +52,6 @@ "Text file" => "Текстовий файл", "Folder" => "Папка", "From link" => "З посилання", -"Upload" => "Відвантажити", "Cancel upload" => "Перервати завантаження", "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", "Download" => "Завантажити", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 7d5c529050..dcaf890001 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -1,4 +1,5 @@ "Tải lên", "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", "There is no error, the file uploaded with success" => "Không có lỗi, các tập tin đã được tải lên thành công", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định", @@ -20,7 +21,6 @@ "unshared {files}" => "hủy chia sẽ {files}", "deleted {files}" => "đã xóa {files}", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng.", -"generating ZIP-file, it may take some time." => "Tạo tập tin ZIP, điều này có thể làm mất một chút thời gian", "Unable to upload your file as it is a directory or has 0 bytes" => "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte", "Upload Error" => "Tải lên lỗi", "Close" => "Đóng", @@ -51,7 +51,6 @@ "Text file" => "Tập tin văn bản", "Folder" => "Thư mục", "From link" => "Từ liên kết", -"Upload" => "Tải lên", "Cancel upload" => "Hủy upload", "Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", "Download" => "Tải xuống", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index e60df8291a..4416ce9a4a 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ "上传", "No file was uploaded. Unknown error" => "没有上传文件。未知错误", "There is no error, the file uploaded with success" => "没有任何错误,文件上传成功了", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了HTML表单指定的MAX_FILE_SIZE", @@ -19,7 +20,6 @@ "replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", "unshared {files}" => "未分享的 {files}", "deleted {files}" => "已删除的 {files}", -"generating ZIP-file, it may take some time." => "正在生成ZIP文件,这可能需要点时间", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", "Upload Error" => "上传错误", "Close" => "关闭", @@ -50,7 +50,6 @@ "Text file" => "文本文档", "Folder" => "文件夹", "From link" => "来自链接", -"Upload" => "上传", "Cancel upload" => "取消上传", "Nothing in here. Upload something!" => "这里没有东西.上传点什么!", "Download" => "下载", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 124bb2c3b6..3e9a13b519 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -1,4 +1,5 @@ "上传", "Could not move %s - File with this name already exists" => "无法移动 %s - 同名文件已存在", "Could not move %s" => "无法移动 %s", "Unable to rename file" => "无法重命名文件", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' 是一个无效的文件名。", "File name cannot be empty." => "文件名不能为空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。", -"generating ZIP-file, it may take some time." => "正在生成 ZIP 文件,可能需要一些时间", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", "Upload Error" => "上传错误", "Close" => "关闭", @@ -60,7 +60,6 @@ "Text file" => "文本文件", "Folder" => "文件夹", "From link" => "来自链接", -"Upload" => "上传", "Cancel upload" => "取消上传", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", "Download" => "下载", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 7f0f44baca..61f8c28828 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,4 +1,5 @@ "上傳", "Could not move %s - File with this name already exists" => "無法移動 %s - 同名的檔案已經存在", "Could not move %s" => "無法移動 %s", "Unable to rename file" => "無法重新命名檔案", @@ -28,7 +29,6 @@ "'.' is an invalid file name." => "'.' 是不合法的檔名。", "File name cannot be empty." => "檔名不能為空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。", -"generating ZIP-file, it may take some time." => "產生 ZIP 壓縮檔,這可能需要一段時間。", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", "Upload Error" => "上傳發生錯誤", "Close" => "關閉", @@ -60,7 +60,6 @@ "Text file" => "文字檔", "Folder" => "資料夾", "From link" => "從連結", -"Upload" => "上傳", "Cancel upload" => "取消上傳", "Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", "Download" => "下載", diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php index ced0b4293b..da1710a0a3 100644 --- a/apps/user_ldap/l10n/ar.php +++ b/apps/user_ldap/l10n/ar.php @@ -1,3 +1,4 @@ "كلمة المرور" +"Password" => "كلمة المرور", +"Help" => "المساعدة" ); diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index c11eb5bdc5..06255c1249 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -1,8 +1,10 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments no desitjats. Demaneu a l'administrador del sistema que en desactivi una.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Avís: El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.", "Host" => "Màquina", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://", "Base DN" => "DN Base", +"One Base DN per line" => "Una DN Base per línia", "You can specify Base DN for users and groups in the Advanced tab" => "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat", "User DN" => "DN Usuari", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc.", @@ -19,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sense cap paràmetre de substitució, per exemple \"objectClass=grupPosix\".", "Port" => "Port", "Base User Tree" => "Arbre base d'usuaris", +"One User Base DN per line" => "Una DN Base d'Usuari per línia", "Base Group Tree" => "Arbre base de grups", +"One Group Base DN per line" => "Una DN Base de Grup per línia", "Group-Member association" => "Associació membres-grup", "Use TLS" => "Usa TLS", "Do not use it for SSL connections, it will fail." => "No ho useu en connexions SSL, fallarà.", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 9b307e54dd..80e27f1e62 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -1,8 +1,10 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Varování: Aplikace user_ldap a user_webdavauth nejsou kompatibilní. Může nastávat neočekávané chování. Požádejte, prosím, správce systému aby jednu z nich zakázal.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Varování: není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval.", "Host" => "Počítač", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://", "Base DN" => "Základní DN", +"One Base DN per line" => "Jedna základní DN na řádku", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny", "User DN" => "Uživatelské DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN klentského uživatele ke kterému tvoříte vazbu, např. uid=agent,dc=example,dc=com. Pro anonymní přístup ponechte údaje DN and Heslo prázdné.", @@ -19,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez zástupných znaků, např. \"objectClass=posixGroup\".", "Port" => "Port", "Base User Tree" => "Základní uživatelský strom", +"One User Base DN per line" => "Jedna uživatelská základní DN na řádku", "Base Group Tree" => "Základní skupinový strom", +"One Group Base DN per line" => "Jedna skupinová základní DN na řádku", "Group-Member association" => "Asociace člena skupiny", "Use TLS" => "Použít TLS", "Do not use it for SSL connections, it will fail." => "Nepoužívejte pro připojení pomocí SSL, připojení selže.", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 82877b5ca1..1e81601838 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,8 +1,10 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", "Base DN" => "Basis-DN", +"One Base DN per line" => "Ein Base DN pro Zeile", "You can specify Base DN for users and groups in the Advanced tab" => "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren", "User DN" => "Benutzer-DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lassen Sie DN und Passwort leer.", @@ -19,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"", "Port" => "Port", "Base User Tree" => "Basis-Benutzerbaum", +"One User Base DN per line" => "Ein Benutzer Base DN pro Zeile", "Base Group Tree" => "Basis-Gruppenbaum", +"One Group Base DN per line" => "Ein Gruppen Base DN pro Zeile", "Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", "Use TLS" => "Nutze TLS", "Do not use it for SSL connections, it will fail." => "Verwenden Sie dies nicht für SSL-Verbindungen, es wird fehlschlagen.", diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index 7290dabbef..e2b50f28ee 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -1,8 +1,10 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan.", "Host" => "Hostalaria", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://", "Base DN" => "Oinarrizko DN", +"One Base DN per line" => "DN Oinarri bat lerroko", "You can specify Base DN for users and groups in the Advanced tab" => "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan", "User DN" => "Erabiltzaile DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "Lotura egingo den bezero erabiltzailearen DNa, adb. uid=agent,dc=example,dc=com. Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik.", @@ -19,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "txantiloirik gabe, adb. \"objectClass=posixGroup\".", "Port" => "Portua", "Base User Tree" => "Oinarrizko Erabiltzaile Zuhaitza", +"One User Base DN per line" => "Erabiltzaile DN Oinarri bat lerroko", "Base Group Tree" => "Oinarrizko Talde Zuhaitza", +"One Group Base DN per line" => "Talde DN Oinarri bat lerroko", "Group-Member association" => "Talde-Kide elkarketak", "Use TLS" => "Erabili TLS", "Do not use it for SSL connections, it will fail." => "Ez erabili SSL konexioetan, huts egingo du.", diff --git a/apps/user_ldap/l10n/hr.php b/apps/user_ldap/l10n/hr.php new file mode 100644 index 0000000000..9150331506 --- /dev/null +++ b/apps/user_ldap/l10n/hr.php @@ -0,0 +1,3 @@ + "Pomoć" +); diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index aae29d057e..25ee47786e 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -1,10 +1,13 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Figyelmeztetés: Az LDAP PHP modul nincs telepítve, ezért ez az alrendszer nem fog működni. Kérje meg a rendszergazdát, hogy telepítse!", "Host" => "Kiszolgáló", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://", "Base DN" => "DN-gyökér", +"One Base DN per line" => "Soronként egy DN-gyökér", "You can specify Base DN for users and groups in the Advanced tab" => "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára", "User DN" => "A kapcsolódó felhasználó DN-je", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "Annak a felhasználónak a DN-je, akinek a nevében bejelentkezve kapcsolódunk a kiszolgálóhoz, pl. uid=agent,dc=example,dc=com. Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!", "Password" => "Jelszó", "For anonymous access, leave DN and Password empty." => "Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!", "User Login Filter" => "Szűrő a bejelentkezéshez", @@ -18,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne használjunk változót, pl. \"objectClass=posixGroup\".", "Port" => "Port", "Base User Tree" => "A felhasználói fa gyökere", +"One User Base DN per line" => "Soronként egy felhasználói fa gyökerét adhatjuk meg", "Base Group Tree" => "A csoportfa gyökere", +"One Group Base DN per line" => "Soronként egy csoportfa gyökerét adhatjuk meg", "Group-Member association" => "A csoporttagság attribútuma", "Use TLS" => "Használjunk TLS-t", "Do not use it for SSL connections, it will fail." => "Ne használjuk SSL-kapcsolat esetén, mert nem fog működni!", diff --git a/apps/user_ldap/l10n/ia.php b/apps/user_ldap/l10n/ia.php new file mode 100644 index 0000000000..3586bf5a2e --- /dev/null +++ b/apps/user_ldap/l10n/ia.php @@ -0,0 +1,3 @@ + "Adjuta" +); diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index b09819d79e..bee30cfe6e 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -1,8 +1,10 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne uno.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Avviso: il modulo PHP LDAP non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://", "Base DN" => "DN base", +"One Base DN per line" => "Un DN base per riga", "You can specify Base DN for users and groups in the Advanced tab" => "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate", "User DN" => "DN utente", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "Il DN per il client dell'utente con cui deve essere associato, ad esempio uid=agent,dc=example,dc=com. Per l'accesso anonimo, lasciare vuoti i campi DN e Password", @@ -19,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "senza nessun segnaposto, per esempio \"objectClass=posixGroup\".", "Port" => "Porta", "Base User Tree" => "Struttura base dell'utente", +"One User Base DN per line" => "Un DN base utente per riga", "Base Group Tree" => "Struttura base del gruppo", +"One Group Base DN per line" => "Un DN base gruppo per riga", "Group-Member association" => "Associazione gruppo-utente ", "Use TLS" => "Usa TLS", "Do not use it for SSL connections, it will fail." => "Non utilizzare per le connessioni SSL, fallirà.", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 9dff8e7bd6..1c93db7ba0 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -1,8 +1,10 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能姓があります。システム管理者にどちらかを無効にするよう問い合わせてください。", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。", "Host" => "ホスト", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。", "Base DN" => "ベースDN", +"One Base DN per line" => "1行に1つのベースDN", "You can specify Base DN for users and groups in the Advanced tab" => "拡張タブでユーザとグループのベースDNを指定することができます。", "User DN" => "ユーザDN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。", @@ -19,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "プレースホルダーを利用しないでください。例 \"objectClass=posixGroup\"", "Port" => "ポート", "Base User Tree" => "ベースユーザツリー", +"One User Base DN per line" => "1行に1つのユーザベースDN", "Base Group Tree" => "ベースグループツリー", +"One Group Base DN per line" => "1行に1つのグループベースDN", "Group-Member association" => "グループとメンバーの関連付け", "Use TLS" => "TLSを利用", "Do not use it for SSL connections, it will fail." => "SSL接続に利用しないでください、失敗します。", diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php new file mode 100644 index 0000000000..630d92b73a --- /dev/null +++ b/apps/user_ldap/l10n/ka_GE.php @@ -0,0 +1,3 @@ + "დახმარება" +); diff --git a/apps/user_ldap/l10n/ku_IQ.php b/apps/user_ldap/l10n/ku_IQ.php new file mode 100644 index 0000000000..1ae808ddd9 --- /dev/null +++ b/apps/user_ldap/l10n/ku_IQ.php @@ -0,0 +1,3 @@ + "یارمەتی" +); diff --git a/apps/user_ldap/l10n/lb.php b/apps/user_ldap/l10n/lb.php new file mode 100644 index 0000000000..2926538b5b --- /dev/null +++ b/apps/user_ldap/l10n/lb.php @@ -0,0 +1,3 @@ + "Hëllef" +); diff --git a/apps/user_ldap/l10n/lv.php b/apps/user_ldap/l10n/lv.php new file mode 100644 index 0000000000..52353472e4 --- /dev/null +++ b/apps/user_ldap/l10n/lv.php @@ -0,0 +1,3 @@ + "Palīdzība" +); diff --git a/apps/user_ldap/l10n/mk.php b/apps/user_ldap/l10n/mk.php index 70a62e7176..4c231b516d 100644 --- a/apps/user_ldap/l10n/mk.php +++ b/apps/user_ldap/l10n/mk.php @@ -1,5 +1,6 @@ "Домаќин", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://", -"Password" => "Лозинка" +"Password" => "Лозинка", +"Help" => "Помош" ); diff --git a/apps/user_ldap/l10n/ms_MY.php b/apps/user_ldap/l10n/ms_MY.php new file mode 100644 index 0000000000..077a5390cf --- /dev/null +++ b/apps/user_ldap/l10n/ms_MY.php @@ -0,0 +1,3 @@ + "Bantuan" +); diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 5e2ddf8959..27c4407360 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -1,10 +1,12 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://", -"Base DN" => "Basis DN", -"You can specify Base DN for users and groups in the Advanced tab" => "Je kunt het standaard DN voor gebruikers en groepen specificeren in het tab Geavanceerd.", -"User DN" => "Gebruikers DN", +"Base DN" => "Base DN", +"One Base DN per line" => "Een Base DN per regel", +"You can specify Base DN for users and groups in the Advanced tab" => "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd.", +"User DN" => "User DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "De DN van de client gebruiker waarmee de verbinding zal worden gemaakt, bijv. uid=agent,dc=example,dc=com. Voor anonieme toegang laat je het DN en het wachtwoord leeg.", "Password" => "Wachtwoord", "For anonymous access, leave DN and Password empty." => "Voor anonieme toegang, laat de DN en het wachtwoord leeg.", @@ -19,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "zonder een placeholder, bijv. \"objectClass=posixGroup\"", "Port" => "Poort", "Base User Tree" => "Basis Gebruikers Structuur", +"One User Base DN per line" => "Een User Base DN per regel", "Base Group Tree" => "Basis Groupen Structuur", +"One Group Base DN per line" => "Een Group Base DN per regel", "Group-Member association" => "Groepslid associatie", "Use TLS" => "Gebruik TLS", "Do not use it for SSL connections, it will fail." => "Gebruik niet voor SSL connecties, deze mislukken.", diff --git a/apps/user_ldap/l10n/nn_NO.php b/apps/user_ldap/l10n/nn_NO.php new file mode 100644 index 0000000000..54d1f158f6 --- /dev/null +++ b/apps/user_ldap/l10n/nn_NO.php @@ -0,0 +1,3 @@ + "Hjelp" +); diff --git a/apps/user_ldap/l10n/oc.php b/apps/user_ldap/l10n/oc.php new file mode 100644 index 0000000000..0bf27d74f2 --- /dev/null +++ b/apps/user_ldap/l10n/oc.php @@ -0,0 +1,3 @@ + "Ajuda" +); diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 1640f03749..9059f17876 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -1,8 +1,10 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Aviso: O módulo PHP LDAP não está instalado, logo não irá funcionar. Por favor peça ao administrador para o instalar.", "Host" => "Anfitrião", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://", "Base DN" => "DN base", +"One Base DN per line" => "Uma base DN por linho", "You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar o ND Base para utilizadores e grupos no separador Avançado", "User DN" => "DN do utilizador", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "O DN to cliente ", @@ -19,7 +21,9 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sem nenhuma variável. Exemplo: \"objectClass=posixGroup\".", "Port" => "Porto", "Base User Tree" => "Base da árvore de utilizadores.", +"One User Base DN per line" => "Uma base de utilizador DN por linha", "Base Group Tree" => "Base da árvore de grupos.", +"One Group Base DN per line" => "Uma base de grupo DN por linha", "Group-Member association" => "Associar utilizador ao grupo.", "Use TLS" => "Usar TLS", "Do not use it for SSL connections, it will fail." => "Não use para ligações SSL, irá falhar.", diff --git a/apps/user_ldap/l10n/sr.php b/apps/user_ldap/l10n/sr.php new file mode 100644 index 0000000000..fff39aadc2 --- /dev/null +++ b/apps/user_ldap/l10n/sr.php @@ -0,0 +1,3 @@ + "Помоћ" +); diff --git a/apps/user_ldap/l10n/sr@latin.php b/apps/user_ldap/l10n/sr@latin.php new file mode 100644 index 0000000000..9150331506 --- /dev/null +++ b/apps/user_ldap/l10n/sr@latin.php @@ -0,0 +1,3 @@ + "Pomoć" +); diff --git a/apps/user_webdavauth/l10n/eu.php b/apps/user_webdavauth/l10n/eu.php index 245a510134..d792c1588b 100644 --- a/apps/user_webdavauth/l10n/eu.php +++ b/apps/user_webdavauth/l10n/eu.php @@ -1,3 +1,5 @@ "URL: http://" +"WebDAV Authentication" => "WebDAV Autentikazioa", +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloudek erabiltzailearen kredentzialak URL honetara bidaliko ditu. Plugin honek erantzuna aztertzen du eta HTTP 401 eta 403 egoera kodeak baliogabezko kredentzialtzat hartuko ditu, beste erantzunak kredentzial egokitzat hartuko dituelarik." ); diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php index 245a510134..a6b8355c07 100644 --- a/apps/user_webdavauth/l10n/gl.php +++ b/apps/user_webdavauth/l10n/gl.php @@ -1,3 +1,5 @@ "URL: http://" +"WebDAV Authentication" => "Autenticación WebDAV", +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud enviará as credenciais do usuario a esta URL. Este conector comproba a resposta e interpretará os códigos de estado 401 e 403 como credenciais non válidas, e todas as outras respostas como credenciais válidas." ); diff --git a/apps/user_webdavauth/l10n/it.php b/apps/user_webdavauth/l10n/it.php index 8dd605d84a..a7cd6e8e4b 100644 --- a/apps/user_webdavauth/l10n/it.php +++ b/apps/user_webdavauth/l10n/it.php @@ -1,4 +1,5 @@ "Autenticazione WebDAV", -"URL: http://" => "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud invierà le credenziali dell'utente a questo URL. Questa estensione controlla la risposta e interpreta i codici di stato 401 e 403 come credenziali non valide, e tutte le altre risposte come credenziali valide." ); diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 245a510134..1cd14a03c7 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,3 +1,5 @@ "URL: http://" +"WebDAV Authentication" => "WebDAV 認証", +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloudはこのURLにユーザ資格情報を送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" ); diff --git a/apps/user_webdavauth/l10n/pt_PT.php b/apps/user_webdavauth/l10n/pt_PT.php index 245a510134..d7e87b5c8d 100644 --- a/apps/user_webdavauth/l10n/pt_PT.php +++ b/apps/user_webdavauth/l10n/pt_PT.php @@ -1,3 +1,5 @@ "URL: http://" +"WebDAV Authentication" => "Autenticação WebDAV", +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "O ownCloud vai enviar as credenciais do utilizador através deste URL. Este plugin verifica a resposta e vai interpretar os códigos de estado HTTP 401 e 403 como credenciais inválidas, e todas as outras como válidas." ); diff --git a/core/ajax/share.php b/core/ajax/share.php index 72ffc52e99..077baa8ba5 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -98,7 +98,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $user); OCP\JSON::success(); } catch (Exception $exception) { - OCP\JSON::error(array('data' => array('message' => $exception->getMessage()))); + OCP\JSON::error(array('data' => array('message' => OC_Util::sanitizeHTML($exception->getMessage())))); } break; } diff --git a/core/css/styles.css b/core/css/styles.css index 496320561f..7771fd52b9 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -94,7 +94,8 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b /* CONTENT ------------------------------------------------------------------ */ #controls { padding:0 0.5em; width:100%; top:3.5em; height:2.8em; margin:0; background:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:50; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; } #controls .button { display:inline-block; } -#content { top:3.5em; left:12.5em; position:absolute; } +#content { height: 100%; width: 100%; position: relative; } +#content-wrapper { height: 100%; width: 100%; padding-top: 3.5em; padding-left: 12.5em; box-sizing: border-box; -moz-box-sizing: border-box; position: absolute;} #leftcontent, .leftcontent { position:fixed; overflow:auto; top:6.4em; width:20em; background:#f8f8f8; border-right:1px solid #ddd; } #leftcontent li, .leftcontent li { background:#f8f8f8; padding:.5em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 200ms; -moz-transition:background-color 200ms; -o-transition:background-color 200ms; transition:background-color 200ms; } #leftcontent li:hover, #leftcontent li:active, #leftcontent li.active, .leftcontent li:hover, .leftcontent li:active, .leftcontent li.active { background:#eee; } diff --git a/core/js/js.js b/core/js/js.js index 95889ac8a2..23ace89f4e 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -504,6 +504,7 @@ function fillHeight(selector) { if(selector.outerHeight() > selector.height()){ selector.css('height', height-(selector.outerHeight()-selector.height()) + 'px'); } + console.warn("This function is deprecated! Use CSS instead"); } /** @@ -519,17 +520,11 @@ function fillWindow(selector) { if(selector.outerWidth() > selector.width()){ selector.css('width', width-(selector.outerWidth()-selector.width()) + 'px'); } + console.warn("This function is deprecated! Use CSS instead"); } $(document).ready(function(){ - $(window).resize(function () { - fillHeight($('#leftcontent')); - fillWindow($('#content')); - fillWindow($('#rightcontent')); - }); - $(window).trigger('resize'); - if(!SVGSupport()){ //replace all svg images with png images for browser that dont support svg replaceSVG(); }else{ diff --git a/core/l10n/el.php b/core/l10n/el.php index 579550fc92..c029b01fd9 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -126,5 +126,6 @@ "remember" => "απομνημόνευση", "Log in" => "Είσοδος", "prev" => "προηγούμενο", -"next" => "επόμενο" +"next" => "επόμενο", +"Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." ); diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 1239ee8603..3f1a290953 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -126,5 +126,6 @@ "remember" => "gogoratu", "Log in" => "Hasi saioa", "prev" => "aurrekoa", -"next" => "hurrengoa" +"next" => "hurrengoa", +"Updating ownCloud to version %s, this may take a while." => "ownCloud %s bertsiora eguneratzen, denbora har dezake." ); diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 49b686423a..a9e20fc646 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -126,5 +126,6 @@ "remember" => "emlékezzen", "Log in" => "Bejelentkezés", "prev" => "előző", -"next" => "következő" +"next" => "következő", +"Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet." ); diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 16258d22dc..88e18d3eb2 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -126,5 +126,6 @@ "remember" => "запам'ятати", "Log in" => "Вхід", "prev" => "попередній", -"next" => "наступний" +"next" => "наступний", +"Updating ownCloud to version %s, this may take a while." => "Оновлення ownCloud до версії %s, це може зайняти деякий час." ); diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 6c098e211d..626ede4cc7 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -43,6 +43,7 @@ "Share with link" => "共享链接", "Password protect" => "密码保护", "Password" => "密码", +"Email link to person" => "发送链接到个人", "Send" => "发送", "Set expiration date" => "设置过期日期", "Expiration date" => "过期日期", @@ -125,5 +126,6 @@ "remember" => "记住", "Log in" => "登录", "prev" => "上一页", -"next" => "下一页" +"next" => "下一页", +"Updating ownCloud to version %s, this may take a while." => "更新 ownCloud 到版本 %s,这可能需要一些时间。" ); diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index ba5053edec..a16d2c9e55 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -67,8 +67,10 @@ -
- +
+
+ +
diff --git a/l10n/ar/files.po b/l10n/ar/files.po index b57cae5c40..121094a24f 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,11 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "إرفع" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -32,46 +37,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -127,98 +132,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "إغلق" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "الاسم" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "حجم" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "معدل" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -270,10 +277,6 @@ msgstr "مجلد" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "إرفع" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 6a9cdf2b15..dbb9b7359c 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" -"PO-Revision-Date: 2012-12-23 19:00+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,27 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "المساعدة" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "شخصي" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "تعديلات" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "المستخدمين" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "" @@ -57,11 +57,15 @@ msgstr "" msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" @@ -81,55 +85,55 @@ msgstr "معلومات إضافية" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "منذ ثواني" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "منذ دقيقة" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "اليوم" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 2046f1f1b9..ab2b79bb6c 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:19+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "المساعدة" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 14ac7f3c7b..9907862b6a 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:05+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Качване" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Име" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Променено" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -271,10 +278,6 @@ msgstr "Папка" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Качване" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 516eee347a..5e238d1136 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 20:43+0000\n" -"Last-Translator: Stefan Ilivanov \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,11 +58,15 @@ msgstr "Назад към файловете" msgid "Selected files too large to generate zip file." msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Приложението не е включено." -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Възникна проблем с идентификацията" @@ -82,55 +86,55 @@ msgstr "Текст" msgid "Images" msgstr "Снимки" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "преди секунди" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "преди 1 минута" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "преди %d минути" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "преди 1 час" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "преди %d часа" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "днес" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчера" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "преди %d дни" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "последният месец" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "преди %d месеца" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "последната година" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "последните години" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 33908fc14e..ad10526f60 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 10:05+0000\n" -"Last-Translator: Shubhra Paul \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,11 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "আপলোড" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -32,46 +37,46 @@ msgstr "%s কে স্থানান্তর করা সম্ভব হ msgid "Unable to rename file" msgstr "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যা অজ্ঞাত।" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে নির্ধারিত MAX_FILE_SIZE নির্দেশিত সর্বোচ্চ আকার অতিক্রম করেছে " -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডার খোয়া গিয়েছে" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -127,98 +132,100 @@ msgstr "{files} ভাগাভাগি বাতিল কর" msgid "deleted {files}" msgstr "{files} মুছে ফেলা হয়েছে" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "টি একটি অননুমোদিত নাম।" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ZIP- ফাইল তৈরী করা হচ্ছে, এজন্য কিছু সময় আবশ্যক।" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "আপলোড করতে সমস্যা " -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "বন্ধ" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "মুলতুবি" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} টি ফাইল আপলোড করা হচ্ছে" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL ফাঁকা রাখা যাবে না।" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} টি ফাইল স্ক্যান করা হয়েছে" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "নাম" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "আকার" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "১টি ফোল্ডার" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} টি ফোল্ডার" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "১টি ফাইল" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} টি ফাইল" @@ -270,10 +277,6 @@ msgstr "ফোল্ডার" msgid "From link" msgstr " লিংক থেকে" -#: templates/index.php:18 -msgid "Upload" -msgstr "আপলোড" - #: templates/index.php:41 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 0c8865693c..da90c84c97 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 10:27+0000\n" -"Last-Translator: Shubhra Paul \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,11 +57,15 @@ msgstr "ফাইলে ফিরে চল" msgid "Selected files too large to generate zip file." msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "অনুমোদন ঘটিত সমস্যা" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d মিনিট পূর্বে" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "আজ" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "গতকাল" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d দিন পূর্বে" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "গত মাস" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "গত বছর" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 159d191a91..ba79bb72cd 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 07:36+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +23,11 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Puja" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -37,46 +42,46 @@ msgstr " No s'ha pogut moure %s" msgid "Unable to rename file" msgstr "No es pot canviar el nom del fitxer" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha pujat parcialment" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "S'ha perdut un fitxer temporal" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -132,98 +137,100 @@ msgstr "no compartits {files}" msgid "deleted {files}" msgstr "eliminats {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' és un nom no vàlid per un fitxer." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "El nom del fitxer no pot ser buit." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "s'estan generant fitxers ZIP, pot trigar una estona." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Tanca" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Pendents" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "La URL no pot ser buida" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} fitxers escannejats" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "error durant l'escaneig" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Mida" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} fitxers" @@ -275,10 +282,6 @@ msgstr "Carpeta" msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:18 -msgid "Upload" -msgstr "Puja" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Cancel·la la pujada" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 0bdb8f916e..965da96ee3 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 08:22+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 09:24+0000\n" "Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ajuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Configuració" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usuaris" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicacions" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administració" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Torna a Fitxers" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "no s'ha pogut determinar" + #: json.php:28 msgid "Application is not enabled" msgstr "L'aplicació no està habilitada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Error d'autenticació" @@ -82,55 +86,55 @@ msgstr "Text" msgid "Images" msgstr "Imatges" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "segons enrere" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "fa 1 minut" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "fa %d minuts" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "fa 1 hora" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "fa %d hores" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "avui" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ahir" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "fa %d dies" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "el mes passat" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "fa %d mesos" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "l'any passat" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "fa anys" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 8862120a87..8cf04dcae1 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 07:21+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +29,7 @@ msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompati msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Avís: El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li." #: templates/settings.php:15 msgid "Host" @@ -46,7 +46,7 @@ msgstr "DN Base" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "Una DN Base per línia" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -121,7 +121,7 @@ msgstr "Arbre base d'usuaris" #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "Una DN Base d'Usuari per línia" #: templates/settings.php:26 msgid "Base Group Tree" @@ -129,7 +129,7 @@ msgstr "Arbre base de grups" #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "Una DN Base de Grup per línia" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index c5417ef868..3182bf8c9d 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 08:32+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,11 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Odeslat" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -34,46 +39,46 @@ msgstr "Nelze přesunout %s" msgid "Unable to rename file" msgstr "Nelze přejmenovat soubor" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Nedostatek dostupného místa" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -129,98 +134,100 @@ msgstr "sdílení zrušeno pro {files}" msgid "deleted {files}" msgstr "smazáno {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' je neplatným názvem souboru." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Název souboru nemůže být prázdný řetězec." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "generuji ZIP soubor, může to nějakou dobu trvat." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Chyba odesílání" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Zavřít" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Čekající" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "odesílám {count} souborů" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL nemůže být prázdná" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "prozkoumáno {count} souborů" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "chyba při prohledávání" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Název" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Změněno" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 složka" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 soubor" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} soubory" @@ -272,10 +279,6 @@ msgstr "Složka" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:18 -msgid "Upload" -msgstr "Odeslat" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušit odesílání" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index dd8693c6c8..55cc3d0f58 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -4,13 +4,13 @@ # # Translators: # Martin , 2012. -# Tomáš Chvátal , 2012. +# Tomáš Chvátal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 10:08+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 11:01+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,55 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Nápověda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osobní" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Nastavení" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Uživatelé" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikace" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administrace" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Stahování ZIPu je vypnuto." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Zpět k souborům" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "nelze zjistit" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikace není povolena" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Chyba ověření" @@ -83,55 +87,55 @@ msgstr "Text" msgid "Images" msgstr "Obrázky" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "před vteřinami" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "před 1 minutou" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "před %d minutami" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "před hodinou" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "před %d hodinami" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "dnes" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "včera" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "před %d dny" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "minulý měsíc" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Před %d měsíci" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "loni" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index fd3f7dcf95..225c039f83 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -4,14 +4,14 @@ # # Translators: # Martin , 2012. -# Tomáš Chvátal , 2012. +# Tomáš Chvátal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:19+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 11:09+0000\n" +"Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Varování: Aplikace user_ldap a user_webdavauth nejsou kompatibi msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Varování: není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval." #: templates/settings.php:15 msgid "Host" @@ -47,7 +47,7 @@ msgstr "Základní DN" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "Jedna základní DN na řádku" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -122,7 +122,7 @@ msgstr "Základní uživatelský strom" #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "Jedna uživatelská základní DN na řádku" #: templates/settings.php:26 msgid "Base Group Tree" @@ -130,7 +130,7 @@ msgstr "Základní skupinový strom" #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "Jedna skupinová základní DN na řádku" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/da/files.po b/l10n/da/files.po index b2d80372d3..f7bd3b9259 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Upload" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -39,46 +44,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -134,98 +139,100 @@ msgstr "ikke delte {files}" msgid "deleted {files}" msgstr "slettede {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "genererer ZIP-fil, det kan tage lidt tid." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Luk" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Afventer" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URLen kan ikke være tom." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} filer skannet" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Ændret" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 fil" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} filer" @@ -277,10 +284,6 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:18 -msgid "Upload" -msgstr "Upload" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Fortryd upload" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 187d797c53..c1bdc6f0b9 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" -"PO-Revision-Date: 2012-12-23 21:58+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,27 +20,27 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hjælp" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Personlig" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Indstillinger" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Brugere" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Admin" @@ -60,11 +60,15 @@ msgstr "Tilbage til Filer" msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Adgangsfejl" @@ -84,55 +88,55 @@ msgstr "SMS" msgid "Images" msgstr "Billeder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minut siden" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 time siden" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d timer siden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "I dag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "I går" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dage siden" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "Sidste måned" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d måneder siden" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "Sidste år" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "år siden" diff --git a/l10n/de/files.po b/l10n/de/files.po index c68bff2ed6..ccac694ad3 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -27,9 +27,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 13:32+0000\n" -"Last-Translator: thiel \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,11 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Hochladen" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -51,46 +56,46 @@ msgstr "Konnte %s nicht verschieben" msgid "Unable to rename file" msgstr "Konnte Datei nicht umbenennen" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Datei fehlerfrei hochgeladen." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Temporärer Ordner fehlt." -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Nicht genug Speicherplatz verfügbar" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis" @@ -146,98 +151,100 @@ msgstr "Freigabe von {files} aufgehoben" msgid "deleted {files}" msgstr "{files} gelöscht" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' ist kein gültiger Dateiname" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 Datei" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} Dateien" @@ -289,10 +296,6 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:18 -msgid "Upload" -msgstr "Hochladen" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index d572145c29..3c3ebf698e 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-12 00:13+0100\n" -"PO-Revision-Date: 2012-12-11 09:31+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,51 +24,55 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hilfe" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Persönlich" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Einstellungen" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Benutzer" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Administrator" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" @@ -88,55 +92,55 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "Gerade eben" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "Vor einer Minute" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "Vor %d Minuten" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Vor %d Stunden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "Heute" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "Gestern" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "Vor %d Tag(en)" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "Letzten Monat" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Vor %d Monaten" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "Letztes Jahr" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index e044e72907..9f9775ff12 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -23,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:11+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,55 +99,55 @@ msgstr "Fehler beim Entfernen von %s von den Favoriten." msgid "Settings" msgstr "Einstellungen" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "Heute" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "Gestern" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:723 +#: js/js.js:718 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ca3e44187b..d53c4caa9a 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -27,9 +27,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 13:29+0000\n" -"Last-Translator: thiel \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,11 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Hochladen" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -51,46 +56,46 @@ msgstr "Konnte %s nicht verschieben" msgid "Unable to rename file" msgstr "Konnte Datei nicht umbenennen" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Der temporäre Ordner fehlt." -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Nicht genügend Speicherplatz verfügbar" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -146,98 +151,100 @@ msgstr "Freigabe für {files} beendet" msgid "deleted {files}" msgstr "{files} gelöscht" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' ist kein gültiger Dateiname." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Schließen" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Name" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Größe" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 Datei" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} Dateien" @@ -289,10 +296,6 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:18 -msgid "Upload" -msgstr "Hochladen" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Upload abbrechen" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 3c9177f17e..851e152e2d 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Andreas Tangemann , 2013. # , 2012. # , 2012. # Jan-Christoph Borchardt , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-11 00:04+0100\n" -"PO-Revision-Date: 2012-12-10 13:49+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:16+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,51 +25,55 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hilfe" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Persönlich" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Einstellungen" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Benutzer" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Administrator" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "konnte nicht ermittelt werden" + #: json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" @@ -88,55 +93,55 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "Gerade eben" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "Vor einer Minute" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "Vor %d Minuten" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Vor %d Stunden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "Heute" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "Gestern" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "Vor %d Tag(en)" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "Letzten Monat" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Vor %d Monaten" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "Letztes Jahr" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 5bd636b583..440d30ce2b 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Andreas Tangemann , 2013. # , 2012. # I Robot , 2012. # Maurice Preuß <>, 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-18 21:26+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +36,7 @@ msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkom msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." #: templates/settings.php:15 msgid "Host" @@ -52,7 +53,7 @@ msgstr "Basis-DN" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "Ein Base DN pro Zeile" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -127,7 +128,7 @@ msgstr "Basis-Benutzerbaum" #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "Ein Benutzer Base DN pro Zeile" #: templates/settings.php:26 msgid "Base Group Tree" @@ -135,7 +136,7 @@ msgstr "Basis-Gruppenbaum" #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "Ein Gruppen Base DN pro Zeile" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/el/core.po b/l10n/el/core.po index e0066d758d..9f541a6eda 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -10,13 +10,14 @@ # Marios Bekatoros <>, 2012. # , 2011. # Petros Kyladitis , 2011-2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 20:33+0000\n" +"Last-Translator: xneo1 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,55 +91,55 @@ msgstr "Σφάλμα αφαίρεσης %s από τα αγαπημένα." msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "σήμερα" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "χτες" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:723 +#: js/js.js:718 msgid "years ago" msgstr "χρόνια πριν" @@ -569,4 +570,4 @@ msgstr "επόμενο" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο." diff --git a/l10n/el/files.po b/l10n/el/files.po index 6dbee32887..607ae91bec 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -4,7 +4,7 @@ # # Translators: # Dimitris M. , 2012. -# Efstathios Iosifidis , 2012. +# Efstathios Iosifidis , 2012-2013. # Efstathios Iosifidis , 2012. # Konstantinos Tzanidis , 2012. # Marios Bekatoros <>, 2012. @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -24,62 +24,67 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Αποστολή" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Αδυναμία μετακίνησης του %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Αδυναμία μετονομασίας αρχείου" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" -msgstr "" +msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." -msgstr "" +msgstr "Μη έγκυρος φάκελος." #: appinfo/app.php:10 msgid "Files" @@ -133,98 +138,100 @@ msgstr "μη διαμοιρασμένα {files}" msgid "deleted {files}" msgstr "διαγραμμένα {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' είναι μη έγκυρο όνομα αρχείου." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." -msgstr "" +msgstr "Το όνομα αρχείου δεν πρέπει να είναι κενό." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "παραγωγή αρχείου ZIP, ίσως διαρκέσει αρκετά." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Σφάλμα Αποστολής" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Κλείσιμο" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Εκκρεμεί" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} αρχεία ανεβαίνουν" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Η URL δεν πρέπει να είναι κενή." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} αρχεία ανιχνεύτηκαν" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "σφάλμα κατά την ανίχνευση" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Όνομα" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} αρχεία" @@ -276,10 +283,6 @@ msgstr "Φάκελος" msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:18 -msgid "Upload" -msgstr "Αποστολή" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index c58bb7b0af..27ef72f2eb 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 17:32+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 20:39+0000\n" +"Last-Translator: xneo1 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +19,55 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Βοήθεια" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Προσωπικά" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Χρήστες" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Εφαρμογές" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Διαχειριστής" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "δεν μπορούσε να προσδιορισθεί" + #: json.php:28 msgid "Application is not enabled" msgstr "Δεν ενεργοποιήθηκε η εφαρμογή" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" @@ -82,55 +87,55 @@ msgstr "Κείμενο" msgid "Images" msgstr "Εικόνες" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d λεπτά πριν" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d ώρες πριν" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "σήμερα" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "χθές" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d ημέρες πριν" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "τον προηγούμενο μήνα" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d μήνες πριν" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "τον προηγούμενο χρόνο" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index d20f3ef368..f06ddb0785 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,14 +13,15 @@ # , 2011. # , 2011. # Petros Kyladitis , 2011-2012. +# , 2013. # Γιάννης Ανθυμίδης , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 20:41+0000\n" +"Last-Translator: xneo1 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -251,11 +252,11 @@ msgstr "Δημιουργία" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Προκαθορισμένη Αποθήκευση " #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Απεριόριστο" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -267,11 +268,11 @@ msgstr "Ομάδα Διαχειριστών" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Αποθήκευση" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Προκαθορισμένο" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 9989b6eb9b..63e4d27bf5 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Alŝuti" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "La alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Neniu dosiero estas alŝutita" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Mankas tempa dosierujo" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "malkunhaviĝis {files}" msgid "deleted {files}" msgstr "foriĝis {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Fermi" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} dosieroj alŝutatas" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL ne povas esti malplena." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} dosieroj skaniĝis" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nomo" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Grando" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modifita" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} dosierujoj" @@ -271,10 +278,6 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:18 -msgid "Upload" -msgstr "Alŝuti" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Nuligi alŝuton" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index b4a219e21a..05fd08aa22 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 21:42+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Helpo" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Persona" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Agordo" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Uzantoj" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikaĵoj" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administranto" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplikaĵo ne estas kapabligita" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Aŭtentiga eraro" @@ -82,55 +86,55 @@ msgstr "Teksto" msgid "Images" msgstr "Bildoj" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekundojn antaŭe" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "antaŭ %d minutoj" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "antaŭ %d horoj" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hodiaŭ" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "hieraŭ" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "antaŭ %d tagoj" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "lasta monato" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "antaŭ %d monatoj" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "lasta jaro" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "jarojn antaŭe" diff --git a/l10n/es/files.po b/l10n/es/files.po index 1275e717a2..f15c69646a 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 07:26+0000\n" -"Last-Translator: karv \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +26,11 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Subir" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -40,46 +45,46 @@ msgstr "No se puede mover %s" msgid "Unable to rename file" msgstr "No se puede renombrar el archivo" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Fallo no se subió el fichero" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "No se ha producido ningún error, el archivo se ha subido con éxito" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentas subir solo se subió parcialmente" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "No se ha subido ningún archivo" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "La escritura en disco ha fallado" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Directorio invalido." @@ -135,98 +140,100 @@ msgstr "{files} descompartidos" msgid "deleted {files}" msgstr "{files} eliminados" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' es un nombre de archivo inválido." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "generando un fichero ZIP, puede llevar un tiempo." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "cerrrar" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Pendiente" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 archivo" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} archivos" @@ -278,10 +285,6 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde el enlace" -#: templates/index.php:18 -msgid "Upload" -msgstr "Subir" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 179b6bff7d..6b482aac9f 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-18 00:01+0100\n" -"PO-Revision-Date: 2012-11-17 08:43+0000\n" -"Last-Translator: Raul Fernandez Garcia \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,51 +21,55 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ayuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ajustes" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usuarios" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicaciones" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administración" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Error de autenticación" @@ -85,55 +89,55 @@ msgstr "Texto" msgid "Images" msgstr "Imágenes" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "hace segundos" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "hace 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "hace %d minutos" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Hace 1 hora" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Hace %d horas" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoy" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ayer" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "hace %d días" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "este mes" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Hace %d meses" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "este año" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "hace años" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 3aaf707313..2558db2dcb 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 16:04+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,11 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Subir" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "No se pudo mover %s " msgid "Unable to rename file" msgstr "No fue posible cambiar el nombre al archivo" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "No se han producido errores, el archivo se ha subido con éxito" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentás subir solo se subió parcialmente" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "El archivo no fue subido" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Directorio invalido." @@ -128,98 +133,100 @@ msgstr "{files} se dejaron de compartir" msgid "deleted {files}" msgstr "{files} borrados" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' es un nombre de archivo inválido." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "El nombre del archivo no puede quedar vacío." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: js/files.js:187 -msgid "generating ZIP-file, it may take some time." -msgstr "generando un archivo ZIP, puede llevar un tiempo." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:225 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" -#: js/files.js:225 +#: js/files.js:242 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:242 +#: js/files.js:259 msgid "Close" msgstr "Cerrar" -#: js/files.js:261 js/files.js:377 js/files.js:410 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Pendiente" -#: js/files.js:281 +#: js/files.js:298 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:284 js/files.js:339 js/files.js:354 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:358 js/files.js:394 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:465 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/files.js:538 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía" -#: js/files.js:544 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:728 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:736 +#: js/files.js:783 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:809 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nombre" -#: js/files.js:810 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:811 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:830 +#: js/files.js:878 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:832 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:840 +#: js/files.js:888 msgid "1 file" msgstr "1 archivo" -#: js/files.js:842 +#: js/files.js:890 msgid "{count} files" msgstr "{count} archivos" @@ -271,10 +278,6 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:18 -msgid "Upload" -msgstr "Subir" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar subida" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index d7c4a91176..f4870578c3 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-22 00:01+0100\n" -"PO-Revision-Date: 2012-11-21 09:56+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ayuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ajustes" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usuarios" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicaciones" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administración" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Volver a archivos" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Error de autenticación" @@ -82,55 +86,55 @@ msgstr "Texto" msgid "Images" msgstr "Imágenes" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "hace unos segundos" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "hace 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "hace %d minutos" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 hora atrás" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d horas atrás" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoy" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ayer" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "hace %d días" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "este mes" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d meses atrás" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "este año" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "hace años" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 444a31d021..0884249304 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Lae üles" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi viga pole, fail on üles laetud" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "jagamata {files}" msgid "deleted {files}" msgstr "kustutatud {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ZIP-faili loomine, see võib veidi aega võtta." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Üleslaadimise viga" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Sulge" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Ootel" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} faili üleslaadimist" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL ei saa olla tühi." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} faili skännitud" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Suurus" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Muudetud" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 fail" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} faili" @@ -271,10 +278,6 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:18 -msgid "Upload" -msgstr "Lae üles" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Tühista üleslaadimine" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index f617ebc783..a137f08e4a 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Abiinfo" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Isiklik" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Seaded" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Kasutajad" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Rakendused" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Autentimise viga" @@ -82,55 +86,55 @@ msgstr "Tekst" msgid "Images" msgstr "Pildid" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekundit tagasi" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minut tagasi" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutit tagasi" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "täna" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "eile" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d päeva tagasi" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "eelmisel kuul" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "eelmisel aastal" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index b461e4928b..74900de6d9 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # , 2012. # Asier Urio Larrea , 2011. # Piarres Beobide , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 00:07+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,55 +87,55 @@ msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "segundu" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "gaur" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "atzo" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "hilabete" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "joan den urtean" -#: js/js.js:723 +#: js/js.js:718 msgid "years ago" msgstr "urte" @@ -565,4 +566,4 @@ msgstr "hurrengoa" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud %s bertsiora eguneratzen, denbora har dezake." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 0cc98cedbd..ac12e78e77 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # , 2012. # Asier Urio Larrea , 2011. # Piarres Beobide , 2012. @@ -10,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -20,62 +21,67 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Igo" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Ezin dira fitxategiak mugitu %s" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Ezin izan da fitxategia berrizendatu" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Ez da arazorik izan, fitxategia ongi igo da" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Aldi baterako karpeta falta da" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" -msgstr "" +msgstr "Ez dago leku nahikorik." -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." -msgstr "" +msgstr "Baliogabeko karpeta." #: appinfo/app.php:10 msgid "Files" @@ -129,98 +135,100 @@ msgstr "elkarbanaketa utzita {files}" msgid "deleted {files}" msgstr "ezabatuta {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' ez da fitxategi izen baliogarria." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." -msgstr "" +msgstr "Fitxategi izena ezin da hutsa izan." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Itxi" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Zain" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URLa ezin da hutsik egon." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} fitxategi eskaneatuta" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Izena" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Tamaina" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} fitxategi" @@ -272,10 +280,6 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:18 -msgid "Upload" -msgstr "Igo" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Ezeztatu igoera" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 9442caf83a..9ba6d45bb6 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-11-25 23:10+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 00:06+0000\n" "Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -18,51 +19,55 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Laguntza" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Pertsonala" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ezarpenak" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Erabiltzaileak" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikazioak" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Itzuli fitxategietara" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." +#: helper.php:229 +msgid "couldn't be determined" +msgstr "ezin izan da zehaztu" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikazioa ez dago gaituta" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Autentikazio errorea" @@ -82,55 +87,55 @@ msgstr "Testua" msgid "Images" msgstr "Irudiak" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "orain dela segundu batzuk" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "orain dela %d minutu" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "orain dela %d ordu" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "gaur" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "atzo" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "orain dela %d egun" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "joan den hilabetea" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "orain dela %d hilabete" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "joan den urtea" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "orain dela urte batzuk" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index b696af989d..dff5792f80 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # , 2012. # Asier Urio Larrea , 2011. # Piarres Beobide , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 00:06+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -243,11 +244,11 @@ msgstr "Sortu" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Lehenetsitako Biltegiratzea" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Mugarik gabe" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -259,11 +260,11 @@ msgstr "Talde administradorea" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Biltegiratzea" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Lehenetsia" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index aa08719835..546e28b0d7 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 00:01+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak di msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan." #: templates/settings.php:15 msgid "Host" @@ -46,7 +47,7 @@ msgstr "Oinarrizko DN" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "DN Oinarri bat lerroko" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -121,7 +122,7 @@ msgstr "Oinarrizko Erabiltzaile Zuhaitza" #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "Erabiltzaile DN Oinarri bat lerroko" #: templates/settings.php:26 msgid "Base Group Tree" @@ -129,7 +130,7 @@ msgstr "Oinarrizko Talde Zuhaitza" #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "Talde DN Oinarri bat lerroko" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index 8065829bc4..ada89a92f4 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-18 23:47+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV Autentikazioa" #: templates/settings.php:4 msgid "URL: http://" @@ -31,4 +32,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloudek erabiltzailearen kredentzialak URL honetara bidaliko ditu. Plugin honek erantzuna aztertzen du eta HTTP 401 eta 403 egoera kodeak baliogabezko kredentzialtzat hartuko ditu, beste erantzunak kredentzial egokitzat hartuko dituelarik." diff --git a/l10n/fa/files.po b/l10n/fa/files.po index ea5bfc082a..73ae7c1ed1 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "بارگذاری" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -34,46 +39,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "مقدار کمی از فایل بارگذاری شده" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "هیچ فایلی بارگذاری نشده" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده است" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -129,98 +134,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "خطا در بار گذاری" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "بستن" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "در انتظار" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "نام" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "اندازه" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -272,10 +279,6 @@ msgstr "پوشه" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "بارگذاری" - #: templates/index.php:41 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 44408cc66f..52e8d62eef 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "راه‌نما" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "شخصی" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "تنظیمات" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "کاربران" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "مدیر" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" @@ -82,55 +86,55 @@ msgstr "متن" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d دقیقه پیش" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "امروز" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "دیروز" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "ماه قبل" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "سال قبل" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index cf08585d92..35a37aa338 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 19:12+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,11 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Lähetä" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -36,46 +41,46 @@ msgstr "Kohteen %s siirto ei onnistunut" msgid "Unable to rename file" msgstr "Tiedoston nimeäminen uudelleen ei onnistunut" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Väliaikaiskansiota ei ole olemassa" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Tilaa ei ole riittävästi" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -131,98 +136,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' on virheellinen nimi tiedostolle." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Tiedoston nimi ei voi olla tyhjä." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Sulje" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Odottaa" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Verkko-osoite ei voi olla tyhjä" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nimi" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Koko" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Muutettu" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} tiedostoa" @@ -274,10 +281,6 @@ msgstr "Kansio" msgid "From link" msgstr "Linkistä" -#: templates/index.php:18 -msgid "Upload" -msgstr "Lähetä" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Peru lähetys" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 0669c281cf..7b90f23c2c 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2012. +# Jiri Grönroos , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 20:58+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 08:40+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ohje" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Asetukset" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Käyttäjät" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Sovellukset" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Ylläpitäjä" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "ei voitu määrittää" + #: json.php:28 msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Todennusvirhe" @@ -82,55 +86,55 @@ msgstr "Teksti" msgid "Images" msgstr "Kuvat" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekuntia sitten" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minuuttia sitten" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 tunti sitten" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d tuntia sitten" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "tänään" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "eilen" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d päivää sitten" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "viime kuussa" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d kuukautta sitten" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "viime vuonna" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index cd05b6ab16..ca272a1b28 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-09 23:40+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,6 +29,11 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Envoyer" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -43,46 +48,46 @@ msgstr "Impossible de déplacer %s" msgid "Unable to rename file" msgstr "Impossible de renommer le fichier" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été chargé. Erreur inconnue" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été téléversé avec succès" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement téléversé" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Aucun fichier n'a été téléversé" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Il manque un répertoire temporaire" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Espace disponible insuffisant" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Dossier invalide." @@ -138,98 +143,100 @@ msgstr "Fichiers non partagés : {files}" msgid "deleted {files}" msgstr "Fichiers supprimés : {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' n'est pas un nom de fichier valide." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Le nom de fichier ne peut être vide." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Fermer" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "En cours" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 fichier en cours de téléchargement" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} fichiers téléversés" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "L'URL ne peut-être vide" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} fichiers indexés" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Taille" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modifié" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 fichier" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} fichiers" @@ -281,10 +288,6 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:18 -msgid "Upload" -msgstr "Envoyer" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Annuler l'envoi" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 7617ac30e7..07fd3669c4 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-26 00:01+0100\n" -"PO-Revision-Date: 2012-11-25 00:56+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Aide" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personnel" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Paramètres" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Utilisateurs" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Applications" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administration" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "L'application n'est pas activée" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Erreur d'authentification" @@ -83,55 +87,55 @@ msgstr "Texte" msgid "Images" msgstr "Images" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "à l'instant" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "il y a 1 minute" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "il y a %d minutes" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Il y a une heure" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Il y a %d heures" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "aujourd'hui" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "hier" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "il y a %d jours" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "le mois dernier" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Il y a %d mois" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "l'année dernière" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 2387a6610f..d7711dff1b 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-14 00:17+0100\n" -"PO-Revision-Date: 2013-01-13 10:49+0000\n" -"Last-Translator: Xosé M. Lamas \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,11 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Enviar" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "Non se puido mover %s" msgid "Unable to rename file" msgstr "Non se pode renomear o ficheiro" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Non se subiu ningún ficheiro. Erro descoñecido." -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Non hai erros. O ficheiro enviouse correctamente" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado foi só parcialmente enviado" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Falta un cartafol temporal" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "O espazo dispoñíbel é insuficiente" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -128,98 +133,100 @@ msgstr "{files} sen compartir" msgid "deleted {files}" msgstr "{files} eliminados" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' é un nonme de ficheiro non válido" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "O nome de ficheiro non pode estar baldeiro" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "xerando un ficheiro ZIP, o que pode levar un anaco." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Pechar" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Pendentes" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 ficheiro subíndose" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} ficheiros subíndose" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL non pode quedar baleiro." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol non válido. O uso de 'Shared' está reservado por Owncloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} ficheiros escaneados" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Tamaño" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} ficheiros" @@ -271,10 +278,6 @@ msgstr "Cartafol" msgid "From link" msgstr "Dende a ligazón" -#: templates/index.php:18 -msgid "Upload" -msgstr "Enviar" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar a subida" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 739b0ba67f..21150b035b 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-08 00:10+0100\n" -"PO-Revision-Date: 2012-12-06 11:56+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Axuda" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Persoal" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Configuracións" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Usuarios" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Aplicativos" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Administración" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados de un en un." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "O aplicativo non está activado" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Produciuse un erro na autenticación" @@ -84,55 +88,55 @@ msgstr "Texto" msgid "Images" msgstr "Imaxes" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "hai segundos" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "hai 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "hai %d minutos" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Vai 1 hora" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Vai %d horas" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoxe" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "onte" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "hai %d días" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "último mes" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Vai %d meses" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "último ano" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 48aed85ad9..2004bb9b3c 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -5,13 +5,14 @@ # Translators: # , 2012. # Miguel Branco, 2012. +# Xosé M. Lamas , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-18 06:15+0000\n" +"Last-Translator: Xosé M. Lamas \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "Autenticación WebDAV" #: templates/settings.php:4 msgid "URL: http://" @@ -32,4 +33,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud enviará as credenciais do usuario a esta URL. Este conector comproba a resposta e interpretará os códigos de estado 401 e 403 como credenciais non válidas, e todas as outras respostas como credenciais válidas." diff --git a/l10n/he/files.po b/l10n/he/files.po index cbf762beda..f3c44d3786 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,11 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "העלאה" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -35,46 +40,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ שהועלה הועלה בצורה חלקית" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "לא הועלו קבצים" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "תיקייה זמנית חסרה" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -130,98 +135,100 @@ msgstr "בוטל שיתופם של {files}" msgid "deleted {files}" msgstr "{files} נמחקו" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "יוצר קובץ ZIP, אנא המתן." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "שגיאת העלאה" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "סגירה" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "ממתין" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} קבצים נשלחים" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "קישור אינו יכול להיות ריק." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} קבצים נסרקו" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "אירעה שגיאה במהלך הסריקה" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "שם" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "גודל" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} קבצים" @@ -273,10 +280,6 @@ msgstr "תיקייה" msgid "From link" msgstr "מקישור" -#: templates/index.php:18 -msgid "Upload" -msgstr "העלאה" - #: templates/index.php:41 msgid "Cancel upload" msgstr "ביטול ההעלאה" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index de97f2df88..8383f3ccc9 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 06:32+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "עזרה" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "אישי" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "הגדרות" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "משתמשים" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "יישומים" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "מנהל" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "חזרה לקבצים" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "יישומים אינם מופעלים" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "שגיאת הזדהות" @@ -83,55 +87,55 @@ msgstr "טקסט" msgid "Images" msgstr "תמונות" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "שניות" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "לפני %d דקות" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "לפני שעה" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "לפני %d שעות" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "היום" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "אתמול" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "לפני %d ימים" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "חודש שעבר" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "לפני %d חודשים" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "שנה שעברה" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "שנים" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index c555c20841..7e4cd2a3e6 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,11 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +276,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 310d410a6e..9cb9753235 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index e69aea6cf7..317b0aa768 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Pošalji" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -34,46 +39,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je poslana uspješno i bez pogrešaka" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je poslana samo djelomično" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Ni jedna datoteka nije poslana" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Nedostaje privremena mapa" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -129,98 +134,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "generiranje ZIP datoteke, ovo može potrajati." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Pogreška pri slanju" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Zatvori" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "U tijeku" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "grečka prilikom skeniranja" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Naziv" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -272,10 +279,6 @@ msgstr "mapa" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Pošalji" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Prekini upload" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 80301078e4..28ed5873c3 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoć" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osobno" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Postavke" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Korisnici" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Greška kod autorizacije" @@ -81,55 +85,55 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekundi prije" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "danas" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "jučer" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "prošli mjesec" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "prošlu godinu" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index e1167276c2..25cb374e51 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Pomoć" diff --git a/l10n/hu/files.po b/l10n/hu/files.po index 4956069f94..bcba127002 100644 --- a/l10n/hu/files.po +++ b/l10n/hu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:05+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,11 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +276,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/hu/lib.po b/l10n/hu/lib.po index 0dc080f7db..dc349f094e 100644 --- a/l10n/hu/lib.po +++ b/l10n/hu/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-03 00:04+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,27 +17,27 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "" @@ -57,11 +57,15 @@ msgstr "" msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 129de98dc1..891c8694dd 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -6,13 +6,14 @@ # Adam Toth , 2012. # , 2011. # Peter Borsa , 2012. +# Tamas Nagy , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 08:13+0000\n" +"Last-Translator: Tamas Nagy \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,55 +87,55 @@ msgstr "Nem sikerült a kedvencekből törölni ezt: %s" msgid "Settings" msgstr "Beállítások" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "ma" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "tegnap" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "több hónapja" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "tavaly" -#: js/js.js:723 +#: js/js.js:718 msgid "years ago" msgstr "több éve" @@ -565,4 +566,4 @@ msgstr "következő" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index bf6a28272e..99731539f8 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -4,6 +4,7 @@ # # Translators: # Adam Toth , 2012. +# , 2013. # , 2013. # , 2011. # Peter Borsa , 2011. @@ -11,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -21,60 +22,65 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Feltöltés" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel" #: ajax/move.php:24 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Nem sikerült %s áthelyezése" #: ajax/rename.php:19 msgid "Unable to rename file" -msgstr "" +msgstr "Nem lehet átnevezni a fájlt" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Nem töltődött fel semmi" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Nincs elég szabad hely" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -130,98 +136,100 @@ msgstr "{files} fájl megosztása visszavonva" msgid "deleted {files}" msgstr "{files} fájl törölve" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' fájlnév érvénytelen." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "A fájlnév nem lehet semmi." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ZIP-fájl generálása, ez eltarthat egy ideig." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Feltöltési hiba" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Bezárás" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Folyamatban" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} fájl töltődik föl" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Az URL nem lehet semmi." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} fájlt találtunk" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "Hiba a fájllista-ellenőrzés során" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Név" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Méret" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Módosítva" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 fájl" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} fájl" @@ -273,10 +281,6 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:18 -msgid "Upload" -msgstr "Feltöltés" - #: templates/index.php:41 msgid "Cancel upload" msgstr "A feltöltés megszakítása" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 1a78f30958..2db700bdfc 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -4,12 +4,14 @@ # # Translators: # Adam Toth , 2012. +# , 2013. +# Laszlo Tornoci , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 09:34+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 13:13+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -18,27 +20,27 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Súgó" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Személyes" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Beállítások" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Felhasználók" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Alkalmazások" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Admin" @@ -56,13 +58,17 @@ msgstr "Vissza a Fájlokhoz" #: files.php:390 msgid "Selected files too large to generate zip file." -msgstr "A kiválasztott fájlok túl nagy a zip tömörítéshez." +msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." + +#: helper.php:229 +msgid "couldn't be determined" +msgstr "nem sikerült azonosítani" #: json.php:28 msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Hitelesítési hiba" @@ -82,55 +88,55 @@ msgstr "Szöveg" msgid "Images" msgstr "Képek" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "másodperce" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 perce" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d perce" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 órája" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d órája" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "ma" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "tegnap" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d napja" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "múlt hónapban" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d hónapja" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "tavaly" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "éve" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 7f79a7f327..8649648061 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # , 2013. +# Laszlo Tornoci , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 15:57+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +30,7 @@ msgstr "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompa msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Figyelmeztetés: Az LDAP PHP modul nincs telepítve, ezért ez az alrendszer nem fog működni. Kérje meg a rendszergazdát, hogy telepítse!" #: templates/settings.php:15 msgid "Host" @@ -46,7 +47,7 @@ msgstr "DN-gyökér" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "Soronként egy DN-gyökér" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -61,7 +62,7 @@ msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "Annak a felhasználónak a DN-je, akinek a nevében bejelentkezve kapcsolódunk a kiszolgálóhoz, pl. uid=agent,dc=example,dc=com. Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!" #: templates/settings.php:18 msgid "Password" @@ -121,7 +122,7 @@ msgstr "A felhasználói fa gyökere" #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "Soronként egy felhasználói fa gyökerét adhatjuk meg" #: templates/settings.php:26 msgid "Base Group Tree" @@ -129,7 +130,7 @@ msgstr "A csoportfa gyökere" #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "Soronként egy csoportfa gyökerét adhatjuk meg" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 48fee82947..c99fb7952d 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Incargar" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Nulle file esseva incargate" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Clauder" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nomine" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Dimension" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificate" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -271,10 +278,6 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Incargar" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index ac4ffabd49..2e63828482 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Adjuta" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Configurationes" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usatores" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "Texto" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 769c5692c4..6a13131043 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:19+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Adjuta" diff --git a/l10n/id/files.po b/l10n/id/files.po index cd2442d53b..31ff4ad0fe 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Unggah" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -34,46 +39,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML." -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Kehilangan folder temporer" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -129,98 +134,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "membuat berkas ZIP, ini mungkin memakan waktu." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "tutup" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Menunggu" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "tautan tidak boleh kosong" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nama" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Ukuran" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -272,10 +279,6 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Unggah" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Batal mengunggah" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index ce05e57c12..013ed9d846 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-14 00:17+0100\n" -"PO-Revision-Date: 2013-01-13 01:26+0000\n" -"Last-Translator: Mohamad Hasan Al Banna \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,11 +59,15 @@ msgstr "kembali ke daftar file" msgid "Selected files too large to generate zip file." msgstr "file yang dipilih terlalu besar untuk membuat file zip" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "aplikasi tidak diaktifkan" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "autentikasi bermasalah" @@ -83,55 +87,55 @@ msgstr "teks" msgid "Images" msgstr "Gambar" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 menit lalu" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d menit lalu" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d jam yang lalu" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hari ini" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "kemarin" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d hari lalu" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "bulan kemarin" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d bulan yang lalu" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "tahun kemarin" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/is/files.po b/l10n/is/files.po index f1c7c6d6dd..6501754dbc 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 22:46+0000\n" -"Last-Translator: sveinn \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,11 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Senda inn" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -32,46 +37,46 @@ msgstr "Gat ekki fært %s" msgid "Unable to rename file" msgstr "Gat ekki endurskýrt skrá" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Ekki nægt pláss tiltækt" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Ógild mappa." @@ -127,98 +132,100 @@ msgstr "Hætti við deilingu á {files}" msgid "deleted {files}" msgstr "eyddi {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' er ekki leyfilegt nafn." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Nafn skráar má ekki vera tómt" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "bý til ZIP skrá, það gæti tekið smá stund." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Villa við innsendingu" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Loka" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Bíður" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} skrár innsendar" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Vefslóð má ekki vera tóm." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} skrár skimaðar" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "villa við skimun" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nafn" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Stærð" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Breytt" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 skrá" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} skrár" @@ -270,10 +277,6 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:18 -msgid "Upload" -msgstr "Senda inn" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Hætta við innsendingu" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 0e7cb46187..e6b54f855f 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 15:15+0000\n" -"Last-Translator: sveinn \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,27 +18,27 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hjálp" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Um mig" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Stillingar" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Notendur" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Forrit" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Stjórnun" @@ -58,11 +58,15 @@ msgstr "Aftur í skrár" msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Forrit ekki virkt" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Villa við auðkenningu" @@ -82,55 +86,55 @@ msgstr "Texti" msgid "Images" msgstr "Myndir" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sek." -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "fyrir %d mínútum" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "fyrir %d klst." -#: template.php:108 +#: template.php:118 msgid "today" msgstr "í dag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "í gær" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "fyrir %d dögum" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "síðasta mánuði" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "fyrir %d mánuðum" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "síðasta ári" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/it/files.po b/l10n/it/files.po index 89db9dc1bd..e767f5c3d2 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 06:53+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,11 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Carica" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -35,46 +40,46 @@ msgstr "Impossibile spostare %s" msgid "Unable to rename file" msgstr "Impossibile rinominare il file" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato parzialmente caricato" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Cartella temporanea mancante" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Spazio disponibile insufficiente" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Cartella non valida." @@ -130,98 +135,100 @@ msgstr "non condivisi {files}" msgid "deleted {files}" msgstr "eliminati {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' non è un nome file valido." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Il nome del file non può essere vuoto." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "creazione file ZIP, potrebbe richiedere del tempo." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Chiudi" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "In corso" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} file in fase di caricamentoe" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "L'URL non può essere vuoto." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} file analizzati" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Dimensione" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificato" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 file" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} file" @@ -273,10 +280,6 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:18 -msgid "Upload" -msgstr "Carica" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Annulla invio" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 093eca463d..e162e94ad3 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012. +# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-15 23:21+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 06:44+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Aiuto" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personale" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Impostazioni" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Utenti" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Applicazioni" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Torna ai file" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "non può essere determinato" + #: json.php:28 msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Errore di autenticazione" @@ -82,55 +86,55 @@ msgstr "Testo" msgid "Images" msgstr "Immagini" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "secondi fa" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuto fa" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minuti fa" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 ora fa" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d ore fa" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "oggi" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ieri" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d giorni fa" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "il mese scorso" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d mesi fa" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "l'anno scorso" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 95df71ce19..b8c1b46912 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -7,16 +7,16 @@ # Francesco Apruzzese , 2011. # , 2012. # Jan-Christoph Borchardt , 2011. -# , 2011, 2012. +# , 2011-2013. # , 2011. # Vincenzo Reale , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 08:30+0000\n" +"Last-Translator: ufic \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -259,7 +259,7 @@ msgstr "Altro" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" -msgstr "Gruppo di amministrazione" +msgstr "Gruppi amministrati" #: templates/users.php:87 msgid "Storage" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 1eedd3df93..5c009d8296 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -4,14 +4,14 @@ # # Translators: # Innocenzo Ventre , 2012. -# Vincenzo Reale , 2012. +# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 08:29+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Avviso: le applicazioni user_ldap e user_webdavauth sono incompat msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Avviso: il modulo PHP LDAP non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo." #: templates/settings.php:15 msgid "Host" @@ -47,7 +47,7 @@ msgstr "DN base" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "Un DN base per riga" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -122,7 +122,7 @@ msgstr "Struttura base dell'utente" #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "Un DN base utente per riga" #: templates/settings.php:26 msgid "Base Group Tree" @@ -130,7 +130,7 @@ msgstr "Struttura base del gruppo" #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "Un DN base gruppo per riga" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index 9e2b427132..ba6bfbe7d4 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-14 23:33+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 06:51+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -31,4 +31,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud invierà le credenziali dell'utente a questo URL. Questa estensione controlla la risposta e interpreta i codici di stato 401 e 403 come credenziali non valide, e tutte le altre risposte come credenziali valide." diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 74cabcaca6..9ec5741e01 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 04:09+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,11 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "アップロード" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -35,46 +40,46 @@ msgstr "%s を移動できませんでした" msgid "Unable to rename file" msgstr "ファイル名の変更ができません" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "ファイルは一部分しかアップロードされませんでした" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "テンポラリフォルダが見つかりません" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "利用可能なスペースが十分にありません" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -130,98 +135,100 @@ msgstr "未共有 {files}" msgid "deleted {files}" msgstr "削除 {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' は無効なファイル名です。" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "ファイル名を空にすることはできません。" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ZIPファイルを生成中です、しばらくお待ちください。" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "アップロードエラー" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "閉じる" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "保留" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} ファイルをアップロード中" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URLは空にできません。" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} ファイルをスキャン" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "スキャン中のエラー" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "名前" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "サイズ" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "更新日時" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} ファイル" @@ -273,10 +280,6 @@ msgstr "フォルダ" msgid "From link" msgstr "リンク" -#: templates/index.php:18 -msgid "Upload" -msgstr "アップロード" - #: templates/index.php:41 msgid "Cancel upload" msgstr "アップロードをキャンセル" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 2f16f65754..8dca495799 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 00:37+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-01-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-18 08:12+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +19,55 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "ヘルプ" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "個人設定" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "設定" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "ユーザ" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "アプリ" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "管理者" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "ファイルに戻る" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "測定できませんでした" + #: json.php:28 msgid "Application is not enabled" msgstr "アプリケーションは無効です" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "認証エラー" @@ -82,55 +87,55 @@ msgstr "TTY TDD" msgid "Images" msgstr "画像" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "秒前" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1分前" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d 分前" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 時間前" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d 時間前" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "今日" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "昨日" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d 日前" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "先月" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d 分前" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "昨年" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index d76adc65a8..16a20c7207 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -4,15 +4,15 @@ # # Translators: # Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012-2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 05:47+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgstr "警告: user_ldap と user_webdavauth のアプリには互換性 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。" #: templates/settings.php:15 msgid "Host" @@ -48,7 +48,7 @@ msgstr "ベースDN" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "1行に1つのベースDN" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -123,7 +123,7 @@ msgstr "ベースユーザツリー" #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "1行に1つのユーザベースDN" #: templates/settings.php:26 msgid "Base Group Tree" @@ -131,7 +131,7 @@ msgstr "ベースグループツリー" #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "1行に1つのグループベースDN" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 9593386123..966cae8416 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -4,14 +4,14 @@ # # Translators: # Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 05:50+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV 認証" #: templates/settings.php:4 msgid "URL: http://" @@ -32,4 +32,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloudはこのURLにユーザ資格情報を送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 27c92e92ba..a789775653 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:05+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,11 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "ატვირთვა" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -32,46 +37,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -127,98 +132,100 @@ msgstr "გაზიარება მოხსნილი {files}" msgid "deleted {files}" msgstr "წაშლილი {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ZIP-ფაილის გენერირება, ამას ჭირდება გარკვეული დრო." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "შეცდომა ატვირთვისას" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "დახურვა" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} ფაილი იტვირთება" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} ფაილი სკანირებულია" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "შეცდომა სკანირებისას" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "სახელი" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "ზომა" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} ფაილი" @@ -270,10 +277,6 @@ msgstr "საქაღალდე" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "ატვირთვა" - #: templates/index.php:41 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 3011c8854f..f43fa26c13 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "დახმარება" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "პირადი" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "პარამეტრები" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "მომხმარებელი" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "აპლიკაციები" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "ადმინისტრატორი" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" @@ -82,55 +86,55 @@ msgstr "ტექსტი" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "წამის წინ" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "დღეს" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "გუშინ" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "გასულ თვეში" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ბოლო წელს" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 725d1fd402..14dbca3fc6 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "დახმარება" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 724bb5fd2d..5678e11882 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 13:42+0000\n" -"Last-Translator: Harim Park \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,11 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "업로드" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -36,46 +41,46 @@ msgstr "%s 항목을 이딩시키지 못하였음" msgid "Unable to rename file" msgstr "파일 이름바꾸기 할 수 없음" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "업로드에 성공하였습니다." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "파일이 부분적으로 업로드됨" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "업로드된 파일 없음" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "임시 폴더가 사라짐" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "여유공간이 부족합니다" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "올바르지 않은 디렉토리입니다." @@ -131,98 +136,100 @@ msgstr "{files} 공유 해제됨" msgid "deleted {files}" msgstr "{files} 삭제됨" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' 는 올바르지 않은 파일 이름 입니다." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "파일이름은 공란이 될 수 없습니다." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ZIP 파일을 생성하고 있습니다. 시간이 걸릴 수도 있습니다." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "업로드 오류" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "닫기" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "보류 중" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "파일 {count}개 업로드 중" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL을 입력해야 합니다." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "폴더 이름이 유효하지 않습니다. " -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "파일 {count}개 검색됨" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "검색 중 오류 발생" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "이름" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "크기" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "수정됨" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "파일 1개" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "파일 {count}개" @@ -274,10 +281,6 @@ msgstr "폴더" msgid "From link" msgstr "링크에서" -#: templates/index.php:18 -msgid "Upload" -msgstr "업로드" - #: templates/index.php:41 msgid "Cancel upload" msgstr "업로드 취소" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 3870ebda87..c759d43ece 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 06:06+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "도움말" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "개인" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "설정" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "사용자" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "앱" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "관리자" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화되었습니다." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "파일로 돌아가기" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "앱이 활성화되지 않았습니다" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "인증 오류" @@ -83,55 +87,55 @@ msgstr "텍스트" msgid "Images" msgstr "그림" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "초 전" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1분 전" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d분 전" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1시간 전" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d시간 전" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "오늘" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "어제" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d일 전" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "지난 달" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d개월 전" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "작년" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "년 전" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index e85f7e1304..abd2fbccd8 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,11 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "بارکردن" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "داخستن" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "ناو" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +276,6 @@ msgstr "بوخچه" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "بارکردن" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index ab5cb3ada2..64ee0185d3 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "یارمەتی" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "ده‌ستكاری" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "به‌كارهێنه‌ر" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 71ac247ecf..a6c6022411 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "یارمەتی" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index e664d38cc3..61b45edafd 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,11 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Eroplueden" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -32,46 +37,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -127,98 +132,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Et gëtt eng ZIP-File generéiert, dëst ka bëssen daueren." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Zoumaachen" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Numm" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Gréisst" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Geännert" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -270,10 +277,6 @@ msgstr "Dossier" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Eroplueden" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Upload ofbriechen" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index b164e98f22..09aea02677 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" -msgstr "" +msgstr "Hëllef" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Perséinlech" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Astellungen" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" @@ -71,7 +75,7 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Dateien" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" @@ -81,55 +85,55 @@ msgstr "SMS" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 5f4e6bd5a9..a12e3f905e 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:19+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Hëllef" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 0b5d2d78f5..bae5e238b1 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Įkelti" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -34,46 +39,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Klaidų nėra, failas įkeltas sėkmingai" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE parametrą, kuris yra nustatytas HTML formoje" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Nebuvo įkeltas nė vienas failas" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -129,98 +134,100 @@ msgstr "nebesidalinti {files}" msgid "deleted {files}" msgstr "ištrinti {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "kuriamas ZIP archyvas, tai gali užtrukti šiek tiek laiko." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Įkėlimo klaida" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Užverti" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} praskanuoti failai" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Dydis" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Pakeista" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 failas" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} failai" @@ -272,10 +279,6 @@ msgstr "Katalogas" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Įkelti" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Atšaukti siuntimą" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 8ef5110cd7..1f676fdd4e 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,55 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pagalba" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Asmeniniai" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Nustatymai" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Vartotojai" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Programos" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administravimas" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Atgal į Failus" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Programa neįjungta" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Autentikacijos klaida" @@ -83,55 +87,55 @@ msgstr "Žinučių" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "prieš kelias sekundes" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "prieš 1 minutę" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "prieš %d minučių" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "šiandien" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "vakar" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "prieš %d dienų" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "praėjusį mėnesį" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "pereitais metais" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 7b978c86d8..0d45b08c18 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Augšuplādet" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, augšupielāde veiksmīga" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Neviens fails netika augšuplādēts" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Nav iespējams saglabāt" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "lai uzģenerētu ZIP failu, kāds brīdis ir jāpagaida" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Augšuplādēšanas laikā radās kļūda" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Augšuplāde ir atcelta" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nosaukums" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Izmērs" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Izmainīts" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -271,10 +278,6 @@ msgstr "Mape" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Augšuplādet" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Atcelt augšuplādi" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 8ef8b7d506..03dc8d418c 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Palīdzība" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personīgi" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Iestatījumi" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Lietotāji" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Ielogošanās kļūme" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 04e36a5cc5..737869b743 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Palīdzība" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 5c3bf73323..4bd4be8d53 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Подигни" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -34,46 +39,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Нема грешка, датотеката беше подигната успешно" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Не беше подигната датотека" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Не постои привремена папка" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -129,98 +134,100 @@ msgstr "без споделување {files}" msgid "deleted {files}" msgstr "избришани {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Се генерира ZIP фајлот, ќе треба извесно време." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Грешка при преземање" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Затвои" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Чека" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} датотеки се подигаат" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Адресата неможе да биде празна." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} датотеки скенирани" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "грешка при скенирање" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Име" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Големина" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Променето" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 папка" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 датотека" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} датотеки" @@ -272,10 +279,6 @@ msgstr "Папка" msgid "From link" msgstr "Од врска" -#: templates/index.php:18 -msgid "Upload" -msgstr "Подигни" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Откажи прикачување" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index a315a725a9..ada3766072 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 13:04+0000\n" -"Last-Translator: Georgi Stanojevski \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Помош" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Лично" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Параметри" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Корисници" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Аппликации" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Админ" -#: files.php:366 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" -#: files.php:367 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: files.php:367 files.php:392 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Назад кон датотеки" -#: files.php:391 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Избраните датотеки се преголеми за да се генерира zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Апликацијата не е овозможена" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Грешка во автентикација" @@ -82,55 +86,55 @@ msgstr "Текст" msgid "Images" msgstr "Слики" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "пред секунди" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "пред 1 минута" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "пред %d минути" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "пред 1 час" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "пред %d часови" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "денеска" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчера" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "пред %d денови" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "минатиот месец" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "пред %d месеци" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "минатата година" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 4a61e11d5e..c80a334455 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -193,4 +193,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Помош" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 5ae3ad9c1a..aa3c0c9f0c 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,11 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Muat naik" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -35,46 +40,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat, fail berjaya dimuat naik." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML " -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Sebahagian daripada fail telah dimuat naik. " -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Tiada fail yang dimuat naik" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Folder sementara hilang" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -130,98 +135,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Tutup" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nama " -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Saiz" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -273,10 +280,6 @@ msgstr "Folder" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Muat naik" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Batal muat naik" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 57990c29b6..5365e602ba 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" -msgstr "" +msgstr "Bantuan" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Peribadi" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Tetapan" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Pengguna" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Ralat pengesahan" @@ -81,55 +85,55 @@ msgstr "Teks" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 8d6854379e..3c7e352259 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Bantuan" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index d6d18d6614..4ca3bc26a6 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,11 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Last opp" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -40,46 +45,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Det er ingen feil. Filen ble lastet opp." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Filopplastningen ble bare delvis gjennomført" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Ingen fil ble lastet opp" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -135,98 +140,100 @@ msgstr "" msgid "deleted {files}" msgstr "slettet {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "opprettet ZIP-fil, dette kan ta litt tid" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Lukk" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Ventende" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} filer laster opp" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL-en kan ikke være tom." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} filer lest inn" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "feil under skanning" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Navn" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Størrelse" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Endret" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 fil" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} filer" @@ -278,10 +285,6 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:18 -msgid "Upload" -msgstr "Last opp" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt opplasting" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index abaf9fc084..4de8700485 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:26+0000\n" -"Last-Translator: espenbye \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,27 +22,27 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Hjelp" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Personlig" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Innstillinger" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Brukere" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Apper" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Admin" @@ -62,11 +62,15 @@ msgstr "Tilbake til filer" msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Autentiseringsfeil" @@ -86,55 +90,55 @@ msgstr "Tekst" msgid "Images" msgstr "Bilder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minutt siden" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 time siden" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d timer siden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "i dag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "i går" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dager siden" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "forrige måned" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d måneder siden" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "i fjor" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "år siden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 69d52caaea..899da8f63c 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 09:54+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,6 +28,11 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Upload" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -42,46 +47,46 @@ msgstr "Kon %s niet verplaatsen" msgid "Unable to rename file" msgstr "Kan bestand niet hernoemen" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Geen bestand geüpload" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Een tijdelijke map mist" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Niet genoeg ruimte beschikbaar" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -137,98 +142,100 @@ msgstr "delen gestopt {files}" msgid "deleted {files}" msgstr "verwijderde {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' is een ongeldige bestandsnaam." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Bestandsnaam kan niet leeg zijn." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: js/files.js:187 -msgid "generating ZIP-file, it may take some time." -msgstr "aanmaken ZIP-file, dit kan enige tijd duren." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:225 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:225 +#: js/files.js:242 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:242 +#: js/files.js:259 msgid "Close" msgstr "Sluit" -#: js/files.js:261 js/files.js:377 js/files.js:410 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Wachten" -#: js/files.js:281 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:284 js/files.js:339 js/files.js:354 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} bestanden aan het uploaden" -#: js/files.js:358 js/files.js:394 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:465 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:538 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL kan niet leeg zijn." -#: js/files.js:544 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:728 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:736 +#: js/files.js:783 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:809 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Naam" -#: js/files.js:810 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:811 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:830 +#: js/files.js:878 msgid "1 folder" msgstr "1 map" -#: js/files.js:832 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:840 +#: js/files.js:888 msgid "1 file" msgstr "1 bestand" -#: js/files.js:842 +#: js/files.js:890 msgid "{count} files" msgstr "{count} bestanden" @@ -280,10 +287,6 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:18 -msgid "Upload" -msgstr "Upload" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Upload afbreken" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index f8ebea3c49..2ae038b9e4 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2013. # , 2012. # Richard Bos , 2012. # , 2012. @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 05:45+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-01-19 00:04+0100\n" +"PO-Revision-Date: 2013-01-18 09:03+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +21,55 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Help" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Persoonlijk" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Instellingen" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Gebruikers" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Beheerder" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Terug naar bestanden" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "kon niet worden vastgesteld" + #: json.php:28 msgid "Application is not enabled" msgstr "De applicatie is niet actief" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Authenticatie fout" @@ -84,55 +89,55 @@ msgstr "Tekst" msgid "Images" msgstr "Afbeeldingen" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "seconden geleden" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuut geleden" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minuten geleden" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 uur geleden" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d uren geleden" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "vandaag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "gisteren" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dagen geleden" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "vorige maand" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d maanden geleden" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "vorig jaar" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 9c8786e28c..41b46e70ec 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2012. +# André Koot , 2012-2013. +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 15:38+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +31,7 @@ msgstr "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompati msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren." #: templates/settings.php:15 msgid "Host" @@ -43,19 +44,19 @@ msgstr "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval #: templates/settings.php:16 msgid "Base DN" -msgstr "Basis DN" +msgstr "Base DN" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "Een Base DN per regel" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Je kunt het standaard DN voor gebruikers en groepen specificeren in het tab Geavanceerd." +msgstr "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd." #: templates/settings.php:17 msgid "User DN" -msgstr "Gebruikers DN" +msgstr "User DN" #: templates/settings.php:17 msgid "" @@ -122,7 +123,7 @@ msgstr "Basis Gebruikers Structuur" #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "Een User Base DN per regel" #: templates/settings.php:26 msgid "Base Group Tree" @@ -130,7 +131,7 @@ msgstr "Basis Groupen Structuur" #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "Een Group Base DN per regel" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 28e98a9cd5..20c27a5632 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Last opp" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Lukk" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Storleik" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Endra" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -271,10 +278,6 @@ msgstr "Mappe" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Last opp" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index ee2fd61fe0..5d33fc1e80 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Hjelp" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personleg" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Innstillingar" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Brukarar" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Feil i autentisering" @@ -81,55 +85,55 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 4f58028284..0046c6c622 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:19+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Hjelp" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 63681ee834..98f3014e02 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,11 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Amontcarga" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -32,46 +37,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -127,98 +132,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Fichièr ZIP a se far, aquò pòt trigar un briu." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Error d'amontcargar" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Al esperar" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "error pendant l'exploracion" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nom" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Talha" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -270,10 +277,6 @@ msgstr "Dorsièr" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Amontcarga" - #: templates/index.php:41 msgid "Cancel upload" msgstr " Anulla l'amontcargar" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 150704cd23..7a056315f6 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ajuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Configuracion" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usancièrs" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Apps" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Error d'autentificacion" @@ -82,55 +86,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "segonda a" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuta a" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutas a" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "uèi" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ièr" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d jorns a" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "mes passat" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "an passat" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 3cc12b3e1f..f3e7f30979 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Ajuda" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 1d4c605b73..14c0960323 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 08:30+0000\n" -"Last-Translator: bbartlomiej \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,6 +25,11 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Prześlij" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -39,46 +44,46 @@ msgstr "Nie można było przenieść %s" msgid "Unable to rename file" msgstr "Nie można zmienić nazwy pliku" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Przesłano plik" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Plik przesłano tylko częściowo" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Nie przesłano żadnego pliku" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Brak katalogu tymczasowego" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Za mało miejsca" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -134,98 +139,100 @@ msgstr "Udostępniane wstrzymane {files}" msgid "deleted {files}" msgstr "usunięto {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' jest nieprawidłową nazwą pliku." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Nazwa pliku nie może być pusta." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'są niedozwolone." -#: js/files.js:187 -msgid "generating ZIP-file, it may take some time." -msgstr "Generowanie pliku ZIP, może potrwać pewien czas." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:225 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku jeśli jest katalogiem lub ma 0 bajtów" -#: js/files.js:225 +#: js/files.js:242 msgid "Upload Error" msgstr "Błąd wczytywania" -#: js/files.js:242 +#: js/files.js:259 msgid "Close" msgstr "Zamknij" -#: js/files.js:261 js/files.js:377 js/files.js:410 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Oczekujące" -#: js/files.js:281 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:284 js/files.js:339 js/files.js:354 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} przesyłanie plików" -#: js/files.js:358 js/files.js:394 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:465 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Teraz opuszczając stronę wysyłanie zostanie anulowane." -#: js/files.js:538 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL nie może być pusty." -#: js/files.js:544 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud" -#: js/files.js:728 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:736 +#: js/files.js:783 msgid "error while scanning" msgstr "Wystąpił błąd podczas skanowania" -#: js/files.js:809 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nazwa" -#: js/files.js:810 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Rozmiar" -#: js/files.js:811 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:830 +#: js/files.js:878 msgid "1 folder" msgstr "1 folder" -#: js/files.js:832 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:840 +#: js/files.js:888 msgid "1 file" msgstr "1 plik" -#: js/files.js:842 +#: js/files.js:890 msgid "{count} files" msgstr "{count} pliki" @@ -277,10 +284,6 @@ msgstr "Katalog" msgid "From link" msgstr "Z linku" -#: templates/index.php:18 -msgid "Upload" -msgstr "Prześlij" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Przestań wysyłać" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 0cebd73183..5d59857b1b 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-28 00:10+0100\n" -"PO-Revision-Date: 2012-11-27 08:54+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoc" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osobiste" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ustawienia" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Użytkownicy" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikacje" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Administrator" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Wróć do plików" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Błąd uwierzytelniania" @@ -84,55 +88,55 @@ msgstr "Połączenie tekstowe" msgid "Images" msgstr "Obrazy" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekund temu" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minutę temu" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minut temu" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 godzine temu" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d godzin temu" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "dzisiaj" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "wczoraj" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dni temu" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "ostatni miesiąc" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d miesiecy temu" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ostatni rok" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 4c12f2aa8c..d76af48767 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,11 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +276,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 3ce2989bb9..af7e0260b9 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ustawienia" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 105d7c9638..e56d1ca354 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Carregar" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -39,46 +44,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi transferido. Erro desconhecido" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Não houve nenhum erro, o arquivo foi transferido com sucesso" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -134,98 +139,100 @@ msgstr "{files} não compartilhados" msgid "deleted {files}" msgstr "{files} apagados" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "gerando arquivo ZIP, isso pode levar um tempo." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossível enviar seus arquivo como diretório ou ele tem 0 bytes." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Fechar" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Pendente" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL não pode ficar em branco" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} arquivos scaneados" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "erro durante verificação" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} arquivos" @@ -277,10 +284,6 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:18 -msgid "Upload" -msgstr "Carregar" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar upload" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index a42adb315b..f1a550574b 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 18:47+0000\n" -"Last-Translator: Schopfer \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ajuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Pessoal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Ajustes" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Usuários" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicações" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplicação não está habilitada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Erro de autenticação" @@ -84,55 +88,55 @@ msgstr "Texto" msgid "Images" msgstr "Imagens" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "segundos atrás" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minuto atrás" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minutos atrás" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 hora atrás" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d horas atrás" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoje" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ontem" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dias atrás" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "último mês" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d meses atrás" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "último ano" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 74b9f45b85..8ea6fe5d6e 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-09 23:21+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,11 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Enviar" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -36,46 +41,46 @@ msgstr "Não foi possível move o ficheiro %s" msgid "Unable to rename file" msgstr "Não foi possível renomear o ficheiro" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Sem erro, ficheiro enviado com sucesso" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado só foi enviado parcialmente" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Não foi enviado nenhum ficheiro" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Falta uma pasta temporária" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Espaço em disco insuficiente!" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Directório Inválido" @@ -131,98 +136,100 @@ msgstr "{files} não partilhado(s)" msgid "deleted {files}" msgstr "{files} eliminado(s)" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' não é um nome de ficheiro válido!" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "O nome do ficheiro não pode estar vazio." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "a gerar o ficheiro ZIP, poderá demorar algum tempo." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Erro no envio" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Fechar" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Pendente" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "O URL não pode estar vazio." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nome" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Tamanho" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificado" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} ficheiros" @@ -274,10 +281,6 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:18 -msgid "Upload" -msgstr "Enviar" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Cancelar envio" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index fe66807cc3..b9d558cbb4 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. # Duarte Velez Grilo , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-17 00:01+0100\n" -"PO-Revision-Date: 2012-11-16 00:33+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 00:47+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,55 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Ajuda" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Pessoal" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Configurações" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Utilizadores" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplicações" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "Não foi possível determinar" + #: json.php:28 msgid "Application is not enabled" msgstr "A aplicação não está activada" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Erro na autenticação" @@ -83,55 +87,55 @@ msgstr "Texto" msgid "Images" msgstr "Imagens" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "há alguns segundos" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "há 1 minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "há %d minutos" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Há 1 horas" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Há %d horas" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hoje" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ontem" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "há %d dias" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "mês passado" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Há %d meses atrás" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ano passado" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "há anos" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 2d18a9c616..734a694cce 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. # Duarte Velez Grilo , 2012. # Helder Meneses , 2012. # Nelson Rosado , 2012. @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 00:52+0000\n" +"Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Aviso: A aplicação user_ldap e user_webdavauth são incompative msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Aviso: O módulo PHP LDAP não está instalado, logo não irá funcionar. Por favor peça ao administrador para o instalar." #: templates/settings.php:15 msgid "Host" @@ -49,7 +49,7 @@ msgstr "DN base" #: templates/settings.php:16 msgid "One Base DN per line" -msgstr "" +msgstr "Uma base DN por linho" #: templates/settings.php:16 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -124,7 +124,7 @@ msgstr "Base da árvore de utilizadores." #: templates/settings.php:25 msgid "One User Base DN per line" -msgstr "" +msgstr "Uma base de utilizador DN por linha" #: templates/settings.php:26 msgid "Base Group Tree" @@ -132,7 +132,7 @@ msgstr "Base da árvore de grupos." #: templates/settings.php:26 msgid "One Group Base DN per line" -msgstr "" +msgstr "Uma base de grupo DN por linha" #: templates/settings.php:27 msgid "Group-Member association" diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index 4b688e38d0..6f6d78b3df 100644 --- a/l10n/pt_PT/user_webdavauth.po +++ b/l10n/pt_PT/user_webdavauth.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# , 2012-2013. # Helder Meneses , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 00:54+0000\n" +"Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "Autenticação WebDAV" #: templates/settings.php:4 msgid "URL: http://" @@ -32,4 +32,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "O ownCloud vai enviar as credenciais do utilizador através deste URL. Este plugin verifica a resposta e vai interpretar os códigos de estado HTTP 401 e 403 como credenciais inválidas, e todas as outras como válidas." diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 4c4093cbf4..113c4ac8b1 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Claudiu , 2011, 2012. +# Claudiu , 2011-2013. # Dimon Pockemon <>, 2012. # Eugen Mihalache , 2012. # , 2012-2013. @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 13:23+0000\n" -"Last-Translator: g.ciprian \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,11 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Încarcă" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -36,46 +41,46 @@ msgstr "Nu s-a putut muta %s" msgid "Unable to rename file" msgstr "Nu s-a putut redenumi fișierul" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Nicio eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Niciun fișier încărcat" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Director invalid." @@ -131,98 +136,100 @@ msgstr "nedistribuit {files}" msgid "deleted {files}" msgstr "Sterse {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' este un nume invalid de fișier." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Numele fișierului nu poate rămâne gol." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "se generază fișierul ZIP, va dura ceva timp." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Eroare la încărcare" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Închide" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "În așteptare" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} fisiere incarcate" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Adresa URL nu poate fi goală." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} fisiere scanate" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "eroare la scanarea" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Nume" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Dimensiune" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Modificat" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 folder" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 fisier" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} fisiere" @@ -274,10 +281,6 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:18 -msgid "Upload" -msgstr "Încarcă" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Anulează încărcarea" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 3cfb1c4c4a..cbfb8c3bfd 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-27 00:04+0100\n" -"PO-Revision-Date: 2012-12-26 05:14+0000\n" -"Last-Translator: laurentiucristescu \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,27 +19,27 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Ajutor" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Personal" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Setări" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Utilizatori" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Aplicații" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Admin" @@ -59,11 +59,15 @@ msgstr "Înapoi la fișiere" msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplicația nu este activată" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Eroare la autentificare" @@ -83,55 +87,55 @@ msgstr "Text" msgid "Images" msgstr "Imagini" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "secunde în urmă" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minut în urmă" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minute în urmă" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Acum o ora" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d ore in urma" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "astăzi" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ieri" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d zile în urmă" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "ultima lună" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d luni in urma" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ultimul an" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index aaa96b72d9..7e8d79834d 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-13 00:08+0100\n" -"PO-Revision-Date: 2013-01-12 11:53+0000\n" -"Last-Translator: adol \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,6 +28,11 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Загрузить" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -42,46 +47,46 @@ msgstr "Невозможно переместить %s" msgid "Unable to rename file" msgstr "Невозможно переименовать файл" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Файл успешно загружен" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Файл был загружен не полностью" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Невозможно найти временную папку" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Недостаточно свободного места" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Неправильный каталог." @@ -137,98 +142,100 @@ msgstr "не опубликованные {files}" msgid "deleted {files}" msgstr "удаленные {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' - неправильное имя файла." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Имя файла не может быть пустым." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "создание ZIP-файла, это может занять некоторое время." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Закрыть" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Ожидание" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} файлов загружается" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Ссылка не может быть пустой." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} файлов просканировано" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "ошибка во время санирования" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Название" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Изменён" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 папка" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 файл" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} файлов" @@ -280,10 +287,6 @@ msgstr "Папка" msgid "From link" msgstr "Из ссылки" -#: templates/index.php:18 -msgid "Upload" -msgstr "Загрузить" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Отмена загрузки" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index a031a62f80..3426bc6172 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-22 00:01+0100\n" -"PO-Revision-Date: 2012-11-21 12:19+0000\n" -"Last-Translator: Mihail Vasiliev \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,51 +22,55 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Помощь" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Личное" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Настройки" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Пользователи" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Приложения" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Назад к файлам" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Приложение не разрешено" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Ошибка аутентификации" @@ -86,55 +90,55 @@ msgstr "Текст" msgid "Images" msgstr "Изображения" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "менее минуты" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 минуту назад" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d минут назад" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "час назад" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d часов назад" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "сегодня" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчера" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d дней назад" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "в прошлом месяце" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d месяцев назад" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "в прошлом году" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "годы назад" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 5c40bd57bd..04fe3223ae 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Загрузить " + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Ошибка отсутствует, файл загружен успешно." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Размер загруженного" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Загружаемый файл был загружен частично" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Отсутствует временная папка" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Не удалось записать на диск" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "Cовместное использование прекращено {ф msgid "deleted {files}" msgstr "удалено {файлы}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Создание ZIP-файла, это может занять некоторое время." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Закрыть" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Ожидающий решения" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL не должен быть пустым." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{количество} файлов отсканировано" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "ошибка при сканировании" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Имя" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Размер" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Изменен" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 папка" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 файл" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{количество} файлов" @@ -271,10 +278,6 @@ msgstr "Папка" msgid "From link" msgstr "По ссылке" -#: templates/index.php:18 -msgid "Upload" -msgstr "Загрузить " - #: templates/index.php:41 msgid "Cancel upload" msgstr "Отмена загрузки" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 5ca45d27ad..be65ac1f02 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 09:27+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Помощь" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Персональный" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Настройки" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Пользователи" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Приложения" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Админ" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Загрузка ZIP выключена." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены один за другим." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Обратно к файлам" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики для генерации zip-архива." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Приложение не запущено" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Ошибка аутентификации" @@ -82,55 +86,55 @@ msgstr "Текст" msgid "Images" msgstr "Изображения" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "секунд назад" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 минуту назад" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d минут назад" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 час назад" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d часов назад" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "сегодня" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчера" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d дней назад" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "в прошлом месяце" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d месяцев назад" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "в прошлом году" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "год назад" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b905772406..570832cb83 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "උඩුගත කිරීම" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "නිවැරදි ව ගොනුව උඩුගත කෙරිනි" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "කිසිදු ගොනවක් උඩුගත නොවිනි" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් සොයාගත නොහැක" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ගොනුවක් සෑදෙමින් පවතී. කෙටි වේලාවක් ගත විය හැක" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "උඩුගත කිරීමේ දෝශයක්" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "වසන්න" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "යොමුව හිස් විය නොහැක" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "පරීක්ෂා කිරීමේදී දෝෂයක්" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "නම" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -271,10 +278,6 @@ msgstr "ෆෝල්ඩරය" msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:18 -msgid "Upload" -msgstr "උඩුගත කිරීම" - #: templates/index.php:41 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index f798fa5f24..9fcdc0a05a 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,51 +19,55 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "උදව්" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "පෞද්ගලික" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "සිටුවම්" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "පරිශීලකයන්" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "යෙදුම්" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "පරිපාලක" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්‍රියයි" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "යෙදුම සක්‍රිය කර නොමැත" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "සත්‍යාපනය කිරීමේ දෝශයක්" @@ -83,55 +87,55 @@ msgstr "පෙළ" msgid "Images" msgstr "අනු රූ" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d මිනිත්තුවන්ට පෙර" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "අද" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "ඊයේ" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d දිනකට පෙර" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "පෙර මාසයේ" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 1d4d69bb59..30706c6eff 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,11 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Odoslať" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -35,46 +40,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Nahrávaný súbor bol iba čiastočne nahraný" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Žiaden súbor nebol nahraný" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Chýbajúci dočasný priečinok" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -130,98 +135,100 @@ msgstr "zdieľanie zrušené pre {files}" msgid "deleted {files}" msgstr "zmazané {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "generujem ZIP-súbor, môže to chvíľu trvať." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Chyba odosielania" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Zavrieť" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} súborov odosielaných" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL nemôže byť prázdne" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} súborov prehľadaných" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Meno" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Veľkosť" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Upravené" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 súbor" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} súborov" @@ -273,10 +280,6 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:18 -msgid "Upload" -msgstr "Odoslať" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Zrušiť odosielanie" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index ba1e859d9c..07b4a92591 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 16:27+0000\n" -"Last-Translator: martin \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoc" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osobné" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Nastavenia" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Užívatelia" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Aplikácie" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Správca" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Späť na súbory" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliž veľké na vygenerovanie zip súboru." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Chyba autentifikácie" @@ -84,55 +88,55 @@ msgstr "Text" msgid "Images" msgstr "Obrázky" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "pred sekundami" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "pred 1 minútou" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "pred %d minútami" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Pred %d hodinami." -#: template.php:108 +#: template.php:118 msgid "today" msgstr "dnes" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "včera" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "pred %d dňami" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "minulý mesiac" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Pred %d mesiacmi." -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "minulý rok" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 5ed732142e..db5b65339a 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,11 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Pošlji" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -35,46 +40,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Nobena datoteka ni naložena. Neznana napaka." -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena brez napak." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je le delno naložena" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Nobena datoteka ni bila naložena" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -130,98 +135,100 @@ msgstr "odstranjeno iz souporabe {files}" msgid "deleted {files}" msgstr "izbrisano {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Ustvarjanje datoteke ZIP. To lahko traja nekaj časa." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Napaka med nalaganjem" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Zapri" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "V čakanju ..." -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "nalagam {count} datotek" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "Naslov URL ne sme biti prazen." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} files scanned" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Velikost" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} datotek" @@ -273,10 +280,6 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:18 -msgid "Upload" -msgstr "Pošlji" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Prekliči pošiljanje" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 606aa03de9..4af090e968 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-20 00:01+0100\n" -"PO-Revision-Date: 2012-11-19 19:49+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoč" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Osebno" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Nastavitve" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Uporabniki" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Programi" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Skrbništvo" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Prejem datotek ZIP je onemogočen." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamič." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Program ni omogočen" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Napaka overitve" @@ -83,55 +87,55 @@ msgstr "Besedilo" msgid "Images" msgstr "Slike" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "pred minuto" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "pred %d minutami" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "Pred 1 uro" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "Pred %d urami" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "danes" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "včeraj" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "pred %d dnevi" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "prejšnji mesec" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "Pred %d meseci" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "lani" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "pred nekaj leti" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 57c754a69e..ea89733fef 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,11 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +276,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 431a0e3c62..ce2ab5c331 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,51 +17,55 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 7459361190..66e365482d 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Отпреми" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -34,46 +39,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -129,98 +134,100 @@ msgstr "укинуто дељење {files}" msgid "deleted {files}" msgstr "обрисано {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "правим ZIP датотеку…" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Грешка при отпремању" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Затвори" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "На чекању" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "Отпремам {count} датотеке/а" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "Скенирано датотека: {count}" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "грешка при скенирању" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Назив" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Величина" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Измењено" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 датотека" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} датотеке/а" @@ -272,10 +279,6 @@ msgstr "фасцикла" msgid "From link" msgstr "Са везе" -#: templates/index.php:18 -msgid "Upload" -msgstr "Отпреми" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Прекини отпремање" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 0ffcb3e09d..d6456f9db1 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 19:18+0000\n" -"Last-Translator: Rancher \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Помоћ" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Лично" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Подешавања" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Корисници" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Апликације" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Администрација" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Назад на датотеке" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Апликација није омогућена" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Грешка при провери идентитета" @@ -83,55 +87,55 @@ msgstr "Текст" msgid "Images" msgstr "Слике" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "пре неколико секунди" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "пре 1 минут" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "пре %d минута" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "пре 1 сат" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "пре %d сата/и" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "данас" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "јуче" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "пре %d дана" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "прошлог месеца" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "пре %d месеца/и" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "прошле године" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index c25b3394ef..00ff848a20 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:20+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Помоћ" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 81511f85a8..d9fd672723 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,11 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Pošalji" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -32,46 +37,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -127,98 +132,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Zatvori" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Ime" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Veličina" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -270,10 +277,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "Pošalji" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index edcbb0203e..264724c091 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Pomoć" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Lično" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Podešavanja" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Korisnici" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Greška pri autentifikaciji" @@ -81,55 +85,55 @@ msgstr "Tekst" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 669260b275..c78635ad49 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 23:19+0000\n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 21:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -192,4 +192,4 @@ msgstr "" #: templates/settings.php:39 msgid "Help" -msgstr "" +msgstr "Pomoć" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 16e2e10256..9be1edb50f 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,11 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Ladda upp" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -37,46 +42,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Saknar en tillfällig mapp" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "Inte tillräckligt med utrymme tillgängligt" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -132,98 +137,100 @@ msgstr "stoppad delning {files}" msgid "deleted {files}" msgstr "raderade {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' är ett ogiltigt filnamn." -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "Filnamn kan inte vara tomt." -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "genererar ZIP-fil, det kan ta lite tid." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Stäng" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Väntar" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL kan inte vara tom." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Namn" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Storlek" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Ändrad" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 fil" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} filer" @@ -275,10 +282,6 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:18 -msgid "Upload" -msgstr "Ladda upp" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Avbryt uppladdning" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 548f7a84d4..e7015f915b 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 07:21+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Hjälp" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Personligt" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Inställningar" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Användare" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Program" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Fel vid autentisering" @@ -83,55 +87,55 @@ msgstr "Text" msgid "Images" msgstr "Bilder" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "sekunder sedan" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 minut sedan" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d minuter sedan" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 timme sedan" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d timmar sedan" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "idag" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "igår" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d dagar sedan" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "förra månaden" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d månader sedan" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "förra året" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "år sedan" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 5c90380e9a..25ae576772 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,11 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "பதிவேற்றுக" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -32,46 +37,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -127,98 +132,100 @@ msgstr "பகிரப்படாதது {கோப்புகள்}" msgid "deleted {files}" msgstr "நீக்கப்பட்டது {கோப்புகள்}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr " ZIP கோப்பு உருவாக்கப்படுகின்றது, இது சில நேரம் ஆகலாம்." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "பதிவேற்றல் வழு" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "மூடுக" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL வெறுமையாக இருக்கமுடியாது." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{எண்ணிக்கை} கோப்புகள் வருடப்பட்டது" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "வருடும் போதான வழு" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "பெயர்" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "அளவு" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" @@ -270,10 +277,6 @@ msgstr "கோப்புறை" msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:18 -msgid "Upload" -msgstr "பதிவேற்றுக" - #: templates/index.php:41 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 804cdf565e..febb5ad328 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-15 14:16+0000\n" -"Last-Translator: suganthi \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "உதவி" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "தனிப்பட்ட" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "அமைப்புகள்" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "பயனாளர்கள்" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "செயலிகள்" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "நிர்வாகம்" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" @@ -82,55 +86,55 @@ msgstr "உரை" msgid "Images" msgstr "படங்கள்" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d நிமிடங்களுக்கு முன்" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d மணித்தியாலத்திற்கு முன்" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "இன்று" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "நேற்று" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d நாட்களுக்கு முன்" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "கடந்த மாதம்" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d மாதத்திற்கு முன்" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "கடந்த வருடம்" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 134eac17b3..9d45317653 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -83,55 +83,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "" -#: js/js.js:723 +#: js/js.js:718 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 1d7c90b6f1..9b4c2489c3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:187 -msgid "generating ZIP-file, it may take some time." -msgstr "" - -#: js/files.js:225 -msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" - -#: js/files.js:225 -msgid "Upload Error" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" #: js/files.js:242 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:242 +msgid "Upload Error" +msgstr "" + +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:261 js/files.js:377 js/files.js:410 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:281 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:284 js/files.js:339 js/files.js:354 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:358 js/files.js:394 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:465 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:538 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:544 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:728 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:736 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:809 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:810 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:811 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:830 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:832 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:840 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:842 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +276,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 43925266f0..7d34191e03 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 542d06a780..c99476c7c6 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index f40c0f94a3..c991ffb2b9 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index d0229e8b24..296bce0a5e 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f99614da37..81bf44fc4e 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,6 +57,10 @@ msgstr "" msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:229 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 612bafa43f..e41870e9b0 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 341f74b9b6..cb462719a4 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 60743a8192..c1d3066999 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 290a7cebd8..44f9070ded 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "อัพโหลด" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "ยังไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "แฟ้มเอกสารชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "ยกเลิกการแชร์แล้ว {files} ไฟล์ msgid "deleted {files}" msgstr "ลบไฟล์แล้ว {files} ไฟล์" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "ปิด" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL ไม่สามารถเว้นว่างได้" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "สแกนไฟล์แล้ว {count} ไฟล์" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "ชื่อ" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "ขนาด" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} ไฟล์" @@ -271,10 +278,6 @@ msgstr "แฟ้มเอกสาร" msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:18 -msgid "Upload" -msgstr "อัพโหลด" - #: templates/index.php:41 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 93bec7510e..71618495c4 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-23 00:01+0100\n" -"PO-Revision-Date: 2012-11-22 10:45+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,51 +18,55 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "ช่วยเหลือ" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "ส่วนตัว" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "ตั้งค่า" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "ผู้ใช้งาน" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "แอปฯ" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "ผู้ดูแล" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" @@ -82,55 +86,55 @@ msgstr "ข้อความ" msgid "Images" msgstr "รูปภาพ" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "วินาทีที่ผ่านมา" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 นาทีมาแล้ว" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d นาทีที่ผ่านมา" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d ชั่วโมงก่อนหน้านี้" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "วันนี้" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "เมื่อวานนี้" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d วันที่ผ่านมา" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "เดือนที่แล้ว" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d เดือนมาแล้ว" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "ปีที่แล้ว" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "ปีที่ผ่านมา" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 641b6c26f9..b42bad885b 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,11 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Yükle" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -36,46 +41,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Bir hata yok, dosya başarıyla yüklendi" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Hiç dosya yüklenmedi" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Geçici bir klasör eksik" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -131,98 +136,100 @@ msgstr "paylaşılmamış {files}" msgid "deleted {files}" msgstr "silinen {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "ZIP dosyası oluşturuluyor, biraz sürebilir." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Yükleme hatası" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Kapat" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Bekliyor" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} dosya yükleniyor" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL boş olamaz." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} dosya tarandı" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "tararamada hata oluşdu" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Ad" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Boyut" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 dosya" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} dosya" @@ -274,10 +281,6 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:18 -msgid "Upload" -msgstr "Yükle" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 66590bc8eb..1b796458af 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 11:03+0000\n" -"Last-Translator: Necdet Yücel \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,27 +18,27 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:287 +#: app.php:301 msgid "Help" msgstr "Yardı" -#: app.php:294 +#: app.php:308 msgid "Personal" msgstr "Kişisel" -#: app.php:299 +#: app.php:313 msgid "Settings" msgstr "Ayarlar" -#: app.php:304 +#: app.php:318 msgid "Users" msgstr "Kullanıcılar" -#: app.php:311 +#: app.php:325 msgid "Apps" msgstr "Uygulamalar" -#: app.php:313 +#: app.php:327 msgid "Admin" msgstr "Yönetici" @@ -58,11 +58,15 @@ msgstr "Dosyalara dön" msgid "Selected files too large to generate zip file." msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Uygulama etkinleştirilmedi" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Kimlik doğrulama hatası" @@ -82,55 +86,55 @@ msgstr "Metin" msgid "Images" msgstr "Resimler" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "saniye önce" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 dakika önce" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d dakika önce" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 saat önce" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d saat önce" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "bugün" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "dün" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d gün önce" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "geçen ay" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d ay önce" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "geçen yıl" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 5e5cbbfe71..21be89f3a4 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,13 +7,14 @@ # , 2012. # Soul Kim , 2012. # , 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 13:18+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,55 +88,55 @@ msgstr "Помилка при видалені %s із обраного." msgid "Settings" msgstr "Налаштування" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "сьогодні" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "вчора" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "минулого місяця" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "місяці тому" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "минулого року" -#: js/js.js:723 +#: js/js.js:718 msgid "years ago" msgstr "роки тому" @@ -566,4 +567,4 @@ msgstr "наступний" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Оновлення ownCloud до версії %s, це може зайняти деякий час." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 12e46e92ae..5b1e3c1628 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,11 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Відвантажити" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -34,46 +39,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -129,98 +134,100 @@ msgstr "неопубліковано {files}" msgid "deleted {files}" msgstr "видалено {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Створення ZIP-файлу, це може зайняти певний час." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Помилка завантаження" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Закрити" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Очікування" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} файлів завантажується" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL не може бути пустим." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} файлів проскановано" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "помилка при скануванні" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Ім'я" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Розмір" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Змінено" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 папка" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 файл" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} файлів" @@ -272,10 +279,6 @@ msgstr "Папка" msgid "From link" msgstr "З посилання" -#: templates/index.php:18 -msgid "Upload" -msgstr "Відвантажити" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Перервати завантаження" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index f2a86e7170..8d1708aa24 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -6,13 +6,14 @@ # , 2012. # , 2012. # , 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-11-26 15:40+0000\n" -"Last-Translator: skoptev \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 13:24+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +21,55 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Допомога" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Особисте" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Налаштування" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Користувачі" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Додатки" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Адмін" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Повернутися до файлів" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "не може бути визначено" + #: json.php:28 msgid "Application is not enabled" msgstr "Додаток не увімкнений" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Помилка автентифікації" @@ -84,55 +89,55 @@ msgstr "Текст" msgid "Images" msgstr "Зображення" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "секунди тому" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 хвилину тому" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d хвилин тому" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 годину тому" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d годин тому" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "сьогодні" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "вчора" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d днів тому" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "минулого місяця" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d місяців тому" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "минулого року" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 372163ef68..5d40f09fac 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -5,14 +5,14 @@ # Translators: # , 2012. # , 2012. -# , 2012. +# , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-12 00:09+0100\n" -"PO-Revision-Date: 2013-01-11 23:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-18 00:03+0100\n" +"PO-Revision-Date: 2013-01-17 13:26+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -243,11 +243,11 @@ msgstr "Створити" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "сховище за замовчуванням" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Необмежено" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -259,11 +259,11 @@ msgstr "Адміністратор групи" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Сховище" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "За замовчуванням" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 972bed7967..f2e3a48fce 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,11 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "Tải lên" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -35,46 +40,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "Tập tin tải lên mới chỉ tải lên được một phần" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "Không có tập tin nào được tải lên" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -130,98 +135,100 @@ msgstr "hủy chia sẽ {files}" msgid "deleted {files}" msgstr "đã xóa {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "Tạo tập tin ZIP, điều này có thể làm mất một chút thời gian" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "Đóng" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Chờ" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} tập tin đang tải lên" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL không được để trống." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} tập tin đã được quét" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "lỗi trong khi quét" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "Tên" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} tập tin" @@ -273,10 +280,6 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:18 -msgid "Upload" -msgstr "Tải lên" - #: templates/index.php:41 msgid "Cancel upload" msgstr "Hủy upload" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 915964d52f..d838960fd9 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-21 00:01+0100\n" -"PO-Revision-Date: 2012-11-20 01:33+0000\n" -"Last-Translator: mattheu_9x \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "Giúp đỡ" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "Cá nhân" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "Cài đặt" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "Người dùng" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "Ứng dụng" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "Quản trị" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Trở lại tập tin" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Ứng dụng không được BẬT" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "Lỗi xác thực" @@ -84,55 +88,55 @@ msgstr "Văn bản" msgid "Images" msgstr "Hình ảnh" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "1 giây trước" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 phút trước" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d phút trước" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1 giờ trước" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d giờ trước" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "hôm nay" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "hôm qua" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d ngày trước" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "tháng trước" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d tháng trước" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "năm trước" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "năm trước" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index b066b89ba0..84a0e059f3 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,11 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "上传" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -33,46 +38,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "没有上传文件。未知错误" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "没有任何错误,文件上传成功了" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件超过了HTML表单指定的MAX_FILE_SIZE" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "文件只有部分被上传" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "没有上传完成的文件" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "丢失了一个临时文件夹" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "写磁盘失败" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -128,98 +133,100 @@ msgstr "未分享的 {files}" msgid "deleted {files}" msgstr "已删除的 {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "正在生成ZIP文件,这可能需要点时间" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "关闭" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "Pending" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} 个文件正在上传" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "网址不能为空。" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} 个文件已扫描" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "扫描出错" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "名字" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 个文件" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} 个文件" @@ -271,10 +278,6 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:18 -msgid "Upload" -msgstr "上传" - #: templates/index.php:41 msgid "Cancel upload" msgstr "取消上传" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index c32ef2de62..d03b24aa3a 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -18,51 +18,55 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "帮助" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "私人" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "设置" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "用户" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "程序" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "管理员" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP 下载已关闭" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "需要逐个下载文件。" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "返回到文件" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大而不能生成 zip 文件。" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "应用未启用" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "验证错误" @@ -82,55 +86,55 @@ msgstr "文本" msgid "Images" msgstr "图片" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "秒前" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 分钟前" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "今天" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "昨天" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "上个月" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "去年" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 9b8dcdd849..727cb47516 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -6,15 +6,16 @@ # , 2012. # Dianjin Wang <1132321739qq@gmail.com>, 2012. # Phoenix Nemo <>, 2012. +# , 2013. # , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:03+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 14:38+0000\n" +"Last-Translator: leonfeng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,55 +89,55 @@ msgstr "从收藏夹中移除%s时出错。" msgid "Settings" msgstr "设置" -#: js/js.js:711 +#: js/js.js:706 msgid "seconds ago" msgstr "秒前" -#: js/js.js:712 +#: js/js.js:707 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:713 +#: js/js.js:708 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:714 +#: js/js.js:709 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:715 +#: js/js.js:710 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:716 +#: js/js.js:711 msgid "today" msgstr "今天" -#: js/js.js:717 +#: js/js.js:712 msgid "yesterday" msgstr "昨天" -#: js/js.js:718 +#: js/js.js:713 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:719 +#: js/js.js:714 msgid "last month" msgstr "上月" -#: js/js.js:720 +#: js/js.js:715 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:721 +#: js/js.js:716 msgid "months ago" msgstr "月前" -#: js/js.js:722 +#: js/js.js:717 msgid "last year" msgstr "去年" -#: js/js.js:723 +#: js/js.js:718 msgid "years ago" msgstr "年前" @@ -217,7 +218,7 @@ msgstr "密码" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "发送链接到个人" #: js/share.js:173 msgid "Send" @@ -567,4 +568,4 @@ msgstr "下一页" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "更新 ownCloud 到版本 %s,这可能需要一些时间。" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index bda2cc9518..95316b1a41 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 11:25+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +23,11 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "上传" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -37,46 +42,46 @@ msgstr "无法移动 %s" msgid "Unable to rename file" msgstr "无法重命名文件" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "没有发生错误,文件上传成功。" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "只上传了文件的一部分" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "文件没有上传" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "没有足够可用空间" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "无效文件夹。" @@ -132,98 +137,100 @@ msgstr "取消了共享 {files}" msgid "deleted {files}" msgstr "删除了 {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' 是一个无效的文件名。" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "文件名不能为空。" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: js/files.js:187 -msgid "generating ZIP-file, it may take some time." -msgstr "正在生成 ZIP 文件,可能需要一些时间" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:225 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: js/files.js:225 +#: js/files.js:242 msgid "Upload Error" msgstr "上传错误" -#: js/files.js:242 +#: js/files.js:259 msgid "Close" msgstr "关闭" -#: js/files.js:261 js/files.js:377 js/files.js:410 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "操作等待中" -#: js/files.js:281 +#: js/files.js:298 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/files.js:284 js/files.js:339 js/files.js:354 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} 个文件上传中" -#: js/files.js:358 js/files.js:394 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:465 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:538 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL不能为空" -#: js/files.js:544 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:728 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} 个文件已扫描。" -#: js/files.js:736 +#: js/files.js:783 msgid "error while scanning" msgstr "扫描时出错" -#: js/files.js:809 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "名称" -#: js/files.js:810 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:811 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "修改日期" -#: js/files.js:830 +#: js/files.js:878 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:832 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:840 +#: js/files.js:888 msgid "1 file" msgstr "1 个文件" -#: js/files.js:842 +#: js/files.js:890 msgid "{count} files" msgstr "{count} 个文件" @@ -275,10 +282,6 @@ msgstr "文件夹" msgid "From link" msgstr "来自链接" -#: templates/index.php:18 -msgid "Upload" -msgstr "上传" - #: templates/index.php:41 msgid "Cancel upload" msgstr "取消上传" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index aebc5a42f3..7dd9eb3837 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-19 00:01+0100\n" -"PO-Revision-Date: 2012-11-18 16:17+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,51 +19,55 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "帮助" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "个人" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "设置" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "用户" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "应用" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "管理" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "回到文件" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "不需要程序" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "认证错误" @@ -83,55 +87,55 @@ msgstr "文本" msgid "Images" msgstr "图像" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "几秒前" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1分钟前" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1小时前" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d小时前" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "今天" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "昨天" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "上月" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d 月前" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "上年" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "几年前" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 56eb4f59e2..56f4ec9477 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,11 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +276,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index e4752fd9c2..f3bc0dc6e1 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-19 00:01+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,51 +17,55 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index bed97e748a..baa21b71fb 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 06:24+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,11 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "上傳" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -36,46 +41,46 @@ msgstr "無法移動 %s" msgid "Unable to rename file" msgstr "無法重新命名檔案" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳。未知的錯誤。" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳成功" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "無已上傳檔案" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "遺失暫存資料夾" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "沒有足夠的可用空間" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "無效的資料夾。" @@ -131,98 +136,100 @@ msgstr "已取消分享 {files}" msgid "deleted {files}" msgstr "已刪除 {files}" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "'.' 是不合法的檔名。" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "檔名不能為空。" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." -msgstr "產生 ZIP 壓縮檔,這可能需要一段時間。" +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "上傳發生錯誤" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "關閉" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "等候中" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "{count} 個檔案正在上傳" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "上傳取消" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中。離開此頁面將會取消上傳。" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "URL 不能為空白." -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "{count} 個檔案已掃描" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "掃描時發生錯誤" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "名稱" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "大小" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "修改" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "{count} 個檔案" @@ -274,10 +281,6 @@ msgstr "資料夾" msgid "From link" msgstr "從連結" -#: templates/index.php:18 -msgid "Upload" -msgstr "上傳" - #: templates/index.php:41 msgid "Cancel upload" msgstr "取消上傳" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 2bc0c14b6c..3e708c8a28 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-11-26 09:03+0000\n" -"Last-Translator: sofiasu \n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,51 +20,55 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "說明" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "個人" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "設定" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "使用者" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "應用程式" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "管理" -#: files.php:361 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉" -#: files.php:362 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載" -#: files.php:362 files.php:387 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "回到檔案列表" -#: files.php:386 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "選擇的檔案太大以致於無法產生壓縮檔" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "應用程式未啟用" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "認證錯誤" @@ -84,55 +88,55 @@ msgstr "文字" msgid "Images" msgstr "圖片" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "幾秒前" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "1 分鐘前" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "%d 分鐘前" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "1小時之前" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "%d小時之前" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "今天" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "昨天" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "上個月" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "%d個月之前" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "去年" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index d9c0a65c13..ceaf28a699 100644 --- a/l10n/zu_ZA/files.po +++ b/l10n/zu_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 23:04+0000\n" +"POT-Creation-Date: 2013-01-20 00:05+0100\n" +"PO-Revision-Date: 2013-01-19 23:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,11 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:28 ajax/getstoragestats.php:11 ajax/upload.php:17 +#: ajax/upload.php:76 templates/index.php:18 +msgid "Upload" +msgstr "" + #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" @@ -31,46 +36,46 @@ msgstr "" msgid "Unable to rename file" msgstr "" -#: ajax/upload.php:14 +#: ajax/upload.php:20 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:21 +#: ajax/upload.php:30 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:31 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:33 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:35 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:36 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:37 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:38 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:45 +#: ajax/upload.php:57 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:91 msgid "Invalid directory." msgstr "" @@ -126,98 +131,100 @@ msgstr "" msgid "deleted {files}" msgstr "" -#: js/files.js:31 +#: js/files.js:48 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:36 +#: js/files.js:53 msgid "File name cannot be empty." msgstr "" -#: js/files.js:45 +#: js/files.js:62 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:186 -msgid "generating ZIP-file, it may take some time." +#: js/files.js:204 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:224 +#: js/files.js:242 msgid "Upload Error" msgstr "" -#: js/files.js:241 +#: js/files.js:259 msgid "Close" msgstr "" -#: js/files.js:260 js/files.js:376 js/files.js:409 +#: js/files.js:278 js/files.js:397 js/files.js:431 msgid "Pending" msgstr "" -#: js/files.js:280 +#: js/files.js:298 msgid "1 file uploading" msgstr "" -#: js/files.js:283 js/files.js:338 js/files.js:353 +#: js/files.js:301 js/files.js:357 js/files.js:372 msgid "{count} files uploading" msgstr "" -#: js/files.js:357 js/files.js:393 +#: js/files.js:376 js/files.js:414 msgid "Upload cancelled." msgstr "" -#: js/files.js:464 +#: js/files.js:486 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:537 +#: js/files.js:559 msgid "URL cannot be empty." msgstr "" -#: js/files.js:543 +#: js/files.js:565 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:727 +#: js/files.js:775 msgid "{count} files scanned" msgstr "" -#: js/files.js:735 +#: js/files.js:783 msgid "error while scanning" msgstr "" -#: js/files.js:808 templates/index.php:64 +#: js/files.js:857 templates/index.php:64 msgid "Name" msgstr "" -#: js/files.js:809 templates/index.php:75 +#: js/files.js:858 templates/index.php:75 msgid "Size" msgstr "" -#: js/files.js:810 templates/index.php:77 +#: js/files.js:859 templates/index.php:77 msgid "Modified" msgstr "" -#: js/files.js:829 +#: js/files.js:878 msgid "1 folder" msgstr "" -#: js/files.js:831 +#: js/files.js:880 msgid "{count} folders" msgstr "" -#: js/files.js:839 +#: js/files.js:888 msgid "1 file" msgstr "" -#: js/files.js:841 +#: js/files.js:890 msgid "{count} files" msgstr "" @@ -269,10 +276,6 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:18 -msgid "Upload" -msgstr "" - #: templates/index.php:41 msgid "Cancel upload" msgstr "" diff --git a/l10n/zu_ZA/lib.po b/l10n/zu_ZA/lib.po index 248d04871d..f463152bf3 100644 --- a/l10n/zu_ZA/lib.po +++ b/l10n/zu_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2013-01-17 00:26+0100\n" +"PO-Revision-Date: 2013-01-16 23:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,51 +17,55 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:301 msgid "Help" msgstr "" -#: app.php:292 +#: app.php:308 msgid "Personal" msgstr "" -#: app.php:297 +#: app.php:313 msgid "Settings" msgstr "" -#: app.php:302 +#: app.php:318 msgid "Users" msgstr "" -#: app.php:309 +#: app.php:325 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:327 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:64 json.php:77 json.php:89 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -81,55 +85,55 @@ msgstr "" msgid "Images" msgstr "" -#: template.php:103 +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:104 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:105 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:106 +#: template.php:116 msgid "1 hour ago" msgstr "" -#: template.php:107 +#: template.php:117 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:108 +#: template.php:118 msgid "today" msgstr "" -#: template.php:109 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:110 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:111 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:112 +#: template.php:122 #, php-format msgid "%d months ago" msgstr "" -#: template.php:113 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:114 +#: template.php:124 msgid "years ago" msgstr "" diff --git a/lib/api.php b/lib/api.php index 8d728d4311..0fce109a42 100644 --- a/lib/api.php +++ b/lib/api.php @@ -94,6 +94,8 @@ class OC_API { $response = new OC_OCS_Result(null, 998, 'Api method not found'); } } else { + header('WWW-Authenticate: Basic realm="Authorization Required"'); + header('HTTP/1.0 401 Unauthorized'); $response = new OC_OCS_Result(null, 997, 'Unauthorised'); } // Send the response diff --git a/lib/app.php b/lib/app.php index 68e1bc6a6c..0f1fa2c5ec 100644 --- a/lib/app.php +++ b/lib/app.php @@ -748,7 +748,7 @@ class OC_App{ } return new \OC\Files\View('/'.OC_User::getUser().'/'.$appid); }else{ - OC_Log::write('core', 'Can\'t get app storage, app, user not logged in', OC_Log::ERROR); + OC_Log::write('core', 'Can\'t get app storage, app '.$appid.', user not logged in', OC_Log::ERROR); return false; } }else{ diff --git a/lib/base.php b/lib/base.php index 6f537cf089..dd5eef52fe 100644 --- a/lib/base.php +++ b/lib/base.php @@ -30,7 +30,7 @@ require_once 'public/constants.php'; class OC { /** - * Assoziative array for autoloading. classname => filename + * Associative array for autoloading. classname => filename */ public static $CLASSPATH = array(); /** @@ -233,6 +233,12 @@ class OC public static function checkMaintenanceMode() { // Allow ajax update script to execute without being stopped if (OC_Config::getValue('maintenance', false) && OC::$SUBURI != '/core/ajax/update.php') { + // send http status 503 + header('HTTP/1.1 503 Service Temporarily Unavailable'); + header('Status: 503 Service Temporarily Unavailable'); + header('Retry-After: 120'); + + // render error page $tmpl = new OC_Template('', 'error', 'guest'); $tmpl->assign('errors', array(1 => array('error' => 'ownCloud is in maintenance mode'))); $tmpl->printPage(); @@ -323,6 +329,18 @@ class OC return OC::$router; } + + public static function loadAppClassPaths() + { + foreach(OC_APP::getEnabledApps() as $app) { + $file = OC_App::getAppPath($app).'/appinfo/classpath.php'; + if(file_exists($file)) { + require_once $file; + } + } + } + + public static function init() { // register autoloader @@ -539,6 +557,11 @@ class OC header('location: ' . OC_Helper::linkToRemote('webdav')); return; } + + // load all the classpaths from the enabled apps so they are available + // in the routing files of each app + OC::loadAppClassPaths(); + try { OC::getRouter()->match(OC_Request::getPathInfo()); return; diff --git a/lib/helper.php b/lib/helper.php index 6b1eaa4e6e..d7b57d381d 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -193,8 +193,9 @@ class OC_Helper { if(isset($alias[$mimetype])) { $mimetype=$alias[$mimetype]; } - // Replace slash with a minus + // Replace slash and backslash with a minus $mimetype = str_replace( "/", "-", $mimetype ); + $mimetype = str_replace( "\\", "-", $mimetype ); // Is it a dir? if( $mimetype == "dir" ) { @@ -679,8 +680,8 @@ class OC_Helper { $start = intval($start); $length = intval($length); $string = mb_substr($string, 0, $start, $encoding) . - $replacement . - mb_substr($string, $start+$length, mb_strlen($string, 'UTF-8')-$start, $encoding); + $replacement . + mb_substr($string, $start+$length, mb_strlen($string, 'UTF-8')-$start, $encoding); return $string; } @@ -748,6 +749,23 @@ class OC_Helper { return $str; } + /** + * @brief calculates the maximum upload size respecting system settings, free space and user quota + * + * @param $dir the current folder where the user currently operates + * @return number of bytes representing + */ + public static function maxUploadFilesize($dir) { + $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); + $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); + $maxUploadFilesize = min($upload_max_filesize, $post_max_size); + + $freeSpace = OC_Filesystem::free_space($dir); + $freeSpace = max($freeSpace, 0); + + return min($maxUploadFilesize, $freeSpace); + } + /** * Checks if a function is available * @param string $function_name diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index b3321ef82e..f6401fa39b 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Els fitxers s'han de baixar d'un en un.", "Back to Files" => "Torna a Fitxers", "Selected files too large to generate zip file." => "Els fitxers seleccionats son massa grans per generar un fitxer zip.", +"couldn't be determined" => "no s'ha pogut determinar", "Application is not enabled" => "L'aplicació no està habilitada", "Authentication error" => "Error d'autenticació", "Token expired. Please reload page." => "El testimoni ha expirat. Torneu a carregar la pàgina.", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index fa11e88677..2c823194b9 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", "Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření zip souboru.", +"couldn't be determined" => "nelze zjistit", "Application is not enabled" => "Aplikace není povolena", "Authentication error" => "Chyba ověření", "Token expired. Please reload page." => "Token vypršel. Obnovte prosím stránku.", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index e9f0f34a0e..625ba2ecf2 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", +"couldn't be determined" => "konnte nicht ermittelt werden", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Authentifizierungs-Fehler", "Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 315b995ecc..cf0be24b43 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", +"couldn't be determined" => "δεν μπορούσε να προσδιορισθεί", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", "Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 5d47ecbda2..1941551b17 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", "Back to Files" => "Itzuli fitxategietara", "Selected files too large to generate zip file." => "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko.", +"couldn't be determined" => "ezin izan da zehaztu", "Application is not enabled" => "Aplikazioa ez dago gaituta", "Authentication error" => "Autentikazio errorea", "Token expired. Please reload page." => "Tokena iraungitu da. Mesedez birkargatu orria.", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 6a5734e978..b8d4b13743 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Tiedostot on ladattava yksittäin.", "Back to Files" => "Takaisin tiedostoihin", "Selected files too large to generate zip file." => "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon.", +"couldn't be determined" => "ei voitu määrittää", "Application is not enabled" => "Sovellusta ei ole otettu käyttöön", "Authentication error" => "Todennusvirhe", "Token expired. Please reload page." => "Valtuutus vanheni. Lataa sivu uudelleen.", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 3dcf0646d0..c95358011f 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -8,7 +8,8 @@ "ZIP download is turned off." => "A ZIP-letöltés nem engedélyezett.", "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni", "Back to Files" => "Vissza a Fájlokhoz", -"Selected files too large to generate zip file." => "A kiválasztott fájlok túl nagy a zip tömörítéshez.", +"Selected files too large to generate zip file." => "A kiválasztott fájlok túl nagyok a zip tömörítéshez.", +"couldn't be determined" => "nem sikerült azonosítani", "Application is not enabled" => "Az alkalmazás nincs engedélyezve", "Authentication error" => "Hitelesítési hiba", "Token expired. Please reload page." => "A token lejárt. Frissítse az oldalt.", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index c0fb0babfb..eb404db7fb 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "I file devono essere scaricati uno alla volta.", "Back to Files" => "Torna ai file", "Selected files too large to generate zip file." => "I file selezionati sono troppo grandi per generare un file zip.", +"couldn't be determined" => "non può essere determinato", "Application is not enabled" => "L'applicazione non è abilitata", "Authentication error" => "Errore di autenticazione", "Token expired. Please reload page." => "Token scaduto. Ricarica la pagina.", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 854734c976..11cefe900c 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "Back to Files" => "ファイルに戻る", "Selected files too large to generate zip file." => "選択したファイルはZIPファイルの生成には大きすぎます。", +"couldn't be determined" => "測定できませんでした", "Application is not enabled" => "アプリケーションは無効です", "Authentication error" => "認証エラー", "Token expired. Please reload page." => "トークンが無効になりました。ページを再読込してください。", diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php index baee630e89..a5a9adca18 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -1,6 +1,8 @@ "Hëllef", "Personal" => "Perséinlech", "Settings" => "Astellungen", "Authentication error" => "Authentifikatioun's Fehler", +"Files" => "Dateien", "Text" => "SMS" ); diff --git a/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php index 86c7e51b48..5afee1cb5a 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -1,4 +1,5 @@ "Bantuan", "Personal" => "Peribadi", "Settings" => "Tetapan", "Users" => "Pengguna", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 087cf23a62..7ce134e362 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Bestanden moeten één voor één worden gedownload.", "Back to Files" => "Terug naar bestanden", "Selected files too large to generate zip file." => "De geselecteerde bestanden zijn te groot om een zip bestand te maken.", +"couldn't be determined" => "kon niet worden vastgesteld", "Application is not enabled" => "De applicatie is niet actief", "Authentication error" => "Authenticatie fout", "Token expired. Please reload page." => "Token verlopen. Herlaad de pagina.", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 84867c4c37..e35bb489c4 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Os ficheiros precisam de ser descarregados um por um.", "Back to Files" => "Voltar a Ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip.", +"couldn't be determined" => "Não foi possível determinar", "Application is not enabled" => "A aplicação não está activada", "Authentication error" => "Erro na autenticação", "Token expired. Please reload page." => "O token expirou. Por favor recarregue a página.", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index f5d52f8682..053644dded 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Файли повинні бути завантаженні послідовно.", "Back to Files" => "Повернутися до файлів", "Selected files too large to generate zip file." => "Вибрані фали завеликі для генерування zip файлу.", +"couldn't be determined" => "не може бути визначено", "Application is not enabled" => "Додаток не увімкнений", "Authentication error" => "Помилка автентифікації", "Token expired. Please reload page." => "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку.", diff --git a/lib/public/util.php b/lib/public/util.php index 8197482c0d..413dbcccd2 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -367,4 +367,14 @@ class Util { public static function recursiveArraySearch($haystack, $needle, $index = null) { return(\OC_Helper::recursiveArraySearch($haystack, $needle, $index)); } + + /** + * @brief calculates the maximum upload size respecting system settings, free space and user quota + * + * @param $dir the current folder where the user currently operates + * @return number of bytes representing + */ + public static function maxUploadFilesize($dir) { + return \OC_Helper::maxUploadFilesize($dir); + } } diff --git a/lib/setup.php b/lib/setup.php index b88bc4b52c..28882b6bed 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -1,5 +1,23 @@ hint = $hint; + parent::__construct($message, $code, $previous); + } + + public function __toString() { + return __CLASS__ . ": [{$this->code}]: {$this->message} ({$this->hint})\n"; + } + + public function getHint() { + return $this->hint; + } +} + class OC_Setup { public static function install($options) { $error = array(); @@ -19,9 +37,9 @@ class OC_Setup { if($dbtype=='mysql') $dbprettyname = 'MySQL'; else if($dbtype=='pgsql') - $dbprettyname = 'PostgreSQL'; + $dbprettyname = 'PostgreSQL'; else - $dbprettyname = 'Oracle'; + $dbprettyname = 'Oracle'; if(empty($options['dbuser'])) { @@ -69,10 +87,16 @@ class OC_Setup { try { self::setupMySQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username); + } catch (DatabaseSetupException $e) { + $error[] = array( + 'error' => $e->getMessage(), + 'hint' => $e->getHint() + ); + return($error); } catch (Exception $e) { $error[] = array( - 'error' => 'MySQL username and/or password not valid', - 'hint' => 'You need to enter either an existing account or the administrator.' + 'error' => $e->getMessage(), + 'hint' => '' ); return($error); } @@ -166,7 +190,7 @@ class OC_Setup { //check if the database user has admin right $connection = @mysql_connect($dbhost, $dbuser, $dbpass); if(!$connection) { - throw new Exception('MySQL username and/or password not valid'); + throw new DatabaseSetupException('MySQL username and/or password not valid','You need to enter either an existing account or the administrator.'); } $oldUser=OC_Config::getValue('dbuser', false); @@ -229,8 +253,14 @@ class OC_Setup { // the anonymous user would take precedence when there is one. $query = "CREATE USER '$name'@'localhost' IDENTIFIED BY '$password'"; $result = mysql_query($query, $connection); + if (!$result) { + throw new DatabaseSetupException("MySQL user '" . "$name" . "'@'localhost' already exists","Delete this user from MySQL."); + } $query = "CREATE USER '$name'@'%' IDENTIFIED BY '$password'"; $result = mysql_query($query, $connection); + if (!$result) { + throw new DatabaseSetupException("MySQL user '" . "$name" . "'@'%' already exists","Delete this user from MySQL."); + } } private static function setupPostgreSQLDatabase($dbhost, $dbuser, $dbpass, $dbname, $dbtableprefix, $username) { diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 2986338904..ffd6d2a60b 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -52,7 +52,11 @@ "Name" => "Όνομα", "Groups" => "Ομάδες", "Create" => "Δημιουργία", +"Default Storage" => "Προκαθορισμένη Αποθήκευση ", +"Unlimited" => "Απεριόριστο", "Other" => "Άλλα", "Group Admin" => "Ομάδα Διαχειριστών", +"Storage" => "Αποθήκευση", +"Default" => "Προκαθορισμένο", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 78e3cc6248..c122f3b1cd 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -52,7 +52,11 @@ "Name" => "Izena", "Groups" => "Taldeak", "Create" => "Sortu", +"Default Storage" => "Lehenetsitako Biltegiratzea", +"Unlimited" => "Mugarik gabe", "Other" => "Besteak", "Group Admin" => "Talde administradorea", +"Storage" => "Biltegiratzea", +"Default" => "Lehenetsia", "Delete" => "Ezabatu" ); diff --git a/settings/l10n/it.php b/settings/l10n/it.php index d485f7ccd1..4980d58544 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -55,7 +55,7 @@ "Default Storage" => "Archiviazione predefinita", "Unlimited" => "Illimitata", "Other" => "Altro", -"Group Admin" => "Gruppo di amministrazione", +"Group Admin" => "Gruppi amministrati", "Storage" => "Archiviazione", "Default" => "Predefinito", "Delete" => "Elimina" diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index ce1ced031b..19b84edfc7 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -52,7 +52,11 @@ "Name" => "Ім'я", "Groups" => "Групи", "Create" => "Створити", +"Default Storage" => "сховище за замовчуванням", +"Unlimited" => "Необмежено", "Other" => "Інше", "Group Admin" => "Адміністратор групи", +"Storage" => "Сховище", +"Default" => "За замовчуванням", "Delete" => "Видалити" ); diff --git a/tests/phpunit.xml b/tests/phpunit.xml index 23cd123edc..f5a686c302 100644 --- a/tests/phpunit.xml +++ b/tests/phpunit.xml @@ -11,4 +11,7 @@ ../3rdparty + + +