diff options
188 files changed, 8142 insertions, 3445 deletions
diff --git a/apps/files/admin.php b/apps/files/admin.php index 80fd4f4e4a5..f747f8645f6 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -30,11 +30,8 @@ OCP\User::checkAdminUser(); $htaccessWorking=(getenv('htaccessWorking')=='true'); $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); -$upload_max_filesize_possible = OCP\Util::computerFileSize(get_cfg_var('upload_max_filesize')); $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size')); -$post_max_size_possible = OCP\Util::computerFileSize(get_cfg_var('post_max_size')); $maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size)); -$maxUploadFilesizePossible = OCP\Util::humanFileSize(min($upload_max_filesize_possible, $post_max_size_possible)); if($_POST && OC_Util::isCallRegistered()) { if(isset($_POST['maxUploadSize'])) { if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) { @@ -60,7 +57,9 @@ $htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess'); $tmpl = new OCP\Template( 'files', 'admin' ); $tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable ); $tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); -$tmpl->assign( 'maxPossibleUploadSize', $maxUploadFilesizePossible); +// max possible makes only sense on a 32 bit system +$tmpl->assign( 'displayMaxPossibleUploadSize', PHP_INT_SIZE===4); +$tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX)); $tmpl->assign( 'allowZipDownload', $allowZipDownload); $tmpl->assign( 'maxZipInputSize', $maxZipInputSize); return $tmpl->fetchPage(); diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index e7823bc4ffb..2a2d935da6c 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -8,14 +8,15 @@ OCP\JSON::setContentTypeHeader('text/plain'); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); +$l=OC_L10N::get('files'); if (!isset($_FILES['files'])) { - OCP\JSON::error(array('data' => array( 'message' => 'No file was uploaded. Unknown error' ))); + OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' )))); exit(); } + foreach ($_FILES['files']['error'] as $error) { if ($error != 0) { - $l=OC_L10N::get('files'); $errors = array( UPLOAD_ERR_OK=>$l->t('There is no error, the file uploaded with success'), UPLOAD_ERR_INI_SIZE=>$l->t('The uploaded file exceeds the upload_max_filesize directive in php.ini: ') @@ -41,7 +42,7 @@ foreach($files['size'] as $size) { $totalSize+=$size; } if($totalSize>OC_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' )))); exit(); } @@ -65,7 +66,7 @@ if(strpos($dir, '..') === false) { OCP\JSON::encodedPrint($result); exit(); } else { - $error='invalid dir'; + $error=$l->t( 'Invalid directory.' ); } -OCP\JSON::error(array('data' => array('error' => $error, 'file' => $fileName))); +OCP\JSON::error(array('data' => array('message' => $error ))); diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php new file mode 100644 index 00000000000..45cf1c2313d --- /dev/null +++ b/apps/files/l10n/bn_BD.php @@ -0,0 +1,46 @@ +<?php $TRANSLATIONS = array( +"There is no error, the file uploaded with success" => "āĻā§āύ āϏāĻŽāϏā§āϝāĻž āύā§āĻ, āĻĢāĻžāĻāϞ āĻāĻĒāϞā§āĻĄ āϏā§āϏāĻŽā§āĻĒāύā§āύ āĻšā§ā§āĻā§", +"The uploaded file was only partially uploaded" => "āĻāĻĒāϞā§āĻĄ āĻāϰāĻž āĻĢāĻžāĻāϞāĻāĻŋ āĻāĻāĻļāĻŋāĻ āĻāĻĒāϞā§āĻĄ āĻšā§ā§āĻā§", +"No file was uploaded" => "āĻā§āύ āĻĢāĻžāĻāϞ āĻāĻĒāϞā§āĻĄ āĻāϰāĻž āĻšā§ āύāĻŋ", +"Missing a temporary folder" => "āĻ
āϏā§āĻĨāĻžā§ā§ āĻĢā§āϞā§āĻĄāĻžāϰāĻāĻŋ āĻā§ā§āĻž āĻāĻŋā§ā§āĻā§ ", +"Failed to write to disk" => "āĻĄāĻŋāϏā§āĻā§ āϞāĻŋāĻāϤ⧠āĻĒāĻžāϰāĻž āĻā§āϞ āύāĻž", +"Files" => "āĻĢāĻžāĻāϞ", +"Unshare" => "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻŦāĻžāϤāĻŋāϞ", +"Delete" => "āĻŽā§āĻā§ āĻĢā§āϞ", +"Rename" => "āĻĒā§āύāĻāύāĻžāĻŽāĻāϰāĻŖ", +"{new_name} already exists" => "{new_name} āĻāĻŋ āĻŦāĻŋāĻĻā§āϝāĻŽāĻžāύ", +"replace" => "āĻĒā§āϰāϤāĻŋāϏā§āĻĨāĻžāĻĒāύ", +"suggest name" => "āύāĻžāĻŽ āϏā§āĻĒāĻžāϰāĻŋāĻļ āĻāϰ", +"cancel" => "āĻŦāĻžāϤāĻŋāϞ", +"replaced {new_name}" => "{new_name} āĻĒā§āϰāϤāĻŋāϏā§āĻĨāĻžāĻĒāύ āĻāϰāĻž āĻšā§ā§āĻā§", +"undo" => "āĻā§āϰāĻŋā§āĻž āĻĒā§āϰāϤā§āϝāĻžāĻšāĻžāϰ", +"replaced {new_name} with {old_name}" => "{new_name} āĻā§ {old_name} āύāĻžāĻŽā§ āĻĒā§āϰāϤāĻŋāϏā§āĻĨāĻžāĻĒāύ āĻāϰāĻž āĻšā§ā§āĻā§", +"unshared {files}" => "{files} āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻŦāĻžāϤāĻŋāϞ āĻāϰ", +"deleted {files}" => "{files} āĻŽā§āĻā§ āĻĢā§āϞāĻž āĻšā§ā§āĻā§", +"Upload Error" => "āĻāĻĒāϞā§āĻĄ āĻāϰāϤ⧠āϏāĻŽāϏā§āϝāĻž", +"Pending" => "āĻŽā§āϞāϤā§āĻŦāĻŋ", +"1 file uploading" => "ā§§ āĻāĻŋ āĻĢāĻžāĻāϞ āĻāĻĒāϞā§āĻĄ āĻāϰāĻž āĻšāĻā§āĻā§", +"Upload cancelled." => "āĻāĻĒāϞā§āĻĄ āĻŦāĻžāϤāĻŋāϞ āĻāϰāĻž āĻšā§ā§āĻā§ āĨ¤", +"error while scanning" => "āϏā§āĻā§āϝāĻžāύ āĻāϰāĻžāϰ āϏāĻŽā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§", +"Name" => "āύāĻžāĻŽ", +"Size" => "āĻāĻāĻžāϰ", +"Modified" => "āĻĒāϰāĻŋāĻŦāϰā§āϤāĻŋāϤ", +"File handling" => "āĻĢāĻžāĻāϞ āĻšā§āϝāĻžāύā§āĻĄāϞāĻŋāĻ", +"Maximum upload size" => "āĻāĻĒāϞā§āĻĄā§āϰ āϏāϰā§āĻŦā§āĻā§āĻ āĻāĻāĻžāϰ", +"max. possible: " => "āϏāĻŽā§āĻāĻžāĻŦā§āϝ āϏāϰā§āĻŦā§āĻā§āĻāĻ", +"Needed for multi-file and folder downloads." => "āĻāĻāĻžāϧāĻŋāĻ āĻĢāĻžāĻāϞ āĻāĻŦāĻ āĻĢā§āϞā§āĻĄāĻžāϰ āĻĄāĻžāĻāύāϞā§āĻĄ āĻāϰāĻžāϰ āĻā§āώā§āϤā§āϰ⧠āĻāĻŦāĻļā§āϝāĻāĨ¤", +"Enable ZIP-download" => "āĻāĻŋāĻĒ āĻĄāĻžāĻāύāϞā§āĻĄ āϏāĻā§āϰāĻŋā§ āĻāϰ", +"0 is unlimited" => "ā§Ļ āĻāϰ āĻ
āϰā§āĻĨ āĻšāϞ⧠āĻ
āϏā§āĻŽ", +"Maximum input size for ZIP files" => "āĻāĻŋāĻĒ āĻĢāĻžāĻāϞā§āϰ āĻāύā§āϝ āϏāϰā§āĻŦā§āĻā§āĻ āĻāύāĻĒā§āĻ", +"Save" => "āϏāĻāϰāĻā§āώāĻŖ āĻāϰ", +"New" => "āύāϤā§āύ", +"Text file" => "āĻā§āĻā§āϏāĻ āĻĢāĻžāĻāϞ", +"Folder" => "āĻĢā§āϞā§āĻĄāĻžāϰ", +"Upload" => "āĻāĻĒāϞā§āĻĄ", +"Cancel upload" => "āĻāĻĒāϞā§āĻĄ āĻŦāĻžāϤāĻŋāϞ āĻāϰ", +"Nothing in here. Upload something!" => "āĻāĻāĻžāύ⧠āĻā§āύ āĻāĻŋāĻā§āĻ āύā§āĻāĨ¤ āĻāĻŋāĻā§ āĻāĻĒāϞā§āĻĄ āĻāϰā§āύ !", +"Download" => "āĻĄāĻžāĻāύāϞā§āĻĄ", +"Upload too large" => "āĻāĻĒāϞā§āĻĄā§āϰ āĻāĻāĻžāϰ āĻ
āύā§āĻ āĻŦā§", +"Files are being scanned, please wait." => "āĻĢāĻžāĻāϞ āϏā§āĻā§āϝāĻžāύ āĻāϰāĻž āĻšāĻā§āĻā§, āĻĻā§āĻž āĻāϰ⧠āĻ
āĻĒā§āĻā§āώāĻž āĻāϰā§āύāĨ¤", +"Current scanning" => "āĻŦāϰā§āϤāĻŽāĻžāύ āϏā§āĻā§āϝāĻžāύāĻŋāĻ" +); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 0866d97bd74..981b8ec7ec9 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut", "There is no error, the file uploaded with success" => "El fitxer s'ha pujat correctament", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Lâarxiu que voleu carregar supera el mà xim definit en la directiva upload_max_filesize del php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "El fitxer no s'ha pujat", "Missing a temporary folder" => "S'ha perdut un fitxer temporal", "Failed to write to disk" => "Ha fallat en escriure al disc", +"Not enough space available" => "No hi ha prou espai disponible", +"Invalid directory." => "Directori no và lid.", "Files" => "Fitxers", "Unshare" => "Deixa de compartir", "Delete" => "Suprimeix", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 12eb79a1a10..958cb930e7d 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Soubor nebyl odeslÃĄn. NeznÃĄmÃĄ chyba", "There is no error, the file uploaded with success" => "Soubor byl odeslÃĄn ÃēspÄÅĄnÄ", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "OdesÃlanÃŊ soubor pÅesahuje velikost upload_max_filesize povolenou v php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "OdeslanÃŊ soubor pÅesÃĄhl svou velikostà parametr MAX_FILE_SIZE specifikovanÃŊ v formulÃĄÅi HTML", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 05404d27af7..e2fd0c8c18f 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 8073ee28da5..5f4778eb867 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei Ãŧberschreitet die upload_max_filesize Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die GrÃļÃe der hochzuladenden Datei Ãŧberschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", @@ -6,6 +7,8 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Temporärer Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", +"Not enough space available" => "Nicht genug Speicherplatz verfÃŧgbar", +"Invalid directory." => "UngÃŧltiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", "Delete" => "LÃļschen", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6a9730e94b0..3ba32229070 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei Ãŧberschreitet die upload_max_filesize Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die GrÃļÃe der hochzuladenden Datei Ãŧberschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", @@ -6,6 +7,8 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Der temporäre Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", +"Not enough space available" => "Nicht genug Speicher verfÃŧgbar", +"Invalid directory." => "UngÃŧltiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", "Delete" => "LÃļschen", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index fce7a07c948..60be0bc7aac 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ΤÎŋ ÎąĪĪÎĩίÎŋ Ī
ĪÎĩĪÎ˛ÎąÎ¯ÎŊÎĩΚ ĪΡÎŊ ÎŋÎ´ÎˇÎŗÎ¯Îą ÎŧÎÎŗÎšĪĪÎŋĪ
ÎĩĪΚĪĪÎĩĪĪÎŋĪ ÎŧÎĩÎŗÎθÎŋĪ
Ī \"MAX_FILE_SIZE\" ĪÎŋĪ
ÎĪÎĩΚ ÎŋĪΚĪĪÎĩί ĪĪΡÎŊ HTML ĪĪĪÎŧÎą", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index bdde6d0fece..c371334933d 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "La dosiero alÅutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 40b9ea9f23f..2b9bdeeece9 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Fallo no se subiÃŗ el fichero", "There is no error, the file uploaded with success" => "No se ha producido ningÃēn error, el archivo se ha subido con Êxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentas subir sobrepasa el tamaÃąo definido por la variable upload_max_filesize en php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentas subir sobrepasa el tamaÃąo definido por la variable MAX_FILE_SIZE especificada en el formulario HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "No se ha subido ningÃēn archivo", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "La escritura en disco ha fallado", +"Not enough space available" => "No hay suficiente espacio disponible", +"Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", "Delete" => "Eliminar", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index e514d8de59a..9375954c02e 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido", "There is no error, the file uploaded with success" => "No se han producido errores, el archivo se ha subido con Êxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentÃĄs subir excede el tamaÃąo definido por upload_max_filesize en el php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentÃĄs subir sobrepasa el tamaÃąo definido por la variable MAX_FILE_SIZE especificada en el formulario HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "El archivo no fue subido", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "Error al escribir en el disco", +"Not enough space available" => "No hay suficiente espacio disponible", +"Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", "Delete" => "Borrar", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 0fddbfdca46..0dfc7b5bcd5 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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", "The uploaded file was only partially uploaded" => "Fail laeti Ãŧles ainult osaliselt", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 0b223b93d8c..e141fa65726 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 8284593e886..062df6a56b3 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "ŲÛÚ ŲØ§ÛŲÛ ØĸŲžŲŲØ¯ ŲØ´Ø¯.ØŽØˇØ§Û ŲØ§Ø´ŲØ§Øŗ", "There is no error, the file uploaded with success" => "ŲÛÚ ØŽØˇØ§ÛÛ ŲØŦŲØ¯ ŲØ¯Ø§ØąØ¯ ŲØ§ÛŲ Ø¨Ø§ Ų
ŲŲŲÛØĒ Ø¨Ø§Øą Ú¯Ø°Ø§ØąÛ Ø´Ø¯", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ØØ¯Ø§ÚŠØĢØą ØØŦŲ
Ų
ØŦØ§Ø˛ Ø¨ØąØ§Û Ø¨Ø§ØąÚ¯Ø°Ø§ØąÛ Ø§Ø˛ ØˇØąÛŲ HTML \nMAX_FILE_SIZE", "The uploaded file was only partially uploaded" => "Ų
ŲØ¯Ø§Øą ÚŠŲ
Û Ø§Ø˛ ŲØ§ÛŲ Ø¨Ø§ØąÚ¯Ø°Ø§ØąÛ Ø´Ø¯Ų", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 772dabbb392..00f8ded5163 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,10 +1,13 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan", "The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain", "No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty", "Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa", "Failed to write to disk" => "Levylle kirjoitus epäonnistui", +"Not enough space available" => "Tilaa ei ole riittävästi", +"Invalid directory." => "Virheellinen kansio.", "Files" => "Tiedostot", "Unshare" => "Peru jakaminen", "Delete" => "Poista", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 86d476873d0..8ffb0d351f7 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Aucun fichier n'a ÊtÊ chargÊ. Erreur inconnue", "There is no error, the file uploaded with success" => "Aucune erreur, le fichier a ÊtÊ tÊlÊversÊ avec succès", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyÊ dÊpasse la valeur upload_max_filesize situÊe dans le fichier php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Le fichier tÊlÊversÊ excède la valeur de MAX_FILE_SIZE spÊcifiÊe dans le formulaire HTML", @@ -14,7 +15,7 @@ "replace" => "remplacer", "suggest name" => "SuggÊrer un nom", "cancel" => "annuler", -"replaced {new_name}" => "{new_name} a ÊtÊ replacÊ", +"replaced {new_name}" => "{new_name} a ÊtÊ remplacÊ", "undo" => "annuler", "replaced {new_name} with {old_name}" => "{new_name} a ÊtÊ remplacÊ par {old_name}", "unshared {files}" => "Fichiers non partagÊs : {files}", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 5c50e3764cf..0071b5b7dd2 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Non se subiu ningÃēn ficheiro. Erro descoÃąecido.", "There is no error, the file uploaded with success" => "Non hai erros. O ficheiro enviouse correctamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro subido excede a directiva indicada polo tamaÃąo_mÃĄximo_de_subida de php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 4c73493211d..971933f2310 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "××§×××Ĩ ׊×××ĸ×× ××¨× ×××× ××× MAX_FILE_SIZE ׊×Ļ××× × ×××פץ ×ÖžHTML", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index f797c67b986..cb06fe087e6 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltÃļltÃļtt fÃĄjl mÊrete meghaladja a MAX_FILE_SIZE paramÊtert, ami a HTML formban kerÃŧlt megadÃĄsra.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 90b34171220..6c7ca59774e 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto", "There is no error, the file uploaded with success" => "Non ci sono errori, file caricato con successo", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "Nessun file è stato caricato", "Missing a temporary folder" => "Cartella temporanea mancante", "Failed to write to disk" => "Scrittura su disco non riuscita", +"Not enough space available" => "Spazio disponibile insufficiente", +"Invalid directory." => "Cartella non valida.", "Files" => "File", "Unshare" => "Rimuovi condivisione", "Delete" => "Elimina", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 7b8c3ca4778..29f4fd4eafa 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "ããĄã¤ãĢã¯äŊããĸããããŧããããĻããžããã䏿ãĒã¨ãŠãŧ", "There is no error, the file uploaded with success" => "ã¨ãŠãŧã¯ãããžãããããĄã¤ãĢãŽãĸããããŧãã¯æåããžãã", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ãĸããããŧããããããĄã¤ãĢã¯php.ini ㎠upload_max_filesize ãĢč¨åŽããããĩã¤ãēãčļ
ããĻããžã:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ãĸããããŧããããããĄã¤ãĢã¯HTMLãŽããŠãŧã ãĢč¨åŽãããMAX_FILE_SIZEãĢč¨åŽããããĩã¤ãēãčļ
ããĻããžã", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 4b5d57dff92..d0a6d57538a 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "íėŧė´ ė
ëĄëëė§ ėėėĩëë¤. ė ė ėë ė¤ëĨė
ëë¤", "There is no error, the file uploaded with success" => "ė
ëĄëė ėąęŗĩíėėĩëë¤.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ė
ëĄëí íėŧė´ php.iniė upload_max_filesizeëŗ´ë¤ íŊëë¤:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ė
ëĄëí íėŧė´ HTML ëŦ¸ėė ė§ė í MAX_FILE_SIZEëŗ´ë¤ ë íŧ", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 1d22746156e..9eb11360fed 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ĐĐžĐ´Đ¸ĐŗĐŊаŅаŅа даŅĐžŅĐĩĐēаŅа Ņа ĐŊадĐŧиĐŊŅва MAX_FILE_SIZE диŅĐĩĐēŅиваŅа ĐēĐžŅа ĐąĐĩŅĐĩ ĐŋĐžŅŅавĐĩĐŊа вО HTML ŅĐžŅĐŧаŅа", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index d7756698d0c..7fa87840842 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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 ", "The uploaded file was only partially uploaded" => "Sebahagian daripada fail telah dimuat naik. ", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index db54660ab1e..f97228ecd1b 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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", "The uploaded file was only partially uploaded" => "Filopplastningen ble bare delvis gjennomført", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 093a5430d53..998caabf9f5 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Er was geen bestand geladen. Onbekende fout", "There is no error, the file uploaded with success" => "Geen fout opgetreden, bestand successvol geupload.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Het geÃŧploade bestand overscheidt de upload_max_filesize optie in php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Het geÃŧploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 8051eae8c42..e485fdc6c3e 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Plik nie zostaÅ zaÅadowany. Nieznany bÅÄ
d", "There is no error, the file uploaded with success" => "PrzesÅano plik", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Wgrany plik przekracza wartoÅÄ upload_max_filesize zdefiniowanÄ
w php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Rozmiar przesÅanego pliku przekracza maksymalnÄ
wartoÅÄ dyrektywy upload_max_filesize, zawartÄ
formularzu HTML", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 97e5c94fb31..5f266bd7cd4 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulÃĄrio HTML", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 8c90fd47714..36c9d6e62aa 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", "There is no error, the file uploaded with success" => "Sem erro, ficheiro enviado com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulÃĄrio HTML", @@ -6,6 +7,8 @@ "No file was uploaded" => "NÃŖo foi enviado nenhum ficheiro", "Missing a temporary folder" => "Falta uma pasta temporÃĄria", "Failed to write to disk" => "Falhou a escrita no disco", +"Not enough space available" => "Espaço em disco insuficiente!", +"Invalid directory." => "DirectÃŗrio InvÃĄlido", "Files" => "Ficheiros", "Unshare" => "Deixar de partilhar", "Delete" => "Apagar", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 7244a6677a3..b09c8f39c8b 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "Nici un fiČier nu a fost ÃŽncÄrcat. Eroare necunoscutÄ", "There is no error, the file uploaded with success" => "Nicio eroare, fiČierul a fost ÃŽncÄrcat cu succes", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "FiČierul are o dimensiune mai mare decÃĸt variabile MAX_FILE_SIZE specificatÄ ÃŽn formularul HTML", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 4b6d0a8b151..403bd5c0982 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ФаКĐģ ĐŋŅĐĩвŅŅаĐĩŅ ŅаСĐŧĐĩŅ MAX_FILE_SIZE, ŅĐēаСаĐŊŅĐš в HTML-ŅĐžŅĐŧĐĩ", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index bb701aac002..d7d3d37613a 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "РаСĐŧĐĩŅ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊĐŊĐžĐŗĐž", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index e256075896f..be33077f811 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "āļāˇāļąāˇāˇāļ⎠āļāļŠāˇāļāļ āļąāˇāˇāˇāļąāˇ. āļąāˇāˇāˇāļŗāˇāļąāˇ āļ¯āˇāˇāļēāļāˇ", "There is no error, the file uploaded with success" => "āļąāˇāˇāˇāļģāļ¯āˇ ⎠āļāˇāļąāˇāˇ āļāļŠāˇāļāļ āļāˇāļģāˇāļąāˇ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "āļāļŠāˇāļāļ āļāˇ
āļāˇāļąāˇāˇāˇ āˇāˇāˇāˇāļŊāļāˇāˇāļē HTML āļ´āˇāļģāļ¸āļē⎠āļąāˇāļēāļ¸ āļāˇ
āļāļ⎠MAX_FILE_SIZE āˇāˇāˇāˇāļŊāļāˇāˇāļēāļ§ āˇāļŠāˇ āˇāˇāļŠāˇāļē", "The uploaded file was only partially uploaded" => "āļāļŠāˇāļāļ āļāˇ
āļāˇāļąāˇāˇāˇ āļāˇāļ§āˇāļ⎠āļ´āļ¸āļĢāļ⎠āļāļŠāˇāļāļ āˇāˇāļē", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 21d9710f6ba..1043e7ae9d9 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "NahrÃĄvanÃŊ sÃēbor presiahol MAX_FILE_SIZE direktÃvu, ktorÃĄ bola ÅĄpecifikovanÃĄ v HTML formulÃĄri", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index c5ee6c422d5..f07751073c4 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "NaloÅžena datoteka presega velikost, ki jo doloÄa parameter MAX_FILE_SIZE v HTML obrazcu", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index bcc849242ac..7cef4e19c46 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uppladdade filen Ãļverstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 9399089bc78..b68ad8f02c6 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "āŽāް❠āŽā¯āŽĒā¯āŽĒā¯āŽŽā¯ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽāŽĩāŽŋāŽ˛ā¯āޞā¯. āŽ
āŽąāŽŋāŽ¯āŽĒā¯āŽĒāŽāŽžāŽ¤ āŽĩāŽ´ā¯", "There is no error, the file uploaded with success" => "āŽāŽā¯āŽā¯ āŽĩāŽ´ā¯ āŽāޞā¯āޞā¯, āŽā¯āŽĒā¯āŽĒ❠āŽĩā¯āŽąā¯āŽąāŽŋāŽāŽ°āŽŽāŽžāŽ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽāޤā¯", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽ āŽā¯āŽĒā¯āŽĒāŽžāŽŠāŽ¤ā¯ HTML āŽĒāŽāŽŋāŽĩāŽ¤ā¯āޤāŽŋāŽ˛ā¯ āŽā¯āŽąāŽŋāŽĒā¯āŽĒāŽŋāŽāŽĒā¯āŽĒāŽā¯āŽā¯āŽŗā¯āŽŗ MAX_FILE_SIZE directive āŽ āŽĩāŽŋāŽ āŽā¯āŽāŽŋāŽ¯āŽ¤ā¯", "The uploaded file was only partially uploaded" => "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽ āŽā¯āŽĒā¯āŽĒāŽžāŽŠāŽ¤ā¯ āŽĒāŽā¯āޤāŽŋāŽ¯āŽžāŽ āŽŽāŽā¯āŽā¯āŽŽā¯ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽā¯āŽŗā¯āŽŗāŽ¤ā¯", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index bad817ab006..f6b3b1c56f1 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "āšā¸ā¸Ĩāšā¸ā¸ĩāšā¸ā¸ąā¸āšā¸Ģā¸Ĩā¸ā¸Ąā¸ĩā¸ā¸ā¸˛ā¸āšā¸ā¸´ā¸ā¸ā¸ŗā¸Ēā¸ąāšā¸ MAX_FILE_SIZE ā¸ā¸ĩāšā¸Ŗā¸°ā¸ā¸¸āšā¸ā¸˛āšā¸§āšāšā¸ā¸Ŗā¸šā¸āšā¸ā¸ā¸ā¸ŗā¸Ēā¸ąāšā¸āšā¸ā¸ ā¸˛ā¸Šā¸˛ HTML", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 7cd3a82cd71..80182d8ec80 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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Äą.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "YÃŧklenen dosya HTML formundaki MAX_FILE_SIZE sÄąnÄąrÄąnÄą aÅÄąyor", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 00491bcc2d6..4daa2d628c7 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "РОСĐŧŅŅ Đ˛ŅдваĐŊŅаĐļĐĩĐŊĐžĐŗĐž ŅаКĐģŅ ĐŋĐĩŅĐĩвиŅŅŅ Đ´Đ¸ŅĐĩĐēŅĐ¸Đ˛Ņ MAX_FILE_SIZE вĐēаСаĐŊŅ Đ˛ HTML ŅĐžŅĐŧŅ", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 4f58e623178..b14186d9615 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"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", "The uploaded file was only partially uploaded" => "Táēp tin táēŖi lÃĒn máģi cháģ táēŖi lÃĒn ÄÆ°áģŖc máģt pháē§n", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index ccf0efff050..cad4b95c6aa 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "æ˛Ąæä¸äŧ æäģļãæĒįĨé蝝", "There is no error, the file uploaded with success" => "æ˛ĄæäģģäŊé蝝,æäģļä¸äŧ æåäē", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ä¸äŧ įæäģļčļ
čŋäēHTML襨åæåŽįMAX_FILE_SIZE", "The uploaded file was only partially uploaded" => "æäģļåĒæé¨åčĸĢä¸äŧ ", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 8db652f003e..1188c252922 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "æ˛ĄææäģļčĸĢä¸äŧ ãæĒįĨé蝝", "There is no error, the file uploaded with success" => "æ˛Ąæåįé蝝īŧæäģļä¸äŧ æåã", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ä¸äŧ æäģļ大å°åˇ˛čļ
čŋphp.iniä¸upload_max_filesizeæč§åŽįåŧ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ä¸äŧ įæäģļčļ
čŋäēå¨HTML 襨å䏿åŽįMAX_FILE_SIZE", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 5333209eff7..7b55b547148 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"No file was uploaded. Unknown error" => "æ˛ææĒæĄčĸĢä¸åŗ. æĒįĨįé¯čǤ.", "There is no error, the file uploaded with success" => "įĄé¯čǤīŧæĒæĄä¸åŗæå", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ä¸åŗé썿Ąįčļ
é HTML 襨åŽä¸æåŽ MAX_FILE_SIZE éåļ", "The uploaded file was only partially uploaded" => "åĒæé¨åæĒæĄčĸĢä¸åŗ", diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index 0de12edcba5..ad69b5519d9 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -6,7 +6,10 @@ <?php if($_['uploadChangable']):?> <label for="maxUploadSize"><?php echo $l->t( 'Maximum upload size' ); ?> </label> <input name='maxUploadSize' id="maxUploadSize" value='<?php echo $_['uploadMaxFilesize'] ?>'/> - (<?php echo $l->t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>)<br/> + <?php if($_['displayMaxPossibleUploadSize']):?> + (<?php echo $l->t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>) + <?php endif;?> + <br/> <?php endif;?> <input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1" title="<?php echo $l->t( 'Needed for multi-file and folder downloads.' ); ?>" diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php new file mode 100644 index 00000000000..ad983b52e43 --- /dev/null +++ b/apps/files_external/l10n/bn_BD.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Backend" => "āĻĒā§āϰāĻļāĻžāϏāĻ", +"Groups" => "āĻā§āώā§āĻ ā§", +"Users" => "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋāĻŦā§āύā§āĻĻ", +"Delete" => "āĻŽā§āĻā§ āĻĢā§āϞ" +); diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 5024dac4d8c..f8100e14620 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -3,8 +3,10 @@ "Error configuring Dropbox storage" => "Produciuse un erro ao configurar o almacenamento en Dropbox", "Grant access" => "Permitir o acceso", "Fill out all required fields" => "Cubrir todos os campos obrigatorios", -"Please provide a valid Dropbox app key and secret." => "DÃĄ o segredo e a chave correcta do aplicativo de Dropbox.", +"Please provide a valid Dropbox app key and secret." => "Forneza unha chave correcta e segreda do Dropbox.", "Error configuring Google Drive storage" => "Produciuse un erro ao configurar o almacenamento en Google Drive", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> ÂĢsmbclientÂģ non estÃĄ instalado. Non Ê posibel a montaxe de comparticiÃŗns CIFS/SMB. Consulte co administrador do sistema para instalalo.", +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> A compatibilidade de FTP en PHP non estÃĄ activada ou instalada. Non Ê posibel a montaxe de comparticiÃŗns FTP. Consulte co administrador do sistema para instalalo.", "External Storage" => "Almacenamento externo", "Mount point" => "Punto de montaxe", "Backend" => "Infraestrutura", diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php new file mode 100644 index 00000000000..785dfcd2f1d --- /dev/null +++ b/apps/files_sharing/l10n/bn_BD.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Password" => "āĻā§āĻāĻļāĻŦā§āĻĻ", +"Submit" => "āĻĒāĻžāĻ āĻžāĻ", +"Download" => "āĻĄāĻžāĻāύāϞā§āĻĄ", +"web services under your control" => "āĻā§ā§āĻŦ āϏā§āĻŦāĻžāϏāĻŽā§āĻš āĻāĻāύ āĻāĻĒāύāĻžāϰ āĻšāĻžāϤā§āϰ āĻŽā§āĻ ā§ā§" +); diff --git a/apps/files_versions/l10n/bn_BD.php b/apps/files_versions/l10n/bn_BD.php new file mode 100644 index 00000000000..d44ea131313 --- /dev/null +++ b/apps/files_versions/l10n/bn_BD.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"Enable" => "āϏāĻā§āϰāĻŋā§" +); diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php new file mode 100644 index 00000000000..eca40c171f8 --- /dev/null +++ b/apps/user_ldap/l10n/bn_BD.php @@ -0,0 +1,4 @@ +<?php $TRANSLATIONS = array( +"Password" => "āĻā§āĻāĻļāĻŦā§āĻĻ", +"Help" => "āϏāĻšāĻžā§āĻŋāĻāĻž" +); diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 6bd452e9d90..0b1340d4397 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos.", +"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Advertencia:</b> El mÃŗdulo PHP LDAP necesario no estÃĄ instalado, el sistema no funcionarÃĄ. Pregunte al administrador del sistema para instalarlo.", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "PodÊs omitir el protocolo, excepto si SSL es requerido. En ese caso, empezÃĄ con ldaps://", "Base DN" => "DN base", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 41431293cba..ae05efcd27f 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -1,10 +1,12 @@ <?php $TRANSLATIONS = array( +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Aviso:</b> Os aplicativos user_ldap e user_webdavauth son incompatÃbeis. Pode acontecer un comportamento estraÃąo. Consulte co administrador do sistema para desactivar un deles.", +"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Aviso:</b> O mÃŗdulo PHP LDAP Ê necesario e non estÃĄ instalado, a infraestrutura non funcionarÃĄ. Consulte co administrador do sistema para instalalo.", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo agÃĄs que precise de SSL. Nese caso comece con ldaps://", "Base DN" => "DN base", "You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar a DN base para usuarios e grupos na lapela de ÂĢAvanzadoÂģ", "User DN" => "DN do usuario", -"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 do cliente do usuario co que hai que estabelecer unha conexiÃŗn, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anÃŗnimo de o DN e o contrasinal baleiros.", +"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 do cliente do usuario co que hai que estabelecer unha conexiÃŗn, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anÃŗnimo deixe o DN e o contrasinal baleiros.", "Password" => "Contrasinal", "For anonymous access, leave DN and Password empty." => "Para o acceso anÃŗnimo deixe o DN e o contrasinal baleiros.", "User Login Filter" => "Filtro de acceso de usuarios", @@ -21,7 +23,7 @@ "Base Group Tree" => "Base da ÃĄrbore de grupo", "Group-Member association" => "AsociaciÃŗn de grupos e membros", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "Non empregualo para conexiÃŗns SSL: fallarÃĄ.", +"Do not use it for SSL connections, it will fail." => "Non empregalo para conexiÃŗns SSL: fallarÃĄ.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP que non distingue entre maiÃēsculas e minÃēsculas (Windows)", "Turn off SSL certificate validation." => "Desactiva a validaciÃŗn do certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexiÃŗn sÃŗ funciona con esta opciÃŗn importa o certificado SSL do servidor LDAP no seu servidor ownCloud.", diff --git a/apps/user_webdavauth/l10n/gl.php b/apps/user_webdavauth/l10n/gl.php index a5b7e56771f..fa81db333d4 100644 --- a/apps/user_webdavauth/l10n/gl.php +++ b/apps/user_webdavauth/l10n/gl.php @@ -1,3 +1,4 @@ <?php $TRANSLATIONS = array( -"WebDAV URL: http://" => "URL WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviarÃĄ as credenciais do usuario a este URL, http 401 e http 403 interpretanse como credenciais incorrectas e todos os outros cÃŗdigos como credenciais correctas." ); diff --git a/apps/user_webdavauth/l10n/sl.php b/apps/user_webdavauth/l10n/sl.php index 9bd32954b05..8f4effc81a1 100644 --- a/apps/user_webdavauth/l10n/sl.php +++ b/apps/user_webdavauth/l10n/sl.php @@ -1,3 +1,4 @@ <?php $TRANSLATIONS = array( -"WebDAV URL: http://" => "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud bo poslal uporabniÅĄka poverila temu URL naslovu. Pri tem bo interpretiral http 401 in http 403 odgovor kot spodletelo avtentikacijo ter vse ostale http odgovore kot uspeÅĄne." ); diff --git a/config/config.sample.php b/config/config.sample.php index 78dfe17ea79..2eec7847f9c 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -78,6 +78,9 @@ $CONFIG = array( /* Host to use for sending mail, depends on mail_smtpmode if this is used */ "mail_smtphost" => "127.0.0.1", +/* Port to use for sending mail, depends on mail_smtpmode if this is used */ +"mail_smtpport" => 25, + /* authentication needed to send mail, depends on mail_smtpmode if this is used * (false = disable authentication) */ diff --git a/core/js/js.js b/core/js/js.js index 7d967321d93..610950995db 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -3,14 +3,15 @@ * Add * define('DEBUG', true); * To the end of config/config.php to enable debug mode. + * The undefined checks fix the broken ie8 console */ -if (oc_debug !== true) { +if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") { if (!window.console) { window.console = {}; } var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert']; for (var i = 0; i < methods.length; i++) { - console[methods[i]] = function () { }; + console[methods[i]] = function () { }; } } @@ -20,7 +21,6 @@ if (oc_debug !== true) { * @param text the string to translate * @return string */ - function t(app,text, vars){ if( !( t.cache[app] )){ $.ajax(OC.filePath('core','ajax','translations.php'),{ diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php new file mode 100644 index 00000000000..a3350761386 --- /dev/null +++ b/core/l10n/bn_BD.php @@ -0,0 +1,121 @@ +<?php $TRANSLATIONS = array( +"User %s shared a file with you" => "%s āύāĻžāĻŽā§āϰ āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ āĻāĻĒāύāĻžāϰ āϏāĻžāĻĨā§ āĻāĻāĻāĻž āĻĢāĻžāĻāϞ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰā§āĻā§āύ", +"User %s shared a folder with you" => "%s āύāĻžāĻŽā§āϰ āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ āĻāĻĒāύāĻžāϰ āϏāĻžāĻĨā§ āĻāĻāĻāĻž āĻĢā§āϞā§āĻĄāĻžāϰ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰā§āĻā§āύ", +"Category type not provided." => "āĻā§āϝāĻžāĻā§āĻāϰāĻŋāϰ āϧāϰāĻŖāĻāĻŋ āĻĒā§āϰāĻĻāĻžāύ āĻāϰāĻž āĻšā§ āύāĻŋāĨ¤", +"No category to add?" => "āϝā§āĻ āĻāϰāĻžāϰ āĻŽāϤ āĻā§āύ āĻā§āϝāĻžāĻā§āĻāϰāĻŋ āύā§āĻ ?", +"This category already exists: " => "āĻāĻ āĻā§āϝāĻžāĻā§āĻāϰāĻŋāĻāĻŋ āĻŦāĻŋāĻĻā§āϝāĻŽāĻžāύāĻ", +"Object type not provided." => "āĻ
āĻŦāĻā§āĻā§āĻā§āϰ āϧāϰāĻŖāĻāĻŋ āĻĒā§āϰāĻĻāĻžāύ āĻāϰāĻž āĻšā§ āύāĻŋāĨ¤", +"Error adding %s to favorites." => "āĻĒā§āϰāĻŋā§āϤ⧠%s āϝā§āĻ āĻāϰāϤ⧠āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§āĨ¤", +"No categories selected for deletion." => "āĻŽā§āĻā§ āĻĢā§āϞāĻžāϰ āĻāύā§āϝ āĻā§āύ āĻā§āϝāĻžāĻā§āĻāϰāĻŋ āύāĻŋāϰā§āĻŦāĻžāĻāύ āĻāϰāĻž āĻšā§ āύāĻŋāĨ¤", +"Error removing %s from favorites." => "āĻĒā§āϰāĻŋā§ āĻĨā§āĻā§ %s āϏāϰāĻŋā§ā§ āĻĢā§āϞāϤ⧠āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§āĨ¤", +"Settings" => "āύāĻŋā§āĻžāĻŽāĻāϏāĻŽā§āĻš", +"seconds ago" => "āϏā§āĻā§āύā§āĻĄ āĻĒā§āϰā§āĻŦā§", +"1 minute ago" => "1 āĻŽāĻŋāύāĻŋāĻ āĻĒā§āϰā§āĻŦā§", +"{minutes} minutes ago" => "{minutes} āĻŽāĻŋāύāĻŋāĻ āĻĒā§āϰā§āĻŦā§", +"1 hour ago" => "1 āĻāύā§āĻāĻž āĻĒā§āϰā§āĻŦā§", +"{hours} hours ago" => "{hours} āĻāύā§āĻāĻž āĻĒā§āϰā§āĻŦā§", +"today" => "āĻāĻ", +"yesterday" => "āĻāϤāĻāĻžāϞ", +"{days} days ago" => "{days} āĻĻāĻŋāύ āĻĒā§āϰā§āĻŦā§", +"last month" => "āĻāϤāĻŽāĻžāϏ", +"{months} months ago" => "{months} āĻŽāĻžāϏ āĻĒā§āϰā§āĻŦā§", +"months ago" => "āĻŽāĻžāϏ āĻĒā§āϰā§āĻŦā§", +"last year" => "āĻāϤ āĻŦāĻāϰ", +"years ago" => "āĻŦāĻāϰ āĻĒā§āϰā§āĻŦā§", +"Choose" => "āύāĻŋāϰā§āĻŦāĻžāĻāύ", +"Cancel" => "āĻŦāĻžāϤāĻŋāϞ", +"No" => "āύāĻž", +"Yes" => "āĻšā§āϝāĻžāĻ", +"Ok" => "āϤāĻĨāĻžāϏā§āϤā§", +"The object type is not specified." => "āĻ
āĻŦāĻā§āĻā§āĻā§āϰ āϧāϰāĻŖāĻāĻŋ āϏā§āύāĻŋāϰā§āĻĻāĻŋāώā§āĻ āύā§āĨ¤", +"Error" => "āϏāĻŽāϏā§āϝāĻž", +"The app name is not specified." => "āĻ
ā§āϝāĻžāĻĒā§āϰ āύāĻžāĻŽāĻāĻŋ āϏā§āύāĻŋāϰā§āĻĻāĻŋāώā§āĻ āύā§āĨ¤", +"The required file {file} is not installed!" => "āĻāĻŦāĻļā§āϝāĻŋāĻ {file} āĻāĻŋ āϏāĻāϏā§āĻĨāĻžāĻĒāĻŋāϤ āύā§āĻ !", +"Error while sharing" => "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰāĻžāϰ āϏāĻŽā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§", +"Error while unsharing" => "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻŦāĻžāϤāĻŋāϞ āĻāϰāĻžāϰ āϏāĻŽā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§", +"Error while changing permissions" => "āĻ
āύā§āĻŽāϤāĻŋ āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻžāϰ āϏāĻŽā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§", +"Share with" => "āϝāĻžāĻĻā§āϰ āϏāĻžāĻĨā§ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰāĻŦā§", +"Share with link" => "āϞāĻŋāĻāĻ āϏāĻšāϝā§āĻā§ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ", +"Password protect" => "āĻā§āĻāĻļāĻŦā§āĻĻāĻĻā§āĻŦāĻžāϰāĻž āϏā§āϰāĻā§āώāĻŋāϤ", +"Password" => "āĻā§āĻāĻļāĻŦā§āĻĻ", +"Email link to person" => "āĻŦā§āϝāĻā§āϤāĻŋāϰ āϏāĻžāĻĨā§ āĻ-āĻŽā§āĻāϞ āϝā§āĻā§āϤ āĻāϰ", +"Send" => "āĻĒāĻžāĻ āĻžāĻ", +"Set expiration date" => "āĻŽā§ā§āĻžāĻĻā§āϤā§āϤā§āϰā§āĻŖ āĻšāĻā§āĻžāϰ āϤāĻžāϰāĻŋāĻ āύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻāϰā§āύ", +"Expiration date" => "āĻŽā§ā§āĻžāĻĻā§āϤā§āϤā§āϰā§āĻŖ āĻšāĻā§āĻžāϰ āϤāĻžāϰāĻŋāĻ", +"Share via email:" => "āĻ-āĻŽā§āĻāϞā§āϰ āĻŽāĻžāϧā§āϝāĻŽā§ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰāĻ", +"No people found" => "āĻā§āύ āĻŦā§āϝāĻā§āϤāĻŋ āĻā§āĻāĻā§ āĻĒāĻžāĻā§āĻž āĻā§āϞ āύāĻž", +"Resharing is not allowed" => "āĻĒā§āύāϰāĻžā§ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰāĻžāϰ āĻ
āύā§āĻŽāϤāĻŋ āύā§āĻ", +"Unshare" => "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻŦāĻžāϤāĻŋāϞ", +"can edit" => "āϏāĻŽā§āĻĒāĻžāĻĻāύāĻž āĻāϰāϤ⧠āĻĒāĻžāϰāĻŦā§", +"access control" => "āĻ
āϧāĻŋāĻāĻŽā§āϝāϤāĻžāϰ āύāĻŋā§āύā§āϤā§āϰāĻŖ", +"create" => "āϤā§āϰāĻŋ āĻāϰ", +"update" => "āĻĒāϰāĻŋāĻŦāϰā§āϧāύ āĻāϰ", +"delete" => "āĻŽā§āĻā§ āĻĢā§āϞ", +"share" => "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰ", +"Password protected" => "āĻā§āĻāĻļāĻŦā§āĻĻāĻĻā§āĻŦāĻžāϰāĻž āϏā§āϰāĻā§āώāĻŋāϤ", +"Error unsetting expiration date" => "āĻŽā§ā§āĻžāĻĻā§āϤā§āϤā§āϰā§āĻŖ āĻšāĻā§āĻžāϰ āϤāĻžāϰāĻŋāĻ āύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻŦāĻžāϤāĻŋāϞ āĻāϰāϤ⧠āϏāĻŽāϏā§āϝāĻž", +"Error setting expiration date" => "āĻŽā§ā§āĻžāĻĻā§āϤā§āϤā§āϰā§āĻŖ āĻšāĻā§āĻžāϰ āϤāĻžāϰāĻŋāĻ āύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻāϰāϤ⧠āϏāĻŽāϏā§āϝāĻž", +"Sending ..." => "āĻĒāĻžāĻ āĻžāύ⧠āĻšāĻā§āĻā§......", +"Email sent" => "āĻ-āĻŽā§āĻāϞ āĻĒāĻžāĻ āĻžāύ⧠āĻšā§ā§āĻā§", +"ownCloud password reset" => "ownCloud āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ", +"Use the following link to reset your password: {link}" => "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻāϰāϤ⧠āύāĻŋāĻŽā§āύā§āĻā§āϤ āϞāĻŋāĻāĻā§ āĻā§āϞāĻŋāĻ āĻāϰā§āύ:{link}", +"You will receive a link to reset your password via Email." => "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖā§āϰ āĻāύā§āϝ āĻāĻāĻāĻŋ āϞāĻŋāĻāĻ āĻ-āĻŽā§āĻāϞā§āϰ āĻŽāĻžāϧā§āϝāĻŽā§ āĻĒāĻžāĻ āĻžāύ⧠āĻšā§ā§āĻā§āĨ¤", +"Reset email send." => "āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻ-āĻŽā§āĻāϞ āĻĒāĻžāĻ āĻžāύ⧠āĻšā§ā§āĻā§āĨ¤", +"Request failed!" => "āĻ
āύā§āϰā§āϧ āĻŦā§āϝāϰā§āĻĨ !", +"Username" => "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ", +"Request reset" => "āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖā§āϰ āĻāύā§āϝ āĻ
āύā§āϰā§āϧ", +"Your password was reset" => "āĻāĻĒāύāĻžāϰ āĻā§āĻāĻļāĻŦā§āĻĻāĻāĻŋ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻāϰāĻž āĻšā§ā§āĻā§", +"To login page" => "āĻĒā§āϰāĻŦā§āĻļ āĻĒāĻžāϤāĻžā§", +"New password" => "āύāϤā§āύ āĻā§āĻāĻļāĻŦā§āĻĻ", +"Reset password" => "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ", +"Personal" => "āĻŦā§āϝāĻā§āϤāĻŋāĻāϤ", +"Users" => "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋāĻŦā§āύā§āĻĻ", +"Apps" => "āĻ
ā§āϝāĻžāĻĒāϏ", +"Admin" => "āĻĒā§āϰāĻļāĻžāϏāĻ", +"Help" => "āϏāĻšāĻžā§āĻŋāĻāĻž", +"Access forbidden" => "āĻ
āϧāĻŋāĻāĻŽāύā§āϰ āĻ
āύā§āĻŽāϤāĻŋ āύā§āĻ", +"Cloud not found" => "āĻā§āϞāĻžāĻāĻĄ āĻā§āĻāĻā§ āĻĒāĻžāĻā§āĻž āĻā§āϞ āύāĻž", +"Edit categories" => "āĻā§āϝāĻžāĻā§āĻāϰāĻŋ āϏāĻŽā§āĻĒāĻžāĻĻāύāĻž", +"Add" => "āϝā§āĻ āĻāϰ", +"Security Warning" => "āύāĻŋāϰāĻžāĻĒāϤā§āϤāĻžāĻāύāĻŋāϤ āϏāϤāϰā§āĻāϤāĻž", +"Create an <strong>admin account</strong>" => "<strong>āĻĒā§āϰāĻļāĻžāϏāĻ āĻāĻāĻžāĻāύā§āĻ</strong> āϤā§āϰāĻŋ āĻāϰ", +"Advanced" => "āϏā§āĻāĻžāϰā§", +"Data folder" => "āĻĄāĻžāĻāĻž āĻĢā§āϞā§āĻĄāĻžāϰ", +"Configure the database" => "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻāύāĻĢāĻŋāĻāĻžāϰ āĻāϰ", +"will be used" => "āĻŦā§āϝāĻŦāĻšā§āϤ āĻšāĻŦā§", +"Database user" => "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ", +"Database password" => "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻā§āĻāĻļāĻŦā§āĻĻ", +"Database name" => "āĻĄāĻžāĻāĻžāĻŦā§āĻā§āϰ āύāĻžāĻŽ", +"Database tablespace" => "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻā§āĻŦāĻŋāϞāϏā§āĻĒā§āϏ", +"Database host" => "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻšā§āϏā§āĻ", +"Finish setup" => "āϏā§āĻ-āĻāĻĒ āϏā§āϏāĻŽā§āĻĒāύā§āύ āĻāϰ", +"Sunday" => "āϰāĻŦāĻŋāĻŦāĻžāϰ", +"Monday" => "āϏā§āĻŽāĻŦāĻžāϰ", +"Tuesday" => "āĻŽāĻā§āĻāϞāĻŦāĻžāϰ", +"Wednesday" => "āĻŦā§āϧāĻŦāĻžāϰ", +"Thursday" => "āĻŦā§āĻšāώā§āĻĒāϤāĻŋāĻŦāĻžāϰ", +"Friday" => "āĻļā§āĻā§āϰāĻŦāĻžāϰ", +"Saturday" => "āĻļāύāĻŋāĻŦāĻžāϰ", +"January" => "āĻāĻžāύā§ā§āĻžāϰāĻŋ", +"February" => "āĻĢā§āĻŦā§āϰā§ā§āĻžāϰāĻŋ", +"March" => "āĻŽāĻžāϰā§āĻ", +"April" => "āĻāĻĒā§āϰāĻŋāϞ", +"May" => "āĻŽā§", +"June" => "āĻā§āύ", +"July" => "āĻā§āϞāĻžāĻ", +"August" => "āĻ
āĻāĻžāϏā§āĻ", +"September" => "āϏā§āĻĒā§āĻā§āĻŽā§āĻŦāϰ", +"October" => "āĻ
āĻā§āĻā§āĻŦāϰ", +"November" => "āύāĻā§āĻŽā§āĻŦāϰ", +"December" => "āĻĄāĻŋāϏā§āĻŽā§āĻŦāϰ", +"web services under your control" => "āĻā§ā§āĻŦ āϏā§āĻŦāĻžāϏāĻŽā§āĻš āĻāĻāύ āĻāĻĒāύāĻžāϰ āĻšāĻžāϤā§āϰ āĻŽā§āĻ ā§ā§", +"Log out" => "āĻĒā§āϰāϏā§āĻĨāĻžāύ", +"Lost your password?" => "āĻāĻĒāύāĻžāϰ āĻā§āĻāĻļāĻŦā§āĻĻāĻāĻŋ āĻšāĻžāϰāĻŋā§ā§āĻā§āύ ?", +"remember" => "āĻŽāύ⧠āϰāĻžāĻ", +"Log in" => "āĻĒā§āϰāĻŦā§āĻļ", +"You are logged out." => "āĻāĻĒāύāĻŋ āĻĒā§āϰāϏā§āĻĨāĻžāύ āĻāϰā§āĻā§āύ", +"prev" => "āĻĒā§āϰā§āĻŦāĻŦāϰā§āϤā§", +"next" => "āĻĒāϰāĻŦāϰā§āϤā§", +"Security Warning!" => "āύāĻŋāϰāĻžāĻĒāϤā§āϤāĻžāĻŦāĻŋāώā§āĻ āϏāϤāϰā§āĻāĻŦāĻžāĻŖā§", +"Verify" => "āϝāĻžāĻāĻžāĻ āĻāϰ" +); diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 2da7951b064..830281dabbe 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -1,4 +1,8 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "El usurario %s compartiÃŗ un archivo con vos.", +"User %s shared a folder with you" => "El usurario %s compartiÃŗ una carpeta con vos.", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s compartiÃŗ el archivo \"%s\" con vos. EstÃĄ disponible para su descarga aquÃ: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartiÃŗ el archivo \"%s\" con vos. EstÃĄ disponible para su descarga aquÃ: %s", "Category type not provided." => "Tipo de categorÃa no provisto. ", "No category to add?" => "ÂŋNinguna categorÃa para aÃąadir?", "This category already exists: " => "Esta categorÃa ya existe: ", @@ -39,6 +43,8 @@ "Share with link" => "Compartir con link", "Password protect" => "Proteger con contraseÃąa ", "Password" => "ContraseÃąa", +"Email link to person" => "Enviar el link por e-mail.", +"Send" => "Enviar", "Set expiration date" => "Asignar fecha de vencimiento", "Expiration date" => "Fecha de vencimiento", "Share via email:" => "compartido a travÊs de e-mail:", @@ -55,6 +61,8 @@ "Password protected" => "Protegido por contraseÃąa", "Error unsetting expiration date" => "Error al remover la fecha de caducidad", "Error setting expiration date" => "Error al asignar fecha de vencimiento", +"Sending ..." => "Enviando...", +"Email sent" => "Email enviado", "ownCloud password reset" => "Restablecer contraseÃąa de ownCloud", "Use the following link to reset your password: {link}" => "UsÃĄ este enlace para restablecer tu contraseÃąa: {link}", "You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseÃąa", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 082bace76ce..6b1449dd4ba 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -59,7 +59,7 @@ "delete" => "supprimer", "share" => "partager", "Password protected" => "ProtÊgÊ par un mot de passe", -"Error unsetting expiration date" => "Un erreur est survenue pendant la suppression de la date d'expiration", +"Error unsetting expiration date" => "Une erreur est survenue pendant la suppression de la date d'expiration", "Error setting expiration date" => "Erreur lors de la spÊcification de la date d'expiration", "Sending ..." => "En cours d'envoi ...", "Email sent" => "Email envoyÊ", @@ -83,7 +83,7 @@ "Cloud not found" => "Introuvable", "Edit categories" => "Modifier les catÊgories", "Add" => "Ajouter", -"Security Warning" => "Avertissement de sÊcutitÊ", +"Security Warning" => "Avertissement de sÊcuritÊ", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Aucun gÊnÊrateur de nombre alÊatoire sÊcurisÊ n'est disponible, veuillez activer l'extension PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sans gÊnÊrateur de nombre alÊatoire sÊcurisÊ, un attaquant peut ÃĒtre en mesure de prÊdire les jetons de rÊinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur.", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de dÊplacer le dossier data en dehors du dossier racine des documents du serveur web.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 4cdc39896b5..8daa8c6d1c4 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,23 +1,27 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "O usuario %s compartÃu un ficheiro con vostede", +"User %s shared a folder with you" => "O usuario %s compartÃu un cartafol con vostede", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o ficheiro ÂĢ%sÂģ con vostede. Teno dispoÃąÃbel en: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o cartafol ÂĢ%sÂģ con vostede. Teno dispoÃąÃbel en: %s", "Category type not provided." => "Non se indicou o tipo de categorÃa", "No category to add?" => "Sen categorÃa que engadir?", "This category already exists: " => "Esta categorÃa xa existe: ", "Object type not provided." => "Non se forneceu o tipo de obxecto.", -"%s ID not provided." => "Non se deu o ID %s.", -"Error adding %s to favorites." => "Erro ao engadir %s aos favoritos.", +"%s ID not provided." => "Non se forneceu o ID %s.", +"Error adding %s to favorites." => "Produciuse un erro ao engadir %s aos favoritos.", "No categories selected for deletion." => "Non hai categorÃas seleccionadas para eliminar.", -"Error removing %s from favorites." => "Erro ao eliminar %s dos favoritos.", +"Error removing %s from favorites." => "Produciuse un erro ao eliminar %s dos favoritos.", "Settings" => "ConfiguraciÃŗns", "seconds ago" => "segundos atrÃĄs", "1 minute ago" => "hai 1 minuto", -"{minutes} minutes ago" => "{minutes} minutos atrÃĄs", +"{minutes} minutes ago" => "hai {minutes} minutos", "1 hour ago" => "hai 1 hora", -"{hours} hours ago" => "{hours} horas atrÃĄs", +"{hours} hours ago" => "hai {hours} horas", "today" => "hoxe", "yesterday" => "onte", -"{days} days ago" => "{days} dÃas atrÃĄs", +"{days} days ago" => "hai {days} dÃas", "last month" => "Ãēltimo mes", -"{months} months ago" => "{months} meses atrÃĄs", +"{months} months ago" => "hai {months} meses", "months ago" => "meses atrÃĄs", "last year" => "Ãēltimo ano", "years ago" => "anos atrÃĄs", @@ -30,42 +34,46 @@ "Error" => "Erro", "The app name is not specified." => "Non se especificou o nome do aplicativo.", "The required file {file} is not installed!" => "Non estÃĄ instalado o ficheiro {file} que se precisa", -"Error while sharing" => "Erro compartindo", -"Error while unsharing" => "Erro ao deixar de compartir", -"Error while changing permissions" => "Erro ao cambiar os permisos", -"Shared with you and the group {group} by {owner}" => "Compartido contigo e co grupo {group} de {owner}", -"Shared with you by {owner}" => "Compartido contigo por {owner}", +"Error while sharing" => "Produciuse un erro ao compartir", +"Error while unsharing" => "Produciuse un erro ao deixar de compartir", +"Error while changing permissions" => "Produciuse un erro ao cambiar os permisos", +"Shared with you and the group {group} by {owner}" => "Compartido con vostede e co grupo {group} por {owner}", +"Shared with you by {owner}" => "Compartido con vostede por {owner}", "Share with" => "Compartir con", -"Share with link" => "Compartir ca ligazÃŗn", +"Share with link" => "Compartir coa ligazÃŗn", "Password protect" => "Protexido con contrasinais", "Password" => "Contrasinal", +"Email link to person" => "Enviar ligazÃŗn por correo", +"Send" => "Enviar", "Set expiration date" => "Definir a data de caducidade", "Expiration date" => "Data de caducidade", -"Share via email:" => "Compartir por correo electrÃŗnico:", +"Share via email:" => "Compartir por correo:", "No people found" => "Non se atopou xente", -"Resharing is not allowed" => "Non se acepta volver a compartir", +"Resharing is not allowed" => "Non se permite volver a compartir", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Deixar de compartir", "can edit" => "pode editar", "access control" => "control de acceso", "create" => "crear", "update" => "actualizar", -"delete" => "borrar", +"delete" => "eliminar", "share" => "compartir", "Password protected" => "Protexido con contrasinal", -"Error unsetting expiration date" => "Erro ao quitar a data de caducidade", -"Error setting expiration date" => "Erro ao definir a data de caducidade", -"ownCloud password reset" => "Restablecer contrasinal de ownCloud", -"Use the following link to reset your password: {link}" => "Usa a seguinte ligazÃŗn para restablecer o contrasinal: {link}", -"You will receive a link to reset your password via Email." => "RecibirÃĄ unha ligazÃŗn por correo electrÃŗnico para restablecer o contrasinal", -"Reset email send." => "Restablecer o envÃo por correo.", -"Request failed!" => "Fallo na peticiÃŗn", +"Error unsetting expiration date" => "Produciuse un erro ao retirar a data de caducidade", +"Error setting expiration date" => "Produciuse un erro ao definir a data de caducidade", +"Sending ..." => "Enviando...", +"Email sent" => "Correo enviado", +"ownCloud password reset" => "Restabelecer o contrasinal de ownCloud", +"Use the following link to reset your password: {link}" => "Usa a seguinte ligazÃŗn para restabelecer o contrasinal: {link}", +"You will receive a link to reset your password via Email." => "RecibirÃĄ unha ligazÃŗn por correo para restabelecer o contrasinal", +"Reset email send." => "Restabelecer o envÃo por correo.", +"Request failed!" => "Non foi posÃbel facer a peticiÃŗn", "Username" => "Nome de usuario", -"Request reset" => "PeticiÃŗn de restablecemento", -"Your password was reset" => "O contrasinal foi restablecido", +"Request reset" => "PeticiÃŗn de restabelecemento", +"Your password was reset" => "O contrasinal foi restabelecido", "To login page" => "A pÃĄxina de conexiÃŗn", "New password" => "Novo contrasinal", -"Reset password" => "Restablecer contrasinal", +"Reset password" => "Restabelecer o contrasinal", "Personal" => "Persoal", "Users" => "Usuarios", "Apps" => "Aplicativos", @@ -75,15 +83,15 @@ "Cloud not found" => "Nube non atopada", "Edit categories" => "Editar categorÃas", "Add" => "Engadir", -"Security Warning" => "Aviso de seguridade", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de nÃēmeros aleatorios dispoÃąÃbel. Activa o engadido de OpenSSL para PHP.", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador de nÃēmeros aleatorios seguro poderÃa acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa tÃēa conta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "O teu cartafol de datos e os teus ficheiros son seguramente accesibles a travÊs de internet. O ficheiro .htaccess que ownCloud fornece non estÃĄ empregÃĄndose. SuxÃrese que configures o teu servidor web de tal maneira que o cartafol de datos non estea accesÃbel ou movas o cartafol de datos fÃŗra do root do directorio de datos do servidor web.", +"Security Warning" => "Aviso de seguranza", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de nÃēmeros ao chou dispoÃąÃbel. Active o engadido de OpenSSL para PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador seguro de nÃēmeros ao chou poderÃa acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa sÃēa conta.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesÃbeis a travÊs da Internet. O ficheiro .htaccess que fornece ownCloud non estÃĄ a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesÃbel ou mova o cartafol de datos fora do directorio raÃz de datos do servidor web.", "Create an <strong>admin account</strong>" => "Crear unha <strong>contra de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Cartafol de datos", "Configure the database" => "Configurar a base de datos", -"will be used" => "serÃĄ utilizado", +"will be used" => "vai ser utilizado", "Database user" => "Usuario da base de datos", "Database password" => "Contrasinal da base de datos", "Database name" => "Nome da base de datos", @@ -97,23 +105,23 @@ "Thursday" => "Xoves", "Friday" => "Venres", "Saturday" => "SÃĄbado", -"January" => "Xaneiro", -"February" => "Febreiro", -"March" => "Marzo", -"April" => "Abril", -"May" => "Maio", -"June" => "XuÃąo", -"July" => "Xullo", -"August" => "Agosto", -"September" => "Setembro", -"October" => "Outubro", -"November" => "Novembro", -"December" => "Decembro", +"January" => "xaneiro", +"February" => "febreiro", +"March" => "marzo", +"April" => "abril", +"May" => "maio", +"June" => "xuÃąo", +"July" => "xullo", +"August" => "agosto", +"September" => "setembro", +"October" => "outubro", +"November" => "novembro", +"December" => "decembro", "web services under your control" => "servizos web baixo o seu control", "Log out" => "Desconectar", "Automatic logon rejected!" => "Rexeitouse a entrada automÃĄtica", -"If you did not change your password recently, your account may be compromised!" => "Se non fixeches cambios de contrasinal recentemente Ê posÃbel que a tÃēa conta estea comprometida!", -"Please change your password to secure your account again." => "Cambia de novo o teu contrasinal para asegurar a tÃēa conta.", +"If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal Ê posÃbel que a sÃēa conta estea comprometida!", +"Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a sÃēa conta.", "Lost your password?" => "Perdeu o contrasinal?", "remember" => "lembrar", "Log in" => "Conectar", @@ -121,6 +129,6 @@ "prev" => "anterior", "next" => "seguinte", "Security Warning!" => "Advertencia de seguranza", -"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifica o teu contrasinal.<br/>Por motivos de seguridade pode que ocasionalmente se che pregunte de novo polo teu contrasinal.", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifique o seu contrasinal.<br/>Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu contrasinal.", "Verify" => "Verificar" ); diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 9ac326d45ec..1c86e8b11d6 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -1,28 +1,73 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "%s felhasznÃĄlÃŗ megosztott Ãnnel egy fÃĄjlt", +"User %s shared a folder with you" => "%s felhasznÃĄlÃŗ megosztott Ãnnel egy mappÃĄt", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s felhasznÃĄlÃŗ megosztotta ezt az ÃĄllomÃĄnyt Ãnnel: %s. A fÃĄjl innen tÃļlthetÅ le: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s felhasznÃĄlÃŗ megosztotta ezt a mappÃĄt Ãnnel: %s. A mappa innen tÃļlthetÅ le: %s", +"Category type not provided." => "Nincs megadva a kategÃŗria tÃpusa.", "No category to add?" => "Nincs hozzÃĄadandÃŗ kategÃŗria?", -"This category already exists: " => "Ez a kategÃŗria mÃĄr lÊtezik", +"This category already exists: " => "Ez a kategÃŗria mÃĄr lÊtezik: ", +"Object type not provided." => "Az objektum tÃpusa nincs megadva.", +"%s ID not provided." => "%s ID nincs megadva.", +"Error adding %s to favorites." => "Nem sikerÃŧlt a kedvencekhez adni ezt: %s", "No categories selected for deletion." => "Nincs tÃļrlÊsre jelÃļlt kategÃŗria", +"Error removing %s from favorites." => "Nem sikerÃŧlt a kedvencekbÅl tÃļrÃļlni ezt: %s", "Settings" => "BeÃĄllÃtÃĄsok", -"seconds ago" => "mÃĄsodperccel ezelÅtt", -"1 minute ago" => "1 perccel ezelÅtt", +"seconds ago" => "pÃĄr mÃĄsodperce", +"1 minute ago" => "1 perce", +"{minutes} minutes ago" => "{minutes} perce", "1 hour ago" => "1 ÃŗrÃĄja", +"{hours} hours ago" => "{hours} ÃŗrÃĄja", "today" => "ma", "yesterday" => "tegnap", +"{days} days ago" => "{days} napja", "last month" => "mÃēlt hÃŗnapban", -"months ago" => "hÃŗnappal ezelÅtt", +"{months} months ago" => "{months} hÃŗnapja", +"months ago" => "tÃļbb hÃŗnapja", "last year" => "tavaly", -"years ago" => "Êvvel ezelÅtt", +"years ago" => "tÃļbb Êve", +"Choose" => "VÃĄlasszon", "Cancel" => "MÊgse", "No" => "Nem", "Yes" => "Igen", "Ok" => "Ok", +"The object type is not specified." => "Az objektum tÃpusa nincs megadva.", "Error" => "Hiba", -"Password" => "JelszÃŗ", -"Unshare" => "Nem oszt meg", -"create" => "lÊtrehozÃĄs", +"The app name is not specified." => "Az alkalmazÃĄs neve nincs megadva.", +"The required file {file} is not installed!" => "A szÃŧksÊges fÃĄjl: {file} nincs telepÃtve!", +"Error while sharing" => "Nem sikerÃŧlt lÊtrehozni a megosztÃĄst", +"Error while unsharing" => "Nem sikerÃŧlt visszavonni a megosztÃĄst", +"Error while changing permissions" => "Nem sikerÃŧlt mÃŗdosÃtani a jogosultsÃĄgokat", +"Shared with you and the group {group} by {owner}" => "Megosztotta Ãnnel Ês a(z) {group} csoporttal: {owner}", +"Shared with you by {owner}" => "Megosztotta Ãnnel: {owner}", +"Share with" => "Kivel osztom meg", +"Share with link" => "Link megadÃĄsÃĄval osztom meg", +"Password protect" => "JelszÃŗval is vÊdem", +"Password" => "JelszÃŗ (tetszÅleges)", +"Email link to person" => "Email cÃmre kÃŧldjÃŧk el", +"Send" => "KÃŧldjÃŧk el", +"Set expiration date" => "Legyen lejÃĄrati idÅ", +"Expiration date" => "A lejÃĄrati idÅ", +"Share via email:" => "MegosztÃĄs emaillel:", +"No people found" => "Nincs talÃĄlat", +"Resharing is not allowed" => "Ezt az ÃĄllomÃĄnyt csak a tulajdonosa oszthatja meg mÃĄsokkal", +"Shared in {item} with {user}" => "Megosztva {item}-ben {user}-rel", +"Unshare" => "A megosztÃĄs visszavonÃĄsa", +"can edit" => "mÃŗdosÃthat", +"access control" => "jogosultsÃĄg", +"create" => "lÊtrehoz", +"update" => "szerkeszt", +"delete" => "tÃļrÃļl", +"share" => "megoszt", +"Password protected" => "JelszÃŗval van vÊdve", +"Error unsetting expiration date" => "Nem sikerÃŧlt a lejÃĄrati idÅt tÃļrÃļlni", +"Error setting expiration date" => "Nem sikerÃŧlt a lejÃĄrati idÅt beÃĄllÃtani", +"Sending ..." => "KÃŧldÊs ...", +"Email sent" => "Az emailt elkÃŧldtÃŧk", "ownCloud password reset" => "ownCloud jelszÃŗ-visszaÃĄllÃtÃĄs", -"Use the following link to reset your password: {link}" => "HasznÃĄlja az alÃĄbbi linket a jelszÃŗ-visszaÃĄllÃtÃĄshoz: {link}", -"You will receive a link to reset your password via Email." => "Egy e-mailben kap ÊrtesÃtÊst a jelszÃŗvÃĄltoztatÃĄs mÃŗdjÃĄrÃŗl.", +"Use the following link to reset your password: {link}" => "HasznÃĄlja ezt a linket a jelszÃŗ ismÊtelt beÃĄllÃtÃĄsÃĄhoz: {link}", +"You will receive a link to reset your password via Email." => "Egy emailben fog ÊrtesÃtÊst kapni a jelszÃŗbeÃĄllÃtÃĄs mÃŗdjÃĄrÃŗl.", +"Reset email send." => "ElkÃŧldtÃŧk az emailt a jelszÃŗ ismÊtelt beÃĄllÃtÃĄsÃĄhoz.", +"Request failed!" => "Nem sikerÃŧlt a kÊrÊst teljesÃteni!", "Username" => "FelhasznÃĄlÃŗnÊv", "Request reset" => "VisszaÃĄllÃtÃĄs igÊnylÊse", "Your password was reset" => "JelszÃŗ megvÃĄltoztatva", @@ -32,48 +77,58 @@ "Personal" => "SzemÊlyes", "Users" => "FelhasznÃĄlÃŗk", "Apps" => "AlkalmazÃĄsok", -"Admin" => "Admin", +"Admin" => "AdminisztrÃĄciÃŗ", "Help" => "SÃēgÃŗ", -"Access forbidden" => "HozzÃĄfÊrÊs tiltva", +"Access forbidden" => "A hozzÃĄfÊrÊs nem engedÊlyezett", "Cloud not found" => "A felhÅ nem talÃĄlhatÃŗ", "Edit categories" => "KategÃŗriÃĄk szerkesztÊse", "Add" => "HozzÃĄadÃĄs", "Security Warning" => "BiztonsÃĄgi figyelmeztetÊs", -"Create an <strong>admin account</strong>" => "<strong>RendszergazdafiÃŗk</strong> lÊtrehozÃĄsa", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nem ÊrhetÅ el megfelelÅ vÊletlenszÃĄm-generÃĄtor, telepÃteni kellene a PHP OpenSSL kiegÊszÃtÊsÊt.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "MegfelelÅ vÊletlenszÃĄm-generÃĄtor hiÃĄnyÃĄban egy tÃĄmadÃŗ szÃĄndÊkÃē idegen kÊpes lehet megjÃŗsolni a jelszÃŗvisszaÃĄllÃtÃŗ tokent, Ês Ãn helyett belÊpni.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Az adatkÃļnytÃĄra Ês az itt levÅ fÃĄjlok valÃŗszÃnÅąleg elÊrhetÅk az internetrÅl. Az ownCloud ÃĄltal beillesztett .htaccess fÃĄjl nem mÅąkÃļdik. Nagyon fontos, hogy a webszervert Ãēgy konfigurÃĄlja, hogy az adatkÃļnyvtÃĄr nem legyen kÃļzvetlenÃŧl kÃvÃŧlrÅl elÊrhetÅ, vagy az adatkÃļnyvtÃĄrt tegye a webszerver dokumentumfÃĄjÃĄn kÃvÃŧlre.", +"Create an <strong>admin account</strong>" => "<strong>Rendszergazdai belÊpÊs</strong> lÊtrehozÃĄsa", "Advanced" => "HaladÃŗ", "Data folder" => "AdatkÃļnyvtÃĄr", "Configure the database" => "AdatbÃĄzis konfigurÃĄlÃĄsa", -"will be used" => "hasznÃĄlva lesz", +"will be used" => "adatbÃĄzist fogunk hasznÃĄlni", "Database user" => "AdatbÃĄzis felhasznÃĄlÃŗnÊv", "Database password" => "AdatbÃĄzis jelszÃŗ", -"Database name" => "AdatbÃĄzis nÊv", +"Database name" => "Az adatbÃĄzis neve", +"Database tablespace" => "Az adatbÃĄzis tÃĄblÃĄzattÊr (tablespace)", "Database host" => "AdatbÃĄzis szerver", -"Finish setup" => "BeÃĄllÃtÃĄs befejezÊse", -"Sunday" => "VasÃĄrnap", -"Monday" => "HÊtfÅ", -"Tuesday" => "Kedd", -"Wednesday" => "Szerda", -"Thursday" => "CsÃŧtÃļrtÃļk", -"Friday" => "PÊntek", -"Saturday" => "Szombat", -"January" => "JanuÃĄr", -"February" => "FebruÃĄr", -"March" => "MÃĄrcius", -"April" => "Ãprilis", -"May" => "MÃĄjus", -"June" => "JÃēnius", -"July" => "JÃēlius", -"August" => "Augusztus", -"September" => "Szeptember", -"October" => "OktÃŗber", -"November" => "November", -"December" => "December", -"web services under your control" => "webszolgÃĄltatÃĄsok az irÃĄnyÃtÃĄsod alatt", +"Finish setup" => "A beÃĄllÃtÃĄsok befejezÊse", +"Sunday" => "vasÃĄrnap", +"Monday" => "hÊtfÅ", +"Tuesday" => "kedd", +"Wednesday" => "szerda", +"Thursday" => "csÃŧtÃļrtÃļk", +"Friday" => "pÊntek", +"Saturday" => "szombat", +"January" => "januÃĄr", +"February" => "februÃĄr", +"March" => "mÃĄrcius", +"April" => "ÃĄprilis", +"May" => "mÃĄjus", +"June" => "jÃēnius", +"July" => "jÃēlius", +"August" => "augusztus", +"September" => "szeptember", +"October" => "oktÃŗber", +"November" => "november", +"December" => "december", +"web services under your control" => "webszolgÃĄltatÃĄsok sajÃĄt kÊzben", "Log out" => "KilÊpÊs", -"Lost your password?" => "Elfelejtett jelszÃŗ?", +"Automatic logon rejected!" => "Az automatikus bejelentkezÊs sikertelen!", +"If you did not change your password recently, your account may be compromised!" => "Ha mostanÃĄban nem mÃŗdosÃtotta a jelszavÃĄt, akkor lehetsÊges, hogy idegenek jutottak be a rendszerbe az Ãn nevÊben!", +"Please change your password to secure your account again." => "A biztonsÃĄga ÊrdekÊben vÃĄltoztassa meg a jelszavÃĄt!", +"Lost your password?" => "Elfelejtette a jelszavÃĄt?", "remember" => "emlÊkezzen", "Log in" => "BejelentkezÊs", "You are logged out." => "KilÊpett.", -"prev" => "ElÅzÅ", -"next" => "KÃļvetkezÅ" +"prev" => "elÅzÅ", +"next" => "kÃļvetkezÅ", +"Security Warning!" => "BiztonsÃĄgi figyelmeztetÊs!", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "KÊrjÃŧk Ãrja be a jelszavÃĄt! <br/>BiztonsÃĄgi okokbÃŗl nÊha a bejelentkezÊst kÃļvetÅen is ellenÅrzÊskÊppen meg kell adnia a jelszavÃĄt.", +"Verify" => "EllenÅrzÊs" ); diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php index e64b16d3b83..3ef8eaf71aa 100644 --- a/core/lostpassword/controller.php +++ b/core/lostpassword/controller.php @@ -45,8 +45,6 @@ class OC_Core_LostPassword_Controller { $l = OC_L10N::get('core'); $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); - echo('Mailsent'); - self::displayLostPasswordPage(false, true); } else { self::displayLostPasswordPage(true, false); diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 2f8cead51f3..5d25164f500 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ØĒŲ
ØĒØąŲب𠨧ŲŲ
ŲŲØ§ØĒ Ø¨ŲØŦاØ." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ØĒŲ
ØĒØąŲŲØš ØŦØ˛ØĄ Ų
Ų Ø§ŲŲ
ŲŲØ§ØĒ Ø§ŲØ°Ų ØĒØąŲØ¯ ØĒØąŲŲØšŲا ŲŲØˇ" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ŲŲ
ŲØĒŲ
ØĒØąŲŲØš ØŖŲ Ų
Ų Ø§ŲŲ
ŲŲØ§ØĒ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "اŲŲ
ØŦŲØ¯ اŲŲ
Ø¤ŲØĒ ØēŲØą Ų
ŲØŦŲØ¯" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "اŲŲ
ŲŲØ§ØĒ" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "ØĨŲØēØ§ØĄ Ų
Ø´Ø§ØąŲØŠ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Ų
ØØ°ŲŲ" @@ -65,39 +77,39 @@ msgstr "Ų
ØØ°ŲŲ" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ØĨØēŲŲ" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Ø§ŲØ§ØŗŲ
" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "ØØŦŲ
" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Ų
ؚدŲ" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -192,27 +204,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Ø§ŲØØ¯ Ø§ŲØŖŲØĩŲ ŲØØŦŲ
اŲŲ
ŲŲØ§ØĒ Ø§ŲØĒŲ ŲŲ
ŲŲ ØąŲØšŲا" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ØŲظ" @@ -240,28 +252,28 @@ msgstr "ØĨØąŲØš" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ŲØ§ ŲŲØŦد Ø´ŲØĄ ŲŲØ§. ØĨØąŲØš Ø¨ØšØļ اŲŲ
ŲŲØ§ØĒ!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ØĒØŲ
ŲŲ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ØØŦŲ
Ø§ŲØĒØąŲŲØš ØŖØšŲŲ Ų
Ų Ø§ŲŲ
ØŗŲ
ŲØ" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ØØŦŲ
اŲŲ
ŲŲØ§ØĒ Ø§ŲØĒŲ ØĒØąŲØ¯ ØĒØąŲŲØšŲا ØŖØšŲŲ Ų
Ų Ø§ŲŲ
ØŗŲ
ŲØ ØšŲŲ Ø§ŲØŽØ§Ø¯Ų
." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index aec7865e431..9ef621af1e6 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,58 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ФаКĐģŅŅ Đĩ ĐēаŅĐĩĐŊ ŅŅĐŋĐĩŅĐŊĐž" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ФаКĐģŅŅ Đĩ ĐēаŅĐĩĐŊ ŅаŅŅиŅĐŊĐž" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ФаŅ
ĐģŅŅ ĐŊĐĩ ĐąĐĩ ĐēаŅĐĩĐŊ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ĐиĐŋŅва вŅĐĩĐŧĐĩĐŊĐŊаŅа ĐŋаĐŋĐēа" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ĐŅĐĩŅĐēа ĐŋŅи СаĐŋĐ¸Ņ ĐŊа диŅĐēа" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ФаКĐģОвĐĩ" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "ĐСŅŅиваĐŊĐĩ" @@ -66,39 +78,39 @@ msgstr "ĐСŅŅиваĐŊĐĩ" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ĐŅĐĩŅĐēа ĐŋŅи ĐēаŅваĐŊĐĩ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ĐаŅваĐŊĐĩŅĐž Đĩ ĐžŅĐŧĐĩĐŊĐĩĐŊĐž." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ĐĐŧĐĩ" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "РаСĐŧĐĩŅ" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ĐŅĐžĐŧĐĩĐŊĐĩĐŊĐž" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "" msgid "Maximum upload size" msgstr "ĐаĐēŅ. ŅаСĐŧĐĩŅ ĐˇĐ° ĐēаŅваĐŊĐĩ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ОСĐŊаŅава ĐąĐĩС ĐžĐŗŅаĐŊиŅĐĩĐŊиĐĩ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ĐаĐŋиŅ" @@ -241,28 +253,28 @@ msgstr "ĐаŅваĐŊĐĩ" msgid "Cancel upload" msgstr "ĐŅĐēаСваĐŊĐĩ ĐŊа ĐēаŅваĐŊĐĩŅĐž" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ĐŅĐŧа ĐŊиŅĐž, ĐēаŅĐĩŅĐĩ ĐŊĐĩŅĐž!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ĐСŅĐĩĐŗĐģŅĐŊĐĩ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ФаКĐģŅŅ Đĩ ĐŋŅĐĩĐēаĐģĐĩĐŊĐž ĐŗĐžĐģŅĐŧ" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ФаКĐģОвĐĩŅĐĩ ĐēОиŅĐž ŅĐĩ ĐžĐŋиŅваŅĐĩ да ĐēаŅиŅĐĩ Ņа ĐŋĐž-ĐŗĐžĐģĐĩĐŧи ĐžŅ ĐŋОСвОĐģĐĩĐŊĐžŅĐž Са ŅŅŅвŅŅа." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ФаКĐģОвĐĩŅĐĩ ŅĐĩ ĐŋŅĐĩŅŅŅŅваŅ, иСŅаĐēаКŅĐĩ." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po new file mode 100644 index 00000000000..76af85b64d8 --- /dev/null +++ b/l10n/bn_BD/core.po @@ -0,0 +1,580 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Shubhra Paul <paul_shubhra@yahoo.com>, 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 09:32+0000\n" +"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:84 +#, php-format +msgid "User %s shared a file with you" +msgstr "%s āύāĻžāĻŽā§āϰ āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ āĻāĻĒāύāĻžāϰ āϏāĻžāĻĨā§ āĻāĻāĻāĻž āĻĢāĻžāĻāϞ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰā§āĻā§āύ" + +#: ajax/share.php:86 +#, php-format +msgid "User %s shared a folder with you" +msgstr "%s āύāĻžāĻŽā§āϰ āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ āĻāĻĒāύāĻžāϰ āϏāĻžāĻĨā§ āĻāĻāĻāĻž āĻĢā§āϞā§āĻĄāĻžāϰ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰā§āĻā§āύ" + +#: ajax/share.php:88 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:90 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "āĻā§āϝāĻžāĻā§āĻāϰāĻŋāϰ āϧāϰāĻŖāĻāĻŋ āĻĒā§āϰāĻĻāĻžāύ āĻāϰāĻž āĻšā§ āύāĻŋāĨ¤" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "āϝā§āĻ āĻāϰāĻžāϰ āĻŽāϤ āĻā§āύ āĻā§āϝāĻžāĻā§āĻāϰāĻŋ āύā§āĻ ?" + +#: ajax/vcategories/add.php:37 +msgid "This category already exists: " +msgstr "āĻāĻ āĻā§āϝāĻžāĻā§āĻāϰāĻŋāĻāĻŋ āĻŦāĻŋāĻĻā§āϝāĻŽāĻžāύāĻ" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "āĻ
āĻŦāĻā§āĻā§āĻā§āϰ āϧāϰāĻŖāĻāĻŋ āĻĒā§āϰāĻĻāĻžāύ āĻāϰāĻž āĻšā§ āύāĻŋāĨ¤" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "āĻĒā§āϰāĻŋā§āϤ⧠%s āϝā§āĻ āĻāϰāϤ⧠āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§āĨ¤" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "āĻŽā§āĻā§ āĻĢā§āϞāĻžāϰ āĻāύā§āϝ āĻā§āύ āĻā§āϝāĻžāĻā§āĻāϰāĻŋ āύāĻŋāϰā§āĻŦāĻžāĻāύ āĻāϰāĻž āĻšā§ āύāĻŋāĨ¤" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "āĻĒā§āϰāĻŋā§ āĻĨā§āĻā§ %s āϏāϰāĻŋā§ā§ āĻĢā§āϞāϤ⧠āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§āĨ¤" + +#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 +msgid "Settings" +msgstr "āύāĻŋā§āĻžāĻŽāĻāϏāĻŽā§āĻš" + +#: js/js.js:704 +msgid "seconds ago" +msgstr "āϏā§āĻā§āύā§āĻĄ āĻĒā§āϰā§āĻŦā§" + +#: js/js.js:705 +msgid "1 minute ago" +msgstr "1 āĻŽāĻŋāύāĻŋāĻ āĻĒā§āϰā§āĻŦā§" + +#: js/js.js:706 +msgid "{minutes} minutes ago" +msgstr "{minutes} āĻŽāĻŋāύāĻŋāĻ āĻĒā§āϰā§āĻŦā§" + +#: js/js.js:707 +msgid "1 hour ago" +msgstr "1 āĻāύā§āĻāĻž āĻĒā§āϰā§āĻŦā§" + +#: js/js.js:708 +msgid "{hours} hours ago" +msgstr "{hours} āĻāύā§āĻāĻž āĻĒā§āϰā§āĻŦā§" + +#: js/js.js:709 +msgid "today" +msgstr "āĻāĻ" + +#: js/js.js:710 +msgid "yesterday" +msgstr "āĻāϤāĻāĻžāϞ" + +#: js/js.js:711 +msgid "{days} days ago" +msgstr "{days} āĻĻāĻŋāύ āĻĒā§āϰā§āĻŦā§" + +#: js/js.js:712 +msgid "last month" +msgstr "āĻāϤāĻŽāĻžāϏ" + +#: js/js.js:713 +msgid "{months} months ago" +msgstr "{months} āĻŽāĻžāϏ āĻĒā§āϰā§āĻŦā§" + +#: js/js.js:714 +msgid "months ago" +msgstr "āĻŽāĻžāϏ āĻĒā§āϰā§āĻŦā§" + +#: js/js.js:715 +msgid "last year" +msgstr "āĻāϤ āĻŦāĻāϰ" + +#: js/js.js:716 +msgid "years ago" +msgstr "āĻŦāĻāϰ āĻĒā§āϰā§āĻŦā§" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "āύāĻŋāϰā§āĻŦāĻžāĻāύ" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "āĻŦāĻžāϤāĻŋāϞ" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "āύāĻž" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "āĻšā§āϝāĻžāĻ" + +#: js/oc-dialogs.js:180 +msgid "Ok" +msgstr "āϤāĻĨāĻžāϏā§āϤā§" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "āĻ
āĻŦāĻā§āĻā§āĻā§āϰ āϧāϰāĻŖāĻāĻŋ āϏā§āύāĻŋāϰā§āĻĻāĻŋāώā§āĻ āύā§āĨ¤" + +#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 +msgid "Error" +msgstr "āϏāĻŽāϏā§āϝāĻž" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "āĻ
ā§āϝāĻžāĻĒā§āϰ āύāĻžāĻŽāĻāĻŋ āϏā§āύāĻŋāϰā§āĻĻāĻŋāώā§āĻ āύā§āĨ¤" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "āĻāĻŦāĻļā§āϝāĻŋāĻ {file} āĻāĻŋ āϏāĻāϏā§āĻĨāĻžāĻĒāĻŋāϤ āύā§āĻ !" + +#: js/share.js:124 js/share.js:594 +msgid "Error while sharing" +msgstr "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰāĻžāϰ āϏāĻŽā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§" + +#: js/share.js:135 +msgid "Error while unsharing" +msgstr "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻŦāĻžāϤāĻŋāϞ āĻāϰāĻžāϰ āϏāĻŽā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§" + +#: js/share.js:142 +msgid "Error while changing permissions" +msgstr "āĻ
āύā§āĻŽāϤāĻŋ āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻžāϰ āϏāĻŽā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§" + +#: js/share.js:151 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:153 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:158 +msgid "Share with" +msgstr "āϝāĻžāĻĻā§āϰ āϏāĻžāĻĨā§ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰāĻŦā§" + +#: js/share.js:163 +msgid "Share with link" +msgstr "āϞāĻŋāĻāĻ āϏāĻšāϝā§āĻā§ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ" + +#: js/share.js:166 +msgid "Password protect" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻāĻĻā§āĻŦāĻžāϰāĻž āϏā§āϰāĻā§āώāĻŋāϤ" + +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 +#: templates/verify.php:13 +msgid "Password" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ" + +#: js/share.js:172 +msgid "Email link to person" +msgstr "āĻŦā§āϝāĻā§āϤāĻŋāϰ āϏāĻžāĻĨā§ āĻ-āĻŽā§āĻāϞ āϝā§āĻā§āϤ āĻāϰ" + +#: js/share.js:173 +msgid "Send" +msgstr "āĻĒāĻžāĻ āĻžāĻ" + +#: js/share.js:177 +msgid "Set expiration date" +msgstr "āĻŽā§ā§āĻžāĻĻā§āϤā§āϤā§āϰā§āĻŖ āĻšāĻā§āĻžāϰ āϤāĻžāϰāĻŋāĻ āύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻāϰā§āύ" + +#: js/share.js:178 +msgid "Expiration date" +msgstr "āĻŽā§ā§āĻžāĻĻā§āϤā§āϤā§āϰā§āĻŖ āĻšāĻā§āĻžāϰ āϤāĻžāϰāĻŋāĻ" + +#: js/share.js:210 +msgid "Share via email:" +msgstr "āĻ-āĻŽā§āĻāϞā§āϰ āĻŽāĻžāϧā§āϝāĻŽā§ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰāĻ" + +#: js/share.js:212 +msgid "No people found" +msgstr "āĻā§āύ āĻŦā§āϝāĻā§āϤāĻŋ āĻā§āĻāĻā§ āĻĒāĻžāĻā§āĻž āĻā§āϞ āύāĻž" + +#: js/share.js:239 +msgid "Resharing is not allowed" +msgstr "āĻĒā§āύāϰāĻžā§ āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰāĻžāϰ āĻ
āύā§āĻŽāϤāĻŋ āύā§āĻ" + +#: js/share.js:275 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:296 +msgid "Unshare" +msgstr "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻŦāĻžāϤāĻŋāϞ" + +#: js/share.js:308 +msgid "can edit" +msgstr "āϏāĻŽā§āĻĒāĻžāĻĻāύāĻž āĻāϰāϤ⧠āĻĒāĻžāϰāĻŦā§" + +#: js/share.js:310 +msgid "access control" +msgstr "āĻ
āϧāĻŋāĻāĻŽā§āϝāϤāĻžāϰ āύāĻŋā§āύā§āϤā§āϰāĻŖ" + +#: js/share.js:313 +msgid "create" +msgstr "āϤā§āϰāĻŋ āĻāϰ" + +#: js/share.js:316 +msgid "update" +msgstr "āĻĒāϰāĻŋāĻŦāϰā§āϧāύ āĻāϰ" + +#: js/share.js:319 +msgid "delete" +msgstr "āĻŽā§āĻā§ āĻĢā§āϞ" + +#: js/share.js:322 +msgid "share" +msgstr "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻāϰ" + +#: js/share.js:356 js/share.js:541 +msgid "Password protected" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻāĻĻā§āĻŦāĻžāϰāĻž āϏā§āϰāĻā§āώāĻŋāϤ" + +#: js/share.js:554 +msgid "Error unsetting expiration date" +msgstr "āĻŽā§ā§āĻžāĻĻā§āϤā§āϤā§āϰā§āĻŖ āĻšāĻā§āĻžāϰ āϤāĻžāϰāĻŋāĻ āύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻŦāĻžāϤāĻŋāϞ āĻāϰāϤ⧠āϏāĻŽāϏā§āϝāĻž" + +#: js/share.js:566 +msgid "Error setting expiration date" +msgstr "āĻŽā§ā§āĻžāĻĻā§āϤā§āϤā§āϰā§āĻŖ āĻšāĻā§āĻžāϰ āϤāĻžāϰāĻŋāĻ āύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻāϰāϤ⧠āϏāĻŽāϏā§āϝāĻž" + +#: js/share.js:581 +msgid "Sending ..." +msgstr "āĻĒāĻžāĻ āĻžāύ⧠āĻšāĻā§āĻā§......" + +#: js/share.js:592 +msgid "Email sent" +msgstr "āĻ-āĻŽā§āĻāϞ āĻĒāĻžāĻ āĻžāύ⧠āĻšā§ā§āĻā§" + +#: lostpassword/controller.php:47 +msgid "ownCloud password reset" +msgstr "ownCloud āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻāϰāϤ⧠āύāĻŋāĻŽā§āύā§āĻā§āϤ āϞāĻŋāĻāĻā§ āĻā§āϞāĻŋāĻ āĻāϰā§āύ:{link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖā§āϰ āĻāύā§āϝ āĻāĻāĻāĻŋ āϞāĻŋāĻāĻ āĻ-āĻŽā§āĻāϞā§āϰ āĻŽāĻžāϧā§āϝāĻŽā§ āĻĒāĻžāĻ āĻžāύ⧠āĻšā§ā§āĻā§āĨ¤" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻ-āĻŽā§āĻāϞ āĻĒāĻžāĻ āĻžāύ⧠āĻšā§ā§āĻā§āĨ¤" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "āĻ
āύā§āϰā§āϧ āĻŦā§āϝāϰā§āĻĨ !" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖā§āϰ āĻāύā§āϝ āĻ
āύā§āϰā§āϧ" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "āĻāĻĒāύāĻžāϰ āĻā§āĻāĻļāĻŦā§āĻĻāĻāĻŋ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ āĻāϰāĻž āĻšā§ā§āĻā§" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "āĻĒā§āϰāĻŦā§āĻļ āĻĒāĻžāϤāĻžā§" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "āύāϤā§āύ āĻā§āĻāĻļāĻŦā§āĻĻ" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒā§āύāĻāύāĻŋāϰā§āϧāĻžāϰāĻŖ" + +#: strings.php:5 +msgid "Personal" +msgstr "āĻŦā§āϝāĻā§āϤāĻŋāĻāϤ" + +#: strings.php:6 +msgid "Users" +msgstr "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋāĻŦā§āύā§āĻĻ" + +#: strings.php:7 +msgid "Apps" +msgstr "āĻ
ā§āϝāĻžāĻĒāϏ" + +#: strings.php:8 +msgid "Admin" +msgstr "āĻĒā§āϰāĻļāĻžāϏāĻ" + +#: strings.php:9 +msgid "Help" +msgstr "āϏāĻšāĻžā§āĻŋāĻāĻž" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "āĻ
āϧāĻŋāĻāĻŽāύā§āϰ āĻ
āύā§āĻŽāϤāĻŋ āύā§āĻ" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "āĻā§āϞāĻžāĻāĻĄ āĻā§āĻāĻā§ āĻĒāĻžāĻā§āĻž āĻā§āϞ āύāĻž" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "āĻā§āϝāĻžāĻā§āĻāϰāĻŋ āϏāĻŽā§āĻĒāĻžāĻĻāύāĻž" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "āϝā§āĻ āĻāϰ" + +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "āύāĻŋāϰāĻžāĻĒāϤā§āϤāĻžāĻāύāĻŋāϤ āϏāϤāϰā§āĻāϤāĻž" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an <strong>admin account</strong>" +msgstr "<strong>āĻĒā§āϰāĻļāĻžāϏāĻ āĻāĻāĻžāĻāύā§āĻ</strong> āϤā§āϰāĻŋ āĻāϰ" + +#: templates/installation.php:50 +msgid "Advanced" +msgstr "āϏā§āĻāĻžāϰā§" + +#: templates/installation.php:52 +msgid "Data folder" +msgstr "āĻĄāĻžāĻāĻž āĻĢā§āϞā§āĻĄāĻžāϰ" + +#: templates/installation.php:59 +msgid "Configure the database" +msgstr "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻāύāĻĢāĻŋāĻāĻžāϰ āĻāϰ" + +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 +msgid "will be used" +msgstr "āĻŦā§āϝāĻŦāĻšā§āϤ āĻšāĻŦā§" + +#: templates/installation.php:107 +msgid "Database user" +msgstr "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ" + +#: templates/installation.php:111 +msgid "Database password" +msgstr "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻā§āĻāĻļāĻŦā§āĻĻ" + +#: templates/installation.php:115 +msgid "Database name" +msgstr "āĻĄāĻžāĻāĻžāĻŦā§āĻā§āϰ āύāĻžāĻŽ" + +#: templates/installation.php:123 +msgid "Database tablespace" +msgstr "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻā§āĻŦāĻŋāϞāϏā§āĻĒā§āϏ" + +#: templates/installation.php:129 +msgid "Database host" +msgstr "āĻĄāĻžāĻāĻžāĻŦā§āĻ āĻšā§āϏā§āĻ" + +#: templates/installation.php:134 +msgid "Finish setup" +msgstr "āϏā§āĻ-āĻāĻĒ āϏā§āϏāĻŽā§āĻĒāύā§āύ āĻāϰ" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Sunday" +msgstr "āϰāĻŦāĻŋāĻŦāĻžāϰ" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Monday" +msgstr "āϏā§āĻŽāĻŦāĻžāϰ" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Tuesday" +msgstr "āĻŽāĻā§āĻāϞāĻŦāĻžāϰ" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Wednesday" +msgstr "āĻŦā§āϧāĻŦāĻžāϰ" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Thursday" +msgstr "āĻŦā§āĻšāώā§āĻĒāϤāĻŋāĻŦāĻžāϰ" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Friday" +msgstr "āĻļā§āĻā§āϰāĻŦāĻžāϰ" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Saturday" +msgstr "āĻļāύāĻŋāĻŦāĻžāϰ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "January" +msgstr "āĻāĻžāύā§ā§āĻžāϰāĻŋ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "February" +msgstr "āĻĢā§āĻŦā§āϰā§ā§āĻžāϰāĻŋ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "March" +msgstr "āĻŽāĻžāϰā§āĻ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "April" +msgstr "āĻāĻĒā§āϰāĻŋāϞ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "May" +msgstr "āĻŽā§" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "June" +msgstr "āĻā§āύ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "July" +msgstr "āĻā§āϞāĻžāĻ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "August" +msgstr "āĻ
āĻāĻžāϏā§āĻ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "September" +msgstr "āϏā§āĻĒā§āĻā§āĻŽā§āĻŦāϰ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "October" +msgstr "āĻ
āĻā§āĻā§āĻŦāϰ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "November" +msgstr "āύāĻā§āĻŽā§āĻŦāϰ" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "December" +msgstr "āĻĄāĻŋāϏā§āĻŽā§āĻŦāϰ" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "āĻā§ā§āĻŦ āϏā§āĻŦāĻžāϏāĻŽā§āĻš āĻāĻāύ āĻāĻĒāύāĻžāϰ āĻšāĻžāϤā§āϰ āĻŽā§āĻ ā§ā§" + +#: templates/layout.user.php:45 +msgid "Log out" +msgstr "āĻĒā§āϰāϏā§āĻĨāĻžāύ" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "āĻāĻĒāύāĻžāϰ āĻā§āĻāĻļāĻŦā§āĻĻāĻāĻŋ āĻšāĻžāϰāĻŋā§ā§āĻā§āύ ?" + +#: templates/login.php:39 +msgid "remember" +msgstr "āĻŽāύ⧠āϰāĻžāĻ" + +#: templates/login.php:41 +msgid "Log in" +msgstr "āĻĒā§āϰāĻŦā§āĻļ" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "āĻāĻĒāύāĻŋ āĻĒā§āϰāϏā§āĻĨāĻžāύ āĻāϰā§āĻā§āύ" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "āĻĒā§āϰā§āĻŦāĻŦāϰā§āϤā§" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "āĻĒāϰāĻŦāϰā§āϤā§" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "āύāĻŋāϰāĻžāĻĒāϤā§āϤāĻžāĻŦāĻŋāώā§āĻ āϏāϤāϰā§āĻāĻŦāĻžāĻŖā§" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "āϝāĻžāĻāĻžāĻ āĻāϰ" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po new file mode 100644 index 00000000000..9954cd477fd --- /dev/null +++ b/l10n/bn_BD/files.po @@ -0,0 +1,279 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Shubhra Paul <paul_shubhra@yahoo.com>, 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "āĻā§āύ āϏāĻŽāϏā§āϝāĻž āύā§āĻ, āĻĢāĻžāĻāϞ āĻāĻĒāϞā§āĻĄ āϏā§āϏāĻŽā§āĻĒāύā§āύ āĻšā§ā§āĻā§" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:24 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:26 +msgid "The uploaded file was only partially uploaded" +msgstr "āĻāĻĒāϞā§āĻĄ āĻāϰāĻž āĻĢāĻžāĻāϞāĻāĻŋ āĻāĻāĻļāĻŋāĻ āĻāĻĒāϞā§āĻĄ āĻšā§ā§āĻā§" + +#: ajax/upload.php:27 +msgid "No file was uploaded" +msgstr "āĻā§āύ āĻĢāĻžāĻāϞ āĻāĻĒāϞā§āĻĄ āĻāϰāĻž āĻšā§ āύāĻŋ" + +#: ajax/upload.php:28 +msgid "Missing a temporary folder" +msgstr "āĻ
āϏā§āĻĨāĻžā§ā§ āĻĢā§āϞā§āĻĄāĻžāϰāĻāĻŋ āĻā§ā§āĻž āĻāĻŋā§ā§āĻā§ " + +#: ajax/upload.php:29 +msgid "Failed to write to disk" +msgstr "āĻĄāĻŋāϏā§āĻā§ āϞāĻŋāĻāϤ⧠āĻĒāĻžāϰāĻž āĻā§āϞ āύāĻž" + +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "āĻĢāĻžāĻāϞ" + +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +msgid "Unshare" +msgstr "āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻŦāĻžāϤāĻŋāϞ" + +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +msgid "Delete" +msgstr "āĻŽā§āĻā§ āĻĢā§āϞ" + +#: js/fileactions.js:181 +msgid "Rename" +msgstr "āĻĒā§āύāĻāύāĻžāĻŽāĻāϰāĻŖ" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "{new_name} already exists" +msgstr "{new_name} āĻāĻŋ āĻŦāĻŋāĻĻā§āϝāĻŽāĻžāύ" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "replace" +msgstr "āĻĒā§āϰāϤāĻŋāϏā§āĻĨāĻžāĻĒāύ" + +#: js/filelist.js:199 +msgid "suggest name" +msgstr "āύāĻžāĻŽ āϏā§āĻĒāĻžāϰāĻŋāĻļ āĻāϰ" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "cancel" +msgstr "āĻŦāĻžāϤāĻŋāϞ" + +#: js/filelist.js:248 +msgid "replaced {new_name}" +msgstr "{new_name} āĻĒā§āϰāϤāĻŋāϏā§āĻĨāĻžāĻĒāύ āĻāϰāĻž āĻšā§ā§āĻā§" + +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +msgid "undo" +msgstr "āĻā§āϰāĻŋā§āĻž āĻĒā§āϰāϤā§āϝāĻžāĻšāĻžāϰ" + +#: js/filelist.js:250 +msgid "replaced {new_name} with {old_name}" +msgstr "{new_name} āĻā§ {old_name} āύāĻžāĻŽā§ āĻĒā§āϰāϤāĻŋāϏā§āĻĨāĻžāĻĒāύ āĻāϰāĻž āĻšā§ā§āĻā§" + +#: js/filelist.js:282 +msgid "unshared {files}" +msgstr "{files} āĻāĻžāĻāĻžāĻāĻžāĻāĻŋ āĻŦāĻžāϤāĻŋāϞ āĻāϰ" + +#: js/filelist.js:284 +msgid "deleted {files}" +msgstr "{files} āĻŽā§āĻā§ āĻĢā§āϞāĻž āĻšā§ā§āĻā§" + +#: js/files.js:33 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:174 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:212 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:212 +msgid "Upload Error" +msgstr "āĻāĻĒāϞā§āĻĄ āĻāϰāϤ⧠āϏāĻŽāϏā§āϝāĻž" + +#: js/files.js:229 +msgid "Close" +msgstr "" + +#: js/files.js:248 js/files.js:362 js/files.js:392 +msgid "Pending" +msgstr "āĻŽā§āϞāϤā§āĻŦāĻŋ" + +#: js/files.js:268 +msgid "1 file uploading" +msgstr "ā§§ āĻāĻŋ āĻĢāĻžāĻāϞ āĻāĻĒāϞā§āĻĄ āĻāϰāĻž āĻšāĻā§āĻā§" + +#: js/files.js:271 js/files.js:325 js/files.js:340 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:343 js/files.js:376 +msgid "Upload cancelled." +msgstr "āĻāĻĒāϞā§āĻĄ āĻŦāĻžāϤāĻŋāϞ āĻāϰāĻž āĻšā§ā§āĻā§ āĨ¤" + +#: js/files.js:445 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:515 +msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +msgstr "" + +#: js/files.js:699 +msgid "{count} files scanned" +msgstr "" + +#: js/files.js:707 +msgid "error while scanning" +msgstr "āϏā§āĻā§āϝāĻžāύ āĻāϰāĻžāϰ āϏāĻŽā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§" + +#: js/files.js:780 templates/index.php:66 +msgid "Name" +msgstr "āύāĻžāĻŽ" + +#: js/files.js:781 templates/index.php:77 +msgid "Size" +msgstr "āĻāĻāĻžāϰ" + +#: js/files.js:782 templates/index.php:79 +msgid "Modified" +msgstr "āĻĒāϰāĻŋāĻŦāϰā§āϤāĻŋāϤ" + +#: js/files.js:801 +msgid "1 folder" +msgstr "" + +#: js/files.js:803 +msgid "{count} folders" +msgstr "" + +#: js/files.js:811 +msgid "1 file" +msgstr "" + +#: js/files.js:813 +msgid "{count} files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "āĻĢāĻžāĻāϞ āĻšā§āϝāĻžāύā§āĻĄāϞāĻŋāĻ" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "āĻāĻĒāϞā§āĻĄā§āϰ āϏāϰā§āĻŦā§āĻā§āĻ āĻāĻāĻžāϰ" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "āϏāĻŽā§āĻāĻžāĻŦā§āϝ āϏāϰā§āĻŦā§āĻā§āĻāĻ" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "āĻāĻāĻžāϧāĻŋāĻ āĻĢāĻžāĻāϞ āĻāĻŦāĻ āĻĢā§āϞā§āĻĄāĻžāϰ āĻĄāĻžāĻāύāϞā§āĻĄ āĻāϰāĻžāϰ āĻā§āώā§āϤā§āϰ⧠āĻāĻŦāĻļā§āϝāĻāĨ¤" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "āĻāĻŋāĻĒ āĻĄāĻžāĻāύāϞā§āĻĄ āϏāĻā§āϰāĻŋā§ āĻāϰ" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "ā§Ļ āĻāϰ āĻ
āϰā§āĻĨ āĻšāϞ⧠āĻ
āϏā§āĻŽ" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "āĻāĻŋāĻĒ āĻĢāĻžāĻāϞā§āϰ āĻāύā§āϝ āϏāϰā§āĻŦā§āĻā§āĻ āĻāύāĻĒā§āĻ" + +#: templates/admin.php:26 +msgid "Save" +msgstr "āϏāĻāϰāĻā§āώāĻŖ āĻāϰ" + +#: templates/index.php:7 +msgid "New" +msgstr "āύāϤā§āύ" + +#: templates/index.php:10 +msgid "Text file" +msgstr "āĻā§āĻā§āϏāĻ āĻĢāĻžāĻāϞ" + +#: templates/index.php:12 +msgid "Folder" +msgstr "āĻĢā§āϞā§āĻĄāĻžāϰ" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:35 +msgid "Upload" +msgstr "āĻāĻĒāϞā§āĻĄ" + +#: templates/index.php:43 +msgid "Cancel upload" +msgstr "āĻāĻĒāϞā§āĻĄ āĻŦāĻžāϤāĻŋāϞ āĻāϰ" + +#: templates/index.php:58 +msgid "Nothing in here. Upload something!" +msgstr "āĻāĻāĻžāύ⧠āĻā§āύ āĻāĻŋāĻā§āĻ āύā§āĻāĨ¤ āĻāĻŋāĻā§ āĻāĻĒāϞā§āĻĄ āĻāϰā§āύ !" + +#: templates/index.php:72 +msgid "Download" +msgstr "āĻĄāĻžāĻāύāϞā§āĻĄ" + +#: templates/index.php:104 +msgid "Upload too large" +msgstr "āĻāĻĒāϞā§āĻĄā§āϰ āĻāĻāĻžāϰ āĻ
āύā§āĻ āĻŦā§" + +#: templates/index.php:106 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:111 +msgid "Files are being scanned, please wait." +msgstr "āĻĢāĻžāĻāϞ āϏā§āĻā§āϝāĻžāύ āĻāϰāĻž āĻšāĻā§āĻā§, āĻĻā§āĻž āĻāϰ⧠āĻ
āĻĒā§āĻā§āώāĻž āĻāϰā§āύāĨ¤" + +#: templates/index.php:114 +msgid "Current scanning" +msgstr "āĻŦāϰā§āϤāĻŽāĻžāύ āϏā§āĻā§āϝāĻžāύāĻŋāĻ" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po new file mode 100644 index 00000000000..da32933e271 --- /dev/null +++ b/l10n/bn_BD/files_encryption.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "" + +#: templates/settings.php:7 +msgid "None" +msgstr "" + +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po new file mode 100644 index 00000000000..601f3807ce2 --- /dev/null +++ b/l10n/bn_BD/files_external.po @@ -0,0 +1,120 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:434 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:435 +msgid "" +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "āĻĒā§āϰāĻļāĻžāϏāĻ" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "āĻā§āώā§āĻ ā§" + +#: templates/settings.php:95 +msgid "Users" +msgstr "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋāĻŦā§āύā§āĻĻ" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "āĻŽā§āĻā§ āĻĢā§āϞ" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po new file mode 100644 index 00000000000..69c55d62484 --- /dev/null +++ b/l10n/bn_BD/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "āĻĒāĻžāĻ āĻžāĻ" + +#: templates/public.php:17 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:19 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:22 templates/public.php:38 +msgid "Download" +msgstr "āĻĄāĻžāĻāύāϞā§āĻĄ" + +#: templates/public.php:37 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:43 +msgid "web services under your control" +msgstr "āĻā§ā§āĻŦ āϏā§āĻŦāĻžāϏāĻŽā§āĻš āĻāĻāύ āĻāĻĒāύāĻžāϰ āĻšāĻžāϤā§āϰ āĻŽā§āĻ ā§ā§" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po new file mode 100644 index 00000000000..9f543cad59e --- /dev/null +++ b/l10n/bn_BD/files_versions.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:7 +msgid "Expire all versions" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:10 +msgid "This will delete all existing backup versions of your files" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "āϏāĻā§āϰāĻŋā§" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po new file mode 100644 index 00000000000..184ae9bb05d --- /dev/null +++ b/l10n/bn_BD/lib.po @@ -0,0 +1,152 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:287 +msgid "Help" +msgstr "āϏāĻšāĻžā§āĻŋāĻāĻž" + +#: app.php:294 +msgid "Personal" +msgstr "āĻŦā§āϝāĻā§āϤāĻŋāĻāϤ" + +#: app.php:299 +msgid "Settings" +msgstr "āύāĻŋā§āĻžāĻŽāĻāϏāĻŽā§āĻš" + +#: app.php:304 +msgid "Users" +msgstr "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋāĻŦā§āύā§āĻĻ" + +#: app.php:311 +msgid "Apps" +msgstr "āĻ
ā§āϝāĻžāĻĒāϏ" + +#: app.php:313 +msgid "Admin" +msgstr "āĻĒā§āϰāĻļāĻžāϏāĻ" + +#: files.php:365 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:366 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:366 files.php:391 +msgid "Back to Files" +msgstr "" + +#: files.php:390 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:64 json.php:77 json.php:89 +msgid "Authentication error" +msgstr "āύāĻŋāĻļā§āĻāĻŋāϤāĻāϰāĻŖā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "āĻĢāĻžāĻāϞ" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: template.php:103 +msgid "seconds ago" +msgstr "āϏā§āĻā§āύā§āĻĄ āĻĒā§āϰā§āĻŦā§" + +#: template.php:104 +msgid "1 minute ago" +msgstr "1 āĻŽāĻŋāύāĻŋāĻ āĻĒā§āϰā§āĻŦā§" + +#: template.php:105 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:106 +msgid "1 hour ago" +msgstr "1 āĻāύā§āĻāĻž āĻĒā§āϰā§āĻŦā§" + +#: template.php:107 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:108 +msgid "today" +msgstr "āĻāĻ" + +#: template.php:109 +msgid "yesterday" +msgstr "āĻāϤāĻāĻžāϞ" + +#: template.php:110 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:111 +msgid "last month" +msgstr "āĻāϤāĻŽāĻžāϏ" + +#: template.php:112 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:113 +msgid "last year" +msgstr "āĻāϤ āĻŦāĻāϰ" + +#: template.php:114 +msgid "years ago" +msgstr "āĻŦāĻāϰ āĻĒā§āϰā§āĻŦā§" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po new file mode 100644 index 00000000000..de192ed72c9 --- /dev/null +++ b/l10n/bn_BD/settings.po @@ -0,0 +1,272 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Shubhra Paul <paul_shubhra@yahoo.com>, 2013. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 09:43+0000\n" +"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n" +"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "āĻ
ā§āϝāĻžāĻĒāϏā§āĻā§āϰ āĻĨā§āĻā§ āϤāĻžāϞāĻŋāĻāĻž āϞā§āĻĄ āĻāϰāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "āĻā§āώā§āĻ ā§āĻāĻŋ āĻŦāĻŋāĻĻā§āϝāĻŽāĻžāύ" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "āĻā§āώā§āĻ ā§ āϝā§āĻ āĻāϰāϤ⧠āĻĒāĻžāϰāĻž āĻā§āϞ āύāĻž" + +#: ajax/enableapp.php:12 +msgid "Could not enable app. " +msgstr "āĻ
ā§āϝāĻžāĻĒ āϏāĻā§āϰāĻŋā§ āĻāϰāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "āĻ-āĻŽā§āĻāϞ āϏāĻāϰāĻā§āώāĻŖ āĻāϰāĻž āĻšā§ā§āĻā§" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "āĻ-āĻŽā§āĻāϞāĻāĻŋ āϏāĻ āĻŋāĻ āύā§" + +#: ajax/openid.php:13 +msgid "OpenID Changed" +msgstr "OpenID āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻž āĻšā§ā§āĻā§" + +#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "āĻ
āύāύā§āĻŽā§āĻĻāĻŋāϤ āĻ
āύā§āϰā§āϧ" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "āĻā§āώā§āĻ ā§ āĻŽā§āĻā§ āĻĢā§āϞāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž" + +#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "āύāĻŋāĻļā§āĻāĻŋāϤāĻāϰāĻŖā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ āĻŽā§āĻā§ āĻĢā§āϞāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "āĻāĻžāώāĻž āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻž āĻšā§ā§āĻā§" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: js/apps.js:28 js/apps.js:67 +msgid "Disable" +msgstr "āύāĻŋāώā§āĻā§āϰāĻŋā§" + +#: js/apps.js:28 js/apps.js:55 +msgid "Enable" +msgstr "āϏāĻā§āϰāĻŋā§" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "āϏāĻāϰāĻā§āώāĻŖ āĻāϰāĻž āĻšāĻā§āĻā§...." + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "_āĻāĻžāώāĻžāϰ_āύāĻžāĻŽ_" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "āĻāĻĒāύāĻžāϰ āĻ
ā§āϝāĻžāĻĒāĻāĻŋ āϝā§āĻ āĻāϰā§āύ" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "āĻāϰāĻ āĻ
ā§āϝāĻžāĻĒ" + +#: templates/apps.php:27 +msgid "Select an App" +msgstr "āĻ
ā§āϝāĻžāĻĒ āύāĻŋāϰā§āĻŦāĻžāĻāύ āĻāϰā§āύ" + +#: templates/apps.php:31 +msgid "See application page at apps.owncloud.com" +msgstr "āĻ
ā§āϝāĻžāĻĒā§āϞāĻŋāĻā§āϏāύ āĻĒāĻžāϤāĻžāĻāĻŋ āĻĻā§āĻā§āύ āĻāĻāĻžāύ⧠apps.owncloud.com" + +#: templates/apps.php:32 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "<span class=\"licence\"></span>-āϞāĻžāĻāϏā§āύā§āϏ āĻāϰāĻŋā§ā§āĻā§āύ <span class=\"author\"></span>" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "āĻĢā§āϰāĻžāĻŽ" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "āĻŦāĻžāĻāĻā§āϰā§āϝāĻžāĻāĻžāϰ" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "āĻŦāĻžāĻŖāĻŋāĻā§āϝāĻŋāĻ āϏāĻžāĻĒā§āϰā§āĻ" + +#: templates/personal.php:8 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "āĻā§āϞāĻžā§ā§āύā§āĻ" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "āĻĄā§āϏā§āĻāĻāĻĒ āĻā§āϞāĻžā§ā§āύā§āĻ āĻĄāĻžāĻāύāϞā§āĻĄ āĻāϰā§āύ" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 +msgid "Password" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ" + +#: templates/personal.php:22 +msgid "Your password was changed" +msgstr "āĻāĻĒāύāĻžāϰ āĻā§āĻāĻļāĻŦā§āĻĻāĻāĻŋ āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻž āĻšā§ā§āĻā§" + +#: templates/personal.php:23 +msgid "Unable to change your password" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž" + +#: templates/personal.php:24 +msgid "Current password" +msgstr "āĻŦāϰā§āϤāĻŽāĻžāύ āĻā§āĻāĻļāĻŦā§āĻĻ" + +#: templates/personal.php:25 +msgid "New password" +msgstr "āύāϤā§āύ āĻā§āĻāĻļāĻŦā§āĻĻ" + +#: templates/personal.php:26 +msgid "show" +msgstr "āĻĒā§āϰāĻĻāϰā§āĻļāύ" + +#: templates/personal.php:27 +msgid "Change password" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰ" + +#: templates/personal.php:33 +msgid "Email" +msgstr "āĻ-āĻŽā§āĻāϞ" + +#: templates/personal.php:34 +msgid "Your email address" +msgstr "āĻāĻĒāύāĻžāϰ āĻ-āĻŽā§āĻāϞ āĻ āĻŋāĻāĻžāύāĻž" + +#: templates/personal.php:35 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:41 templates/personal.php:42 +msgid "Language" +msgstr "āĻāĻžāώāĻž" + +#: templates/personal.php:47 +msgid "Help translate" +msgstr "āĻ
āύā§āĻŦāĻžāĻĻ āĻāϰāϤ⧠āϏāĻžāĻšāĻžāϝā§āϝ āĻāϰā§āύ" + +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "āϤā§āϰāĻŋ āĻāϰā§āĻā§āύ <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, āϝāĻžāϰ <a href=\"https://github.com/owncloud\" target=\"_blank\">āĻā§āϏ āĻā§āĻĄ</a> <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr>āĻāϰ āĻ
āϧā§āύ⧠āϞāĻžāĻā§āϏāύā§āϏāĻā§āϤ</a>." + +#: templates/users.php:21 templates/users.php:81 +msgid "Name" +msgstr "āύāĻžāĻŽ" + +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 +msgid "Groups" +msgstr "āĻā§āώā§āĻ ā§" + +#: templates/users.php:32 +msgid "Create" +msgstr "āϤā§āϰāĻŋ āĻāϰ" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 +msgid "Other" +msgstr "āĻ
āύā§āϝāĻžāύā§āϝ" + +#: templates/users.php:85 templates/users.php:117 +msgid "Group Admin" +msgstr "āĻā§āώā§āĻ ā§ āĻĒā§āϰāĻļāĻžāϏāύ" + +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" + +#: templates/users.php:161 +msgid "Delete" +msgstr "āĻŽā§āĻā§ āĻĢā§āϞ" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po new file mode 100644 index 00000000000..509354b9d66 --- /dev/null +++ b/l10n/bn_BD/user_ldap.po @@ -0,0 +1,183 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" +" not work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Host" +msgstr "" + +#: templates/settings.php:15 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:16 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:16 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:17 +msgid "User DN" +msgstr "" + +#: templates/settings.php:17 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:18 +msgid "Password" +msgstr "āĻā§āĻāĻļāĻŦā§āĻĻ" + +#: templates/settings.php:18 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:19 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:20 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:20 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:20 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:21 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:21 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:21 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:24 +msgid "Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:26 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:27 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:28 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:28 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:29 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:30 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:30 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:31 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:31 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:32 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:34 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:36 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:37 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:39 +msgid "Help" +msgstr "āϏāĻšāĻžā§āĻŋāĻāĻž" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po new file mode 100644 index 00000000000..3aa6ccffca6 --- /dev/null +++ b/l10n/bn_BD/user_webdavauth.po @@ -0,0 +1,29 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_BD\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 478d4fded6c..c3c57eb4cd1 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -8,13 +8,14 @@ # <josep_tomas@hotmail.com>, 2012. # Josep Tomà s <jtomas.binsoft@gmail.com>, 2012. # <rcalvoi@yahoo.com>, 2011-2012. +# <sacoo2@hotmail.com>, 2013. 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:57+0000\n" -"Last-Translator: Josep Tomà s <jtomas.binsoft@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 14:32+0000\n" +"Last-Translator: aseques <sacoo2@hotmail.com>\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" @@ -22,46 +23,58 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "No s'ha carregat cap fitxer. Error desconegut" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer nomÊs s'ha pujat parcialment" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "S'ha perdut un fitxer temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "No hi ha prou espai disponible" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Directori no và lid." + #: appinfo/app.php:10 msgid "Files" msgstr "Fitxers" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Deixa de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Suprimeix" @@ -69,39 +82,39 @@ msgstr "Suprimeix" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "substitueix" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancel¡la" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "s'ha substituït {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "desfÊs" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "no compartits {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "eliminats {files}" @@ -111,80 +124,80 @@ msgid "" "allowed." msgstr "El nÃŗm no Ês và lid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "s'estan generant fitxers ZIP, pot trigar una estona." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Error en la pujada" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Tanca" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendents" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} fitxers en pujada" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "La pujada s'ha cancel¡lat." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "El nom de la carpeta no Ês và lid. L'Ãēs de \"Compartit\" està reservat per a OwnCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} fitxers escannejats" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "error durant l'escaneig" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Mida" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificat" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} fitxers" @@ -196,27 +209,27 @@ msgstr "GestiÃŗ de fitxers" msgid "Maximum upload size" msgstr "Mida mà xima de pujada" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "mà xim possible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessari per fitxers mÃēltiples i baixada de carpetes" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activa la baixada ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 Ês sense lÃmit" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Mida mà xima d'entrada per fitxers ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Desa" @@ -244,28 +257,28 @@ msgstr "Puja" msgid "Cancel upload" msgstr "Cancel¡la la pujada" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Res per aquÃ. Pugeu alguna cosa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Baixa" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "La pujada Ês massa gran" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida mà xima de pujada del servidor" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 03cdc399cfb..85b991ab12e 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 07:40+0000\n" +"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -249,15 +249,15 @@ msgstr "Crea" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Emmagatzemament per defecte" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Il¡limitat" #: templates/users.php:60 templates/users.php:153 msgid "Other" -msgstr "Altre" +msgstr "Un altre" #: templates/users.php:85 templates/users.php:117 msgid "Group Admin" @@ -265,11 +265,11 @@ msgstr "Grup Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Emmagatzemament" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Per defecte" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index ae2e4682356..9732a89e24c 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: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 05:15+0000\n" -"Last-Translator: TomÃĄÅĄ ChvÃĄtal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +20,58 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Soubor nebyl odeslÃĄn. NeznÃĄmÃĄ chyba" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslÃĄn ÃēspÄÅĄnÄ" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslÃĄn pouze ÄÃĄsteÄnÄ" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ÅŊÃĄdnÃŊ soubor nebyl odeslÃĄn" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Chybà adresÃĄÅ pro doÄasnÊ soubory" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ZÃĄpis na disk selhal" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Soubory" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "ZruÅĄit sdÃlenÃ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Smazat" @@ -67,39 +79,39 @@ msgstr "Smazat" msgid "Rename" msgstr "PÅejmenovat" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} jiÅž existuje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "nahradit" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "navrhnout nÃĄzev" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "zruÅĄit" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "nahrazeno {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "zpÄt" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "sdÃlenà zruÅĄeno pro {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "smazÃĄno {files}" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "NeplatnÃŊ nÃĄzev, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generuji ZIP soubor, můŞe to nÄjakou dobu trvat." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Chyba odesÃlÃĄnÃ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ZavÅÃt" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "ÄekajÃcÃ" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "odesÃlÃĄ se 1 soubor" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "odesÃlÃĄm {count} souborů" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "OdesÃlÃĄnà zruÅĄeno." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "NeplatnÃŊ nÃĄzev sloÅžky. PouÅžità nÃĄzvu \"Shared\" je rezervovÃĄno pro internà ÃēÅžità sluÅžbou Owncloud." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "prozkoumÃĄno {count} souborů" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "chyba pÅi prohledÃĄvÃĄnÃ" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "NÃĄzev" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Velikost" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ZmÄnÄno" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 sloÅžka" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} sloÅžky" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 soubor" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} soubory" @@ -194,27 +206,27 @@ msgstr "ZachÃĄzenà se soubory" msgid "Maximum upload size" msgstr "MaximÃĄlnà velikost pro odesÃlÃĄnÃ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "nejvÄtÅĄÃ moÅžnÃĄ: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "PotÅebnÊ pro vÃce-souborovÊ stahovÃĄnà a stahovÃĄnà sloÅžek." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Povolit ZIP-stahovÃĄnÃ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 znamenÃĄ bez omezenÃ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "MaximÃĄlnà velikost vstupu pro ZIP soubory" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "UloÅžit" @@ -242,28 +254,28 @@ msgstr "Odeslat" msgid "Cancel upload" msgstr "ZruÅĄit odesÃlÃĄnÃ" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ÅŊÃĄdnÃŊ obsah. Nahrajte nÄco." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "StÃĄhnout" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "OdeslanÃŊ soubor je pÅÃliÅĄ velkÃŊ" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, kterÊ se snaÅžÃte odeslat, pÅekraÄujà limit velikosti odesÃlÃĄnà na tomto serveru." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledÃĄvajÃ, prosÃm Äekejte." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "AktuÃĄlnà prohledÃĄvÃĄnÃ" diff --git a/l10n/da/files.po b/l10n/da/files.po index 185ea7031e7..0678675170f 100644 --- a/l10n/da/files.po +++ b/l10n/da/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: 2012-12-24 00:10+0100\n" -"PO-Revision-Date: 2012-12-23 21:45+0000\n" -"Last-Translator: cronner <cronner@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,37 +25,49 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ingen fil blev uploadet. Ukendt fejl." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" @@ -199,27 +211,27 @@ msgstr "FilhÃĨndtering" msgid "Maximum upload size" msgstr "Maksimal upload-størrelse" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mulige: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Muliggør ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er ubegrÃĻnset" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse pÃĨ ZIP filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gem" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index a4196d62a07..3c2c03dfdaf 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,16 +10,16 @@ # Ole Holm Frandsen <froksen@gmail.com>, 2012. # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. # <simon@rosmi.dk>, 2012. -# <sr@ybnet.dk>, 2012. +# <sr@ybnet.dk>, 2012-2013. # Thomas Tanghus <>, 2012. # Thomas Tanghus <thomas@tanghus.net>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 21:06+0000\n" +"Last-Translator: ressel <sr@ybnet.dk>\n" "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" @@ -254,11 +254,11 @@ msgstr "Ny" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Standard opbevaring" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "UbegrÃĻnset" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -270,11 +270,11 @@ msgstr "Gruppe Administrator" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Opbevaring" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Standard" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/de/files.po b/l10n/de/files.po index 7dc41332e04..03474bf54bf 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -20,13 +20,14 @@ # <thomas.mueller@tmit.eu>, 2012. # Thomas MÃŧller <>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012. +# <transifex.com@mail.simonzoellner.de>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-12 00:12+0100\n" -"PO-Revision-Date: 2012-12-11 09:27+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 21:11+0000\n" +"Last-Translator: Linutux <transifex.com@mail.simonzoellner.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,37 +35,49 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datei fehlerfrei hochgeladen." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Temporärer Ordner fehlt." -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Nicht genug Speicherplatz verfÃŧgbar" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "UngÃŧltiges Verzeichnis." + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" @@ -127,76 +140,76 @@ msgstr "UngÃŧltiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:209 +#: js/files.js:212 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:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "SchlieÃen" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} Dateien werden hochgeladen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:442 +#: js/files.js:445 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:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "UngÃŧltiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Name" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "GrÃļÃe" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 Datei" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} Dateien" @@ -208,27 +221,27 @@ msgstr "Dateibehandlung" msgid "Maximum upload size" msgstr "Maximale Upload-GrÃļÃe" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maximal mÃļglich:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "FÃŧr Mehrfachdatei- und Ordnerdownloads benÃļtigt:" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale GrÃļÃe fÃŧr ZIP-Dateien" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Speichern" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 035e733deb4..ff895f0d9c5 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -4,7 +4,7 @@ # # Translators: # <admin@s-goecker.de>, 2012. -# <a.tangemann@web.de>, 2012. +# <a.tangemann@web.de>, 2012-2013. # <blobbyjj@ymail.com>, 2012. # I Robot <owncloud-bot@tmit.eu>, 2012. # I Robot <thomas.mueller@tmit.eu>, 2012. @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-12 00:12+0100\n" -"PO-Revision-Date: 2012-12-11 09:27+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 21:31+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,37 +35,49 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Der temporäre Ordner fehlt." -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Nicht genug Speicher verfÃŧgbar" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "UngÃŧltiges Verzeichnis." + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" @@ -128,76 +140,76 @@ msgstr "UngÃŧltiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:209 +#: js/files.js:212 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:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "SchlieÃen" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} Dateien wurden hochgeladen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:442 +#: js/files.js:445 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:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "UngÃŧltiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} Dateien wurden gescannt" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Name" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "GrÃļÃe" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 Datei" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} Dateien" @@ -209,27 +221,27 @@ msgstr "Dateibehandlung" msgid "Maximum upload size" msgstr "Maximale Upload-GrÃļÃe" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maximal mÃļglich:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "FÃŧr Mehrfachdatei- und Ordnerdownloads benÃļtigt:" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-Download aktivieren" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 bedeutet unbegrenzt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale GrÃļÃe fÃŧr ZIP-Dateien" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Speichern" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index cad62cf5996..4886219fbce 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 00:21+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-03 16:09+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "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" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index 9cb13ec43ec..aabd937409d 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.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-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 23:03+0000\n" -"Last-Translator: multimill <multimill@gmail.com>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-03 16:07+0000\n" +"Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index 5129f6e33ff..bfb66198a04 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.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-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 13:50+0000\n" -"Last-Translator: Konstantinos Tzanidis <tzanidis@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -24,37 +24,49 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ÎÎĩÎŊ ÎąÎŊÎβΡÎēÎĩ ÎēÎŦĪÎŋΚÎŋ ÎąĪĪÎĩίÎŋ. ÎÎŗÎŊĪĪĪÎŋ ĪĪÎŦÎģÎŧÎą" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ÎÎĩÎŊ Ī
ĪÎŦĪĪÎĩΚ ĪĪÎŦÎģÎŧÎą, ĪÎŋ ÎąĪĪÎĩίÎŋ ÎĩĪĪÎŦÎģÎĩΚ ÎĩĪΚĪĪ
ĪĪĪ" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ΤÎŋ ÎąĪÎĩĪĪÎąÎģÎŧÎÎŊÎŋ ÎąĪĪÎĩίÎŋ ΞÎĩĪÎĩĪÎŊÎŦ ĪΡÎŊ ÎŋÎ´ÎˇÎŗÎ¯Îą upload_max_filesize ĪĪÎŋ php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ΤÎŋ ÎąĪĪÎĩίÎŋ ÎĩĪĪÎŦÎģÎĩΚ ÎŧĪÎŊÎŋ ÎĩÎŊ ÎŧÎĪÎĩΚ" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ÎÎąÎŊÎÎŊÎą ÎąĪĪÎĩίÎŋ δÎĩÎŊ ĪĪÎŦÎģθΡÎēÎĩ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ÎÎĩίĪÎĩΚ Îŋ ĪĪÎŋĪĪĪΚÎŊĪĪ ĪÎŦÎēÎĩÎģÎŋĪ" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ÎĪÎŋĪĪ
ĪÎ¯Îą ÎĩÎŗÎŗĪÎąĪÎŽĪ ĪĪÎŋ δίĪÎēÎŋ" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ÎĪĪÎĩÎ¯Îą" @@ -198,27 +210,27 @@ msgstr "ÎΚιĪÎĩίĪΚĪΡ ÎąĪĪÎĩίĪÎŊ" msgid "Maximum upload size" msgstr "ÎÎÎŗÎšĪĪÎŋ ÎŧÎÎŗÎĩθÎŋĪ ÎąĪÎŋĪĪÎŋÎģÎŽĪ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ÎŧÎÎŗÎšĪĪÎŋ δĪ
ÎŊÎąĪĪ:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "ÎĪÎąĪÎąÎ¯ĪΡĪÎŋ ÎŗÎšÎą ÎēÎąĪÎβιĪÎŧÎą ĪÎŋÎģÎģÎąĪÎģĪÎŊ ÎąĪĪÎĩίĪÎŊ ÎēιΚ ĪÎąÎēÎÎģĪÎŊ" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ÎÎŊÎĩĪÎŗÎŋĪÎŋÎ¯ÎˇĪΡ ÎēÎąĪÎĩβÎŦĪÎŧÎąĪÎŋĪ ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ÎŗÎšÎą ÎąĪÎĩĪΚĪĪΚĪĪÎŋ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ÎÎÎŗÎšĪĪÎŋ ÎŧÎÎŗÎĩθÎŋĪ ÎŗÎšÎą ÎąĪĪÎĩÎ¯Îą ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ÎĪÎŋθΎÎēÎĩĪ
ĪΡ" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 98d1dba639f..d91d11781c7 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 22:06+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -19,46 +19,58 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Neniu dosiero alÅutiÄis. Nekonata eraro." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alÅutiÄis sukcese" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "La alÅutita dosiero nur parte alÅutiÄis" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Neniu dosiero estas alÅutita" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mankas tempa dosierujo" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dosieroj" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Malkunhavigi" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Forigi" @@ -66,39 +78,39 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "anstataÅigi" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "anstataÅiÄis {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "malfari" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "anstataÅiÄis {new_name} per {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "malkunhaviÄis {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "foriÄis {files}" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "Nevalida nomo: â\\â, â/â, â<â, â>â, â:â, â\"â, â|â, â?â kaj â*â ne permesatas." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generanta ZIP-dosiero, Äi povas daÅri iom da tempo" -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "AlÅuta eraro" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Fermi" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 dosiero estas alÅutata" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} dosieroj alÅutatas" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "La alÅuto nuliÄis." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nevalida nomo de dosierujo. Uzo de âSharedâ rezervitas de Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} dosieroj skaniÄis" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "eraro dum skano" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nomo" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Grando" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modifita" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} dosierujoj" @@ -193,27 +205,27 @@ msgstr "Dosieradministro" msgid "Maximum upload size" msgstr "Maksimuma alÅutogrando" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. ebla: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necesa por elÅuto de pluraj dosieroj kaj dosierujoj." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Kapabligi ZIP-elÅuton" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 signifas senlime" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimuma enirgrando por ZIP-dosieroj" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Konservi" @@ -241,28 +253,28 @@ msgstr "AlÅuti" msgid "Cancel upload" msgstr "Nuligi alÅuton" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nenio estas Äi tie. AlÅutu ion!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ElÅuti" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ElÅuto tro larÄa" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alÅuti, transpasas la maksimuman grandon por dosieralÅutoj en Äi tiu servilo." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/es/files.po b/l10n/es/files.po index 8925d2d93df..beefcf059f4 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -4,6 +4,7 @@ # # Translators: # Agustin Ferrario <>, 2012. +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013. # <devianpctek@gmail.com>, 2012. # Javier Llorente <javier@opensuse.org>, 2012. # <juanma@kde.org.ar>, 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-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 20:49+0000\n" -"Last-Translator: xsergiolpx <sergioballesterossolanas@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 13:10+0000\n" +"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\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" @@ -24,46 +25,58 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Fallo no se subiÃŗ el fichero" + +#: ajax/upload.php:21 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:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentas subir solo se subiÃŗ parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "No se ha subido ningÃēn archivo" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "La escritura en disco ha fallado" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "No hay suficiente espacio disponible" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Directorio invalido." + #: appinfo/app.php:10 msgid "Files" msgstr "Archivos" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Eliminar" @@ -71,39 +84,39 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "reemplazado {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "deshacer" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "{files} descompartidos" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} eliminados" @@ -113,80 +126,80 @@ msgid "" "allowed." msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no estÃĄn permitidos " -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generando un fichero ZIP, puede llevar un tiempo." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "cerrrar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendiente" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "error escaneando" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nombre" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "TamaÃąo" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 archivo" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} archivos" @@ -198,27 +211,27 @@ msgstr "Tratamiento de archivos" msgid "Maximum upload size" msgstr "TamaÃąo mÃĄximo de subida" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "mÃĄx. posible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Se necesita para descargas multi-archivo y de carpetas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar descarga en ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 es ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "TamaÃąo mÃĄximo para archivos ZIP de entrada" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" @@ -246,28 +259,28 @@ msgstr "Subir" msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Aquà no hay nada. ÂĄSube algo!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Descargar" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "El archivo es demasiado grande" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estÃĄs intentando subir sobrepasan el tamaÃąo mÃĄximo permitido por este servidor." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Se estÃĄn escaneando los archivos, por favor espere." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Ahora escaneando" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index f00739d659a..16b141f0822 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 15:11+0000\n" +"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\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" @@ -22,26 +22,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "El usurario %s compartiÃŗ un archivo con vos." #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "El usurario %s compartiÃŗ una carpeta con vos." #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "El usuario %s compartiÃŗ el archivo \"%s\" con vos. EstÃĄ disponible para su descarga aquÃ: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "El usuario %s compartiÃŗ el archivo \"%s\" con vos. EstÃĄ disponible para su descarga aquÃ: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "El tipo de objeto no esta especificado. " #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Error" @@ -176,7 +176,7 @@ msgstr "El nombre de la aplicaciÃŗn no esta especificado." msgid "The required file {file} is not installed!" msgstr "ÂĄEl archivo requerido {file} no estÃĄ instalado!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error al compartir" @@ -204,22 +204,22 @@ msgstr "Compartir con" msgid "Share with link" msgstr "Compartir con link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Proteger con contraseÃąa " -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "ContraseÃąa" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Enviar el link por e-mail." #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/share.js:177 msgid "Set expiration date" @@ -273,25 +273,25 @@ msgstr "borrar" msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegido por contraseÃąa" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de caducidad" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email enviado" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -313,8 +313,8 @@ msgstr "Reiniciar envÃo de email." msgid "Request failed!" msgstr "Error en el pedido!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nombre de usuario" @@ -403,44 +403,44 @@ msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde msgid "Create an <strong>admin account</strong>" msgstr "Crear una <strong>cuenta de administrador</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "se utilizarÃĄn" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "ContraseÃąa de la base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Completar la instalaciÃŗn" @@ -528,29 +528,29 @@ msgstr "servicios web sobre los que tenÊs control" msgid "Log out" msgstr "Cerrar la sesiÃŗn" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "ÂĄEl inicio de sesiÃŗn automÃĄtico fue rechazado!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "ÂĄSi no cambiaste tu contraseÃąa recientemente, puede ser que tu cuenta estÊ comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Por favor, cambiÃĄ tu contraseÃąa para fortalecer nuevamente la seguridad de tu cuenta." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "ÂŋPerdiste tu contraseÃąa?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "recordame" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 551f3b477be..8743c1e27a1 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012. +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012-2013. # <claudio.tessone@gmail.com>, 2012. 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 00:37+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 13:11+0000\n" "Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -19,37 +19,49 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "El archivo no fue subido. Error desconocido" + +#: ajax/upload.php:21 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:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentÃĄs subir solo se subiÃŗ parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "El archivo no fue subido" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "No hay suficiente espacio disponible" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Directorio invalido." + #: appinfo/app.php:10 msgid "Files" msgstr "Archivos" @@ -112,76 +124,76 @@ msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no estÃĄ msgid "generating ZIP-file, it may take some time." msgstr "generando un archivo ZIP, puede llevar un tiempo." -#: js/files.js:209 +#: js/files.js:212 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:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Error al subir el archivo" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Cerrar" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendiente" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "Subiendo {count} archivos" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:442 +#: js/files.js:445 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:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nombre del directorio invÃĄlido. Usar \"Shared\" estÃĄ reservado por ownCloud." -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} archivos escaneados" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "error mientras se escaneaba" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nombre" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "TamaÃąo" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 archivo" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} archivos" @@ -193,27 +205,27 @@ msgstr "Tratamiento de archivos" msgid "Maximum upload size" msgstr "TamaÃąo mÃĄximo de subida" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "mÃĄx. posible:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Es necesario para descargas multi-archivo y de carpetas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar descarga en formato ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "TamaÃąo mÃĄximo para archivos ZIP de entrada" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 80ab2e1f1f5..4ceff26caa1 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013. # <claudio.tessone@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 05:53+0000\n" +"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\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" @@ -23,13 +24,13 @@ msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos." #: templates/settings.php:11 msgid "" "<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Advertencia:</b> El mÃŗdulo PHP LDAP necesario no estÃĄ instalado, el sistema no funcionarÃĄ. Pregunte al administrador del sistema para instalarlo." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 9c1c0fadb7b..0bf6d42f8fa 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,58 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ãhtegi faili ei laetud Ãŧles. Tundmatu viga" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ãhtegi viga pole, fail on Ãŧles laetud" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti Ãŧles ainult osaliselt" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ãhtegi faili ei laetud Ãŧles" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaÃĩnnestus" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Failid" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "LÃĩpeta jagamine" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Kustuta" @@ -66,39 +78,39 @@ msgstr "Kustuta" msgid "Rename" msgstr "Ãŧmber" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "asenda" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "loobu" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "asendatud nimega {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "tagasi" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "jagamata {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "kustutatud {files}" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-faili loomine, see vÃĩib veidi aega vÃĩtta." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Ãleslaadimise viga" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Sulge" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ootel" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 faili Ãŧleslaadimisel" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} faili Ãŧleslaadimist" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Ãleslaadimine tÃŧhistati." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud " -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} faili skännitud" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "viga skännimisel" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nimi" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Suurus" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Muudetud" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fail" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} faili" @@ -193,27 +205,27 @@ msgstr "Failide käsitlemine" msgid "Maximum upload size" msgstr "Maksimaalne Ãŧleslaadimise suurus" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. vÃĩimalik: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Vajalik mitme faili ja kausta allalaadimiste jaoks." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Luba ZIP-ina allalaadimine" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 tähendab piiramatut" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvesta" @@ -241,28 +253,28 @@ msgstr "Lae Ãŧles" msgid "Cancel upload" msgstr "TÃŧhista Ãŧleslaadimine" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi Ãŧles!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Lae alla" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Ãleslaadimine on liiga suur" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid Ãŧles laadida, Ãŧletab serveri poolt Ãŧleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index fc884c532ed..39f84f32b35 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 11:48+0000\n" -"Last-Translator: Piarres Beobide <pi@beobide.net>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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,37 +20,49 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ez da fitxategirik igo. Errore ezezaguna" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ez da arazorik izan, fitxategia ongi igo da" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Aldi baterako karpeta falta da" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fitxategiak" @@ -113,76 +125,76 @@ msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daud msgid "generating ZIP-file, it may take some time." msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" -#: js/files.js:209 +#: js/files.js:212 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:209 +#: js/files.js:212 msgid "Upload Error" msgstr "Igotzean errore bat suertatu da" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "Itxi" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Zain" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} fitxategi igotzen" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:442 +#: js/files.js:445 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:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} fitxategi eskaneatuta" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "errore bat egon da eskaneatzen zen bitartean" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Izena" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamaina" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} fitxategi" @@ -194,27 +206,27 @@ msgstr "Fitxategien kudeaketa" msgid "Maximum upload size" msgstr "Igo daitekeen gehienezko tamaina" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max, posiblea:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Gaitu ZIP-deskarga" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 mugarik gabe esan nahi du" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP fitxategien gehienezko tamaina" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gorde" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 7e13f99c90f..2a5d7c6c147 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,58 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ŲÛÚ ŲØ§ÛŲÛ ØĸŲžŲŲØ¯ ŲØ´Ø¯.ØŽØˇØ§Û ŲØ§Ø´ŲØ§Øŗ" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ŲÛÚ ØŽØˇØ§ÛÛ ŲØŦŲØ¯ ŲØ¯Ø§ØąØ¯ ŲØ§ÛŲ Ø¨Ø§ Ų
ŲŲŲÛØĒ Ø¨Ø§Øą Ú¯Ø°Ø§ØąÛ Ø´Ø¯" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Ų
ŲØ¯Ø§Øą ÚŠŲ
Û Ø§Ø˛ ŲØ§ÛŲ Ø¨Ø§ØąÚ¯Ø°Ø§ØąÛ Ø´Ø¯Ų" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ŲÛÚ ŲØ§ÛŲÛ Ø¨Ø§ØąÚ¯Ø°Ø§ØąÛ ŲØ´Ø¯Ų" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ÛÚŠ ŲžŲØ´Ų Ų
ŲŲØĒ Ú¯Ų
Ø´Ø¯Ų Ø§ØŗØĒ" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ŲŲØ´ØĒŲ Ø¨Øą ØąŲÛ Ø¯ÛØŗÚŠ ØŗØŽØĒ ŲØ§Ų
ŲŲŲ Ø¨ŲØ¯" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ŲØ§ÛŲ ŲØ§" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "ŲžØ§ÚŠ ÚŠØąØ¯Ų" @@ -67,39 +79,39 @@ msgstr "ŲžØ§ÚŠ ÚŠØąØ¯Ų" msgid "Rename" msgstr "ØĒØēÛÛØąŲاŲ
" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "ØŦاÛÚ¯Ø˛ÛŲ" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ŲØēŲ" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "Ø¨Ø§Ø˛Ú¯Ø´ØĒ" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Ø¯Øą ØØ§Ų ØŗØ§ØŽØĒ ŲØ§ÛŲ ŲØ´ØąØ¯Ų Ų
Ų
ÚŠŲ Ø§ØŗØĒ Ø˛Ų
Ø§Ų Ø˛ÛØ§Ø¯Û Ø¨Ų ØˇŲŲ Ø¨ÛØ§ŲØŦاŲ
د" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ŲØ§ØĒŲØ§Ų Ø¯Øą Ø¨Ø§ØąÚ¯Ø°Ø§ØąÛ ÛØ§ ŲØ§ÛŲ ÛÚŠ ŲžŲØ´Ų Ø§ØŗØĒ ÛØ§ 0Ø¨Ø§ÛØĒ Ø¯Ø§ØąØ¯" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ØŽØˇØ§ Ø¯Øą Ø¨Ø§Øą Ú¯Ø°Ø§ØąÛ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Ø¨ØŗØĒŲ" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Ø¯Øą Ø§ŲØĒØ¸Ø§Øą" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Ø¨Ø§Øą Ú¯Ø°Ø§ØąÛ ŲØēŲ Ø´Ø¯" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ŲØ§Ų
" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Ø§ŲØ¯Ø§Ø˛Ų" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ØĒØēÛÛØą ÛØ§ŲØĒŲ" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -194,27 +206,27 @@ msgstr "Ø§Ø¯Ø§ØąŲ ŲžØąŲŲØ¯Ų ŲØ§" msgid "Maximum upload size" msgstr "ØØ¯Ø§ÚŠØĢØą Ø§ŲØ¯Ø§Ø˛Ų Ø¨Ø§ØąÚ¯Ø˛Ø§ØąÛ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ØØ¯Ø§ÚŠØĢØąŲ
ŲØ¯Ø§ØąŲ
Ų
ÚŠŲ:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Ø§ØØĒÛØ§ØŦ ŲžÛØ¯Ø§ ØŽŲØ§Ųد شد Ø¨ØąØ§Û ÚŲØ¯ ŲžŲØ´Ų Ų ŲžØąŲŲØ¯Ų" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ŲØšØ§Ų ØŗØ§Ø˛Û Ø¨Ø§ØąÚ¯ÛØąÛ ŲžØąŲŲØ¯Ų ŲØ§Û ŲØ´ØąØ¯Ų" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ŲØ§Ų
ØØ¯Ųد Ø§ØŗØĒ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ØØ¯Ø§ÚŠØĢØąŲ
ŲØ¯Ø§Øą Ø¨ØąØ§Û Ø¨Ø§Øą Ú¯Ø˛Ø§ØąÛ ŲžØąŲŲØ¯Ų ŲØ§Û ŲØ´ØąØ¯Ų" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Ø°ØŽÛØąŲ" @@ -242,28 +254,28 @@ msgstr "Ø¨Ø§ØąÚ¯Ø°Ø§ØąÛ" msgid "Cancel upload" msgstr "Ų
ØĒŲŲŲ ÚŠØąØ¯Ų Ø¨Ø§Øą Ú¯Ø°Ø§ØąÛ" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "اÛŲØŦا ŲÛÚ ÚÛØ˛ ŲÛØŗØĒ." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Ø¨Ø§ØąÚ¯ÛØąÛ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ØØŦŲ
Ø¨Ø§ØąÚ¯Ø°Ø§ØąÛ Ø¨ØŗÛØ§Øą Ø˛ÛØ§Ø¯ Ø§ØŗØĒ" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ŲØ§ÛŲŲØ§ Ø¨ÛØ´ Ø§Ø˛ ØØ¯ ØĒØšÛÛŲ Ø´Ø¯Ų Ø¯Øą اÛŲ ØŗØąŲØą ŲØŗØĒŲØ¯\nŲ
ØĒØąØŦŲ
:با ØĒØēÛÛØą ŲØ§ÛŲ php,ini Ų
ÛØĒŲØ§Ų اÛŲ Ų
ØØ¯ŲØ¯ÛØĒ ØąØ§ Ø¨ØąØˇØąŲ ÚŠØąØ¯" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ŲžØąŲŲØ¯Ų ŲØ§ Ø¯Øą ØØ§Ų Ø¨Ø§Ø˛ØąØŗÛ ŲØŗØĒŲØ¯ ŲØˇŲا ØĩØ¨Øą ÚŠŲÛØ¯" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Ø¨Ø§Ø˛ØąØŗÛ ÚŠŲŲŲÛ" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index e96dbeabb50..9220162130c 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -4,7 +4,7 @@ # # Translators: # Jesse Jaara <jesse.jaara@gmail.com>, 2012. -# Jiri GrÃļnroos <jiri.gronroos@iki.fi>, 2012. +# Jiri GrÃļnroos <jiri.gronroos@iki.fi>, 2012-2013. # Johannes Korpela <>, 2012. # <tehoratopato@gmail.com>, 2012. # <tscooter@hotmail.com>, 2012. @@ -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-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 17:44+0000\n" +"Last-Translator: Jiri GrÃļnroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,46 +22,58 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Väliaikaiskansiota ei ole olemassa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Tilaa ei ole riittävästi" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Virheellinen kansio." + #: appinfo/app.php:10 msgid "Files" msgstr "Tiedostot" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Peru jakaminen" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Poista" @@ -69,39 +81,39 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "korvaa" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "peru" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "kumoa" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -111,80 +123,80 @@ msgid "" "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Lähetysvirhe." -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Sulje" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Odottaa" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nimi" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Koko" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Muutettu" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} tiedostoa" @@ -196,27 +208,27 @@ msgstr "Tiedostonhallinta" msgid "Maximum upload size" msgstr "Lähetettävän tiedoston suurin sallittu koko" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "suurin mahdollinen:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Ota ZIP-paketin lataaminen käytÃļÃļn" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 on rajoittamaton" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP-tiedostojen enimmäiskoko" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Tallenna" @@ -244,28 +256,28 @@ msgstr "Lähetä" msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Lataa" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 6dafbd6ca14..04a866c32f8 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -4,6 +4,7 @@ # # Translators: # Christophe Lherieau <skimpax@gmail.com>, 2012. +# <dba@alternalease.fr>, 2013. # <fkhannouf@me.com>, 2012. # <florentin.lemoal@gmail.com>, 2012. # Guillaume Paumier <guillom.pom@gmail.com>, 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-29 00:07+0100\n" -"PO-Revision-Date: 2012-12-28 23:01+0000\n" -"Last-Translator: ouafnico <nicolas@shivaserv.fr>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-03 10:24+0000\n" +"Last-Translator: dbasquin <dba@alternalease.fr>\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" @@ -287,7 +288,7 @@ msgstr "ProtÊgÊ par un mot de passe" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "Un erreur est survenue pendant la suppression de la date d'expiration" +msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" #: js/share.js:566 msgid "Error setting expiration date" @@ -384,7 +385,7 @@ msgstr "Ajouter" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "Avertissement de sÊcutitÊ" +msgstr "Avertissement de sÊcuritÊ" #: templates/installation.php:24 msgid "" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index b0fb5e1a70e..e08609ef35b 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -5,6 +5,7 @@ # Translators: # Christophe Lherieau <skimpax@gmail.com>, 2012. # Cyril Glapa <kyriog@gmail.com>, 2012. +# <dba@alternalease.fr>, 2013. # Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012. # <gp4004@arghh.org>, 2012. # <guiguidu31300@gmail.com>, 2012. @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 10:24+0000\n" -"Last-Translator: Robert Di Rosa <>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,46 +29,58 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Aucun fichier n'a ÊtÊ chargÊ. Erreur inconnue" + +#: ajax/upload.php:21 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:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a ÊtÊ que partiellement tÊlÊversÊ" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Aucun fichier n'a ÊtÊ tÊlÊversÊ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Il manque un rÊpertoire temporaire" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Erreur d'Êcriture sur le disque" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fichiers" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Ne plus partager" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Supprimer" @@ -75,39 +88,39 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} existe dÊjà " -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "remplacer" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "SuggÊrer un nom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "annuler" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" -msgstr "{new_name} a ÊtÊ replacÊ" +msgstr "{new_name} a ÊtÊ remplacÊ" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "annuler" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a ÊtÊ remplacÊ par {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "Fichiers non partagÊs : {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "Fichiers supprimÊs : {files}" @@ -117,80 +130,80 @@ msgid "" "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisÊs." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Erreur de chargement" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Fermer" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "En cours" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fichier en cours de tÊlÊchargement" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} fichiers tÊlÊversÊs" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Chargement annulÊ." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nom de rÊpertoire invalide. \"Shared\" est rÊservÊ par ownCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} fichiers indexÊs" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "erreur lors de l'indexation" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Taille" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ModifiÊ" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fichier" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} fichiers" @@ -202,27 +215,27 @@ msgstr "Gestion des fichiers" msgid "Maximum upload size" msgstr "Taille max. d'envoi" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "Max. possible :" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "NÊcessaire pour le tÊlÊchargement de plusieurs fichiers et de dossiers." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activer le tÊlÊchargement ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 est illimitÊ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Taille maximale pour les fichiers ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Sauvegarder" @@ -250,28 +263,28 @@ msgstr "Envoyer" msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "TÊlÊchargement" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Fichier trop volumineux" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dÊpassent la taille maximale permise par ce serveur." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 2b0461bacab..be09fe8f50a 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -5,6 +5,7 @@ # Translators: # Brice <bmaron@gmail.com>, 2012. # Cyril Glapa <kyriog@gmail.com>, 2012. +# <dba@alternalease.fr>, 2013. # <fboulogne@april.org>, 2011. # <florentin.lemoal@gmail.com>, 2012. # <gp4004@arghh.org>, 2012. @@ -21,9 +22,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 11:04+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-03 10:33+0000\n" +"Last-Translator: dbasquin <dba@alternalease.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 22c66343396..69256439a07 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -4,14 +4,15 @@ # # Translators: # antiparvos <marcoslansgarza@gmail.com>, 2012. +# <mbouzada@gmail.com>, 2012. # XosÊ M. Lamas <correo.xmgz@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 09:32+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,26 +23,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "O usuario %s compartÃu un ficheiro con vostede" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "O usuario %s compartÃu un cartafol con vostede" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "O usuario %s compartiu o ficheiro ÂĢ%sÂģ con vostede. Teno dispoÃąÃbel en: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "O usuario %s compartiu o cartafol ÂĢ%sÂģ con vostede. Teno dispoÃąÃbel en: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -65,12 +66,12 @@ msgstr "Non se forneceu o tipo de obxecto." #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "Non se deu o ID %s." +msgstr "Non se forneceu o ID %s." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Erro ao engadir %s aos favoritos." +msgstr "Produciuse un erro ao engadir %s aos favoritos." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -79,7 +80,7 @@ msgstr "Non hai categorÃas seleccionadas para eliminar." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Erro ao eliminar %s dos favoritos." +msgstr "Produciuse un erro ao eliminar %s dos favoritos." #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -95,7 +96,7 @@ msgstr "hai 1 minuto" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrÃĄs" +msgstr "hai {minutes} minutos" #: js/js.js:707 msgid "1 hour ago" @@ -103,7 +104,7 @@ msgstr "hai 1 hora" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "{hours} horas atrÃĄs" +msgstr "hai {hours} horas" #: js/js.js:709 msgid "today" @@ -115,7 +116,7 @@ msgstr "onte" #: js/js.js:711 msgid "{days} days ago" -msgstr "{days} dÃas atrÃĄs" +msgstr "hai {days} dÃas" #: js/js.js:712 msgid "last month" @@ -123,7 +124,7 @@ msgstr "Ãēltimo mes" #: js/js.js:713 msgid "{months} months ago" -msgstr "{months} meses atrÃĄs" +msgstr "hai {months} meses" #: js/js.js:714 msgid "months ago" @@ -163,8 +164,8 @@ msgid "The object type is not specified." msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erro" @@ -176,25 +177,25 @@ msgstr "Non se especificou o nome do aplicativo." msgid "The required file {file} is not installed!" msgstr "Non estÃĄ instalado o ficheiro {file} que se precisa" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "Erro compartindo" +msgstr "Produciuse un erro ao compartir" #: js/share.js:135 msgid "Error while unsharing" -msgstr "Erro ao deixar de compartir" +msgstr "Produciuse un erro ao deixar de compartir" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "Erro ao cambiar os permisos" +msgstr "Produciuse un erro ao cambiar os permisos" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "Compartido contigo e co grupo {group} de {owner}" +msgstr "Compartido con vostede e co grupo {group} por {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "Compartido contigo por {owner}" +msgstr "Compartido con vostede por {owner}" #: js/share.js:158 msgid "Share with" @@ -202,24 +203,24 @@ msgstr "Compartir con" #: js/share.js:163 msgid "Share with link" -msgstr "Compartir ca ligazÃŗn" +msgstr "Compartir coa ligazÃŗn" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Contrasinal" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Enviar ligazÃŗn por correo" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/share.js:177 msgid "Set expiration date" @@ -231,7 +232,7 @@ msgstr "Data de caducidade" #: js/share.js:210 msgid "Share via email:" -msgstr "Compartir por correo electrÃŗnico:" +msgstr "Compartir por correo:" #: js/share.js:212 msgid "No people found" @@ -239,7 +240,7 @@ msgstr "Non se atopou xente" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "Non se acepta volver a compartir" +msgstr "Non se permite volver a compartir" #: js/share.js:275 msgid "Shared in {item} with {user}" @@ -267,64 +268,64 @@ msgstr "actualizar" #: js/share.js:319 msgid "delete" -msgstr "borrar" +msgstr "eliminar" #: js/share.js:322 msgid "share" msgstr "compartir" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "Erro ao quitar a data de caducidade" +msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" -msgstr "Erro ao definir a data de caducidade" +msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Enviando..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Correo enviado" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "Restablecer contrasinal de ownCloud" +msgstr "Restabelecer o contrasinal de ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Usa a seguinte ligazÃŗn para restablecer o contrasinal: {link}" +msgstr "Usa a seguinte ligazÃŗn para restabelecer o contrasinal: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "RecibirÃĄ unha ligazÃŗn por correo electrÃŗnico para restablecer o contrasinal" +msgstr "RecibirÃĄ unha ligazÃŗn por correo para restabelecer o contrasinal" #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "Restablecer o envÃo por correo." +msgstr "Restabelecer o envÃo por correo." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "Fallo na peticiÃŗn" +msgstr "Non foi posÃbel facer a peticiÃŗn" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nome de usuario" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "PeticiÃŗn de restablecemento" +msgstr "PeticiÃŗn de restabelecemento" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "O contrasinal foi restablecido" +msgstr "O contrasinal foi restabelecido" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -336,7 +337,7 @@ msgstr "Novo contrasinal" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Restablecer contrasinal" +msgstr "Restabelecer o contrasinal" #: strings.php:5 msgid "Personal" @@ -376,19 +377,19 @@ msgstr "Engadir" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "Aviso de seguridade" +msgstr "Aviso de seguranza" #: templates/installation.php:24 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Non hai un xerador de nÃēmeros aleatorios dispoÃąÃbel. Activa o engadido de OpenSSL para PHP." +msgstr "Non hai un xerador de nÃēmeros ao chou dispoÃąÃbel. Active o engadido de OpenSSL para PHP." #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sen un xerador de nÃēmeros aleatorios seguro poderÃa acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa tÃēa conta." +msgstr "Sen un xerador seguro de nÃēmeros ao chou poderÃa acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa sÃēa conta." #: templates/installation.php:32 msgid "" @@ -397,50 +398,50 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "O teu cartafol de datos e os teus ficheiros son seguramente accesibles a travÊs de internet. O ficheiro .htaccess que ownCloud fornece non estÃĄ empregÃĄndose. SuxÃrese que configures o teu servidor web de tal maneira que o cartafol de datos non estea accesÃbel ou movas o cartafol de datos fÃŗra do root do directorio de datos do servidor web." +msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesÃbeis a travÊs da Internet. O ficheiro .htaccess que fornece ownCloud non estÃĄ a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesÃbel ou mova o cartafol de datos fora do directorio raÃz de datos do servidor web." #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crear unha <strong>contra de administrador</strong>" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "serÃĄ utilizado" +msgstr "vai ser utilizado" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "TÃĄboa de espazos da base de datos" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Rematar a configuraciÃŗn" @@ -474,51 +475,51 @@ msgstr "SÃĄbado" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "Xaneiro" +msgstr "xaneiro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "Febreiro" +msgstr "febreiro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "Marzo" +msgstr "marzo" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Abril" +msgstr "abril" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "Maio" +msgstr "maio" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "XuÃąo" +msgstr "xuÃąo" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "Xullo" +msgstr "xullo" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Agosto" +msgstr "agosto" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Setembro" +msgstr "setembro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "Outubro" +msgstr "outubro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "Novembro" +msgstr "novembro" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "Decembro" +msgstr "decembro" #: templates/layout.guest.php:42 msgid "web services under your control" @@ -528,29 +529,29 @@ msgstr "servizos web baixo o seu control" msgid "Log out" msgstr "Desconectar" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Rexeitouse a entrada automÃĄtica" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Se non fixeches cambios de contrasinal recentemente Ê posÃbel que a tÃēa conta estea comprometida!" +msgstr "Se non fixo recentemente cambios de contrasinal Ê posÃbel que a sÃēa conta estea comprometida!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "Cambia de novo o teu contrasinal para asegurar a tÃēa conta." +msgstr "Cambie de novo o seu contrasinal para asegurar a sÃēa conta." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "lembrar" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Conectar" @@ -574,7 +575,7 @@ msgstr "Advertencia de seguranza" msgid "" "Please verify your password. <br/>For security reasons you may be " "occasionally asked to enter your password again." -msgstr "Verifica o teu contrasinal.<br/>Por motivos de seguridade pode que ocasionalmente se che pregunte de novo polo teu contrasinal." +msgstr "Verifique o seu contrasinal.<br/>Por motivos de seguranza pode que ocasionalmente se lle pregunte de novo polo seu contrasinal." #: templates/verify.php:16 msgid "Verify" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index d44302b22d1..9d4acd36d9a 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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 21:51+0000\n" -"Last-Translator: Miguel Branco <mgl.branco@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +19,58 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Non se subiu ningÃēn ficheiro. Erro descoÃąecido." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Non hai erros. O ficheiro enviouse correctamente" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado foi sÃŗ parcialmente enviado" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Non se enviou ningÃēn ficheiro" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta un cartafol temporal" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Deixar de compartir" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Eliminar" @@ -66,39 +78,39 @@ msgstr "Eliminar" msgid "Rename" msgstr "Mudar o nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "xa existe un {new_name}" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "substituÃr" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "substituÃr {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "desfacer" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "substituÃr {new_name} polo {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "{files} sen compartir" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} eliminados" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "Nome non vÃĄlido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "xerando un ficheiro ZIP, o que pode levar un anaco." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Erro na subida" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Pechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendentes" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 ficheiro subÃndose" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ficheiros subÃndose" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de cartafol non vÃĄlido. O uso de \"compartido\" estÃĄ reservado exclusivamente para ownCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ficheiros escaneados" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "erro mentres analizaba" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "TamaÃąo" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ficheiros" @@ -193,27 +205,27 @@ msgstr "Manexo de ficheiro" msgid "Maximum upload size" msgstr "TamaÃąo mÃĄximo de envÃo" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "mÃĄx. posible: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "PrecÃsase para a descarga de varios ficheiros e cartafoles." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar a descarga-ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 significa ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "TamaÃąo mÃĄximo de descarga para os ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Gardar" @@ -241,28 +253,28 @@ msgstr "Enviar" msgid "Cancel upload" msgstr "Cancelar a subida" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nada por aquÃ. EnvÃa algo." -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Descargar" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "EnvÃo demasiado grande" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que trata de subir superan o tamaÃąo mÃĄximo permitido neste servidor" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarda." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "AnÃĄlise actual" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 775152bbea7..9bc476ece0b 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.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-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 08:40+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +37,7 @@ msgstr "Cubrir todos os campos obrigatorios" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "DÃĄ o segredo e a chave correcta do aplicativo de Dropbox." +msgstr "Forneza unha chave correcta e segreda do Dropbox." #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" @@ -47,14 +47,14 @@ msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Aviso:</b> ÂĢsmbclientÂģ non estÃĄ instalado. Non Ê posibel a montaxe de comparticiÃŗns CIFS/SMB. Consulte co administrador do sistema para instalalo." #: lib/config.php:435 msgid "" "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "<b>Aviso:</b> A compatibilidade de FTP en PHP non estÃĄ activada ou instalada. Non Ê posibel a montaxe de comparticiÃŗns FTP. Consulte co administrador do sistema para instalalo." #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +101,7 @@ msgid "Users" msgstr "Usuarios" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Eliminar" @@ -113,10 +113,10 @@ msgstr "Activar o almacenamento externo do usuario" msgid "Allow users to mount their own external storage" msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "Certificados SSL root" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importar o certificado root" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index e2ef6571062..29fdaa8ac25 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -4,14 +4,15 @@ # # Translators: # antiparvos <marcoslansgarza@gmail.com>, 2012. +# <mbouzada@gmail.com>, 2012. # XosÊ M. Lamas <correo.xmgz@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 09:02+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "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 "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Non se puido cargar a lista desde a App Store" +msgstr "Non foi posÃbel cargar a lista desde a App Store" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -29,23 +30,23 @@ msgstr "O grupo xa existe" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "Non se pode engadir o grupo" +msgstr "Non Ê posÃbel engadir o grupo" #: ajax/enableapp.php:12 msgid "Could not enable app. " -msgstr "Con se puido activar o aplicativo." +msgstr "Non Ê posÃbel activar o aplicativo." #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Correo electrÃŗnico gardado" +msgstr "Correo gardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "correo electrÃŗnico non vÃĄlido" +msgstr "correo incorrecto" #: ajax/openid.php:13 msgid "OpenID Changed" -msgstr "Mudou o OpenID" +msgstr "Cambiou o OpenID" #: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" @@ -53,19 +54,19 @@ msgstr "PeticiÃŗn incorrecta" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Non se pode eliminar o grupo." +msgstr "Non Ê posÃbel eliminar o grupo." #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" -msgstr "Erro na autenticaciÃŗn" +msgstr "Produciuse un erro de autenticaciÃŗn" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Non se pode eliminar o usuario" +msgstr "Non Ê posÃbel eliminar o usuario" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "O idioma mudou" +msgstr "O idioma cambiou" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -74,12 +75,12 @@ msgstr "Os administradores non se pode eliminar a si mesmos do grupo admin" #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "Non se puido engadir o usuario ao grupo %s" +msgstr "Non Ê posÃbel engadir o usuario ao grupo %s" #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "Non se puido eliminar o usuario do grupo %s" +msgstr "Non Ê posÃbel eliminar o usuario do grupo %s" #: js/apps.js:28 js/apps.js:67 msgid "Disable" @@ -99,7 +100,7 @@ msgstr "Galego" #: templates/apps.php:10 msgid "Add your App" -msgstr "Engade o teu aplicativo" +msgstr "Engada o seu aplicativo" #: templates/apps.php:11 msgid "More Apps" @@ -107,11 +108,11 @@ msgstr "MÃĄis aplicativos" #: templates/apps.php:27 msgid "Select an App" -msgstr "Escolla un Aplicativo" +msgstr "Escolla un aplicativo" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "Vexa a pÃĄxina do aplicativo en apps.owncloud.com" +msgstr "Consulte a pÃĄxina do aplicativo en apps.owncloud.com" #: templates/apps.php:32 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" @@ -119,32 +120,32 @@ msgstr "<span class=\"licence\"></span>-licenciado por<span class=\"author\"></s #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "DocumentaciÃŗn do usuario" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "DocumentaciÃŗn do administrador" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "DocumentaciÃŗn na Rede" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Foro" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Seguemento de fallos" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Asistencia comercial" #: templates/personal.php:8 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "Tes usados <strong>%s</strong> do total dispoÃąÃbel de <strong>%s</strong>" +msgstr "Te en uso <strong>%s</strong> do total dispoÃąÃbel de <strong>%s</strong>" #: templates/personal.php:12 msgid "Clients" @@ -152,15 +153,15 @@ msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Descargar clientes para escritorio" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Descargar clientes para Android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Descargar clientes ra iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -172,7 +173,7 @@ msgstr "O seu contrasinal foi cambiado" #: templates/personal.php:23 msgid "Unable to change your password" -msgstr "Incapaz de trocar o seu contrasinal" +msgstr "Non Ê posÃbel cambiar o seu contrasinal" #: templates/personal.php:24 msgid "Current password" @@ -188,19 +189,19 @@ msgstr "amosar" #: templates/personal.php:27 msgid "Change password" -msgstr "Mudar contrasinal" +msgstr "Cambiar o contrasinal" #: templates/personal.php:33 msgid "Email" -msgstr "Correo electrÃŗnico" +msgstr "Correo" #: templates/personal.php:34 msgid "Your email address" -msgstr "O seu enderezo de correo electrÃŗnico" +msgstr "O seu enderezo de correo" #: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" -msgstr "Escriba un enderezo de correo electrÃŗnico para habilitar a recuperaciÃŗn do contrasinal" +msgstr "Escriba un enderezo de correo para activar a recuperaciÃŗn do contrasinal" #: templates/personal.php:41 templates/personal.php:42 msgid "Language" @@ -212,15 +213,15 @@ msgstr "Axude na traduciÃŗn" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "VersiÃŗn" #: templates/personal.php:65 msgid "" @@ -246,11 +247,11 @@ msgstr "Crear" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Almacenamento predeterminado" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Sen lÃmites" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -262,12 +263,12 @@ msgstr "Grupo Admin" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Almacenamento" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Predeterminado" #: templates/users.php:161 msgid "Delete" -msgstr "Borrar" +msgstr "Eliminar" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index e61cf22989a..024f611c187 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.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-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 08:48+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,13 +24,13 @@ msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>Aviso:</b> Os aplicativos user_ldap e user_webdavauth son incompatÃbeis. Pode acontecer un comportamento estraÃąo. Consulte co administrador do sistema para desactivar un deles." #: templates/settings.php:11 msgid "" "<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Aviso:</b> O mÃŗdulo PHP LDAP Ê necesario e non estÃĄ instalado, a infraestrutura non funcionarÃĄ. Consulte co administrador do sistema para instalalo." #: templates/settings.php:15 msgid "Host" @@ -58,7 +58,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 "O DN do cliente do usuario co que hai que estabelecer unha conexiÃŗn, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso en anÃŗnimo de o DN e o contrasinal baleiros." +msgstr "O DN do cliente do usuario co que hai que estabelecer unha conexiÃŗn, p.ex uid=axente, dc=exemplo, dc=com. Para o acceso anÃŗnimo deixe o DN e o contrasinal baleiros." #: templates/settings.php:18 msgid "Password" @@ -130,7 +130,7 @@ msgstr "Usar TLS" #: templates/settings.php:28 msgid "Do not use it for SSL connections, it will fail." -msgstr "Non empregualo para conexiÃŗns SSL: fallarÃĄ." +msgstr "Non empregalo para conexiÃŗns SSL: fallarÃĄ." #: templates/settings.php:29 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index 8fdb2745637..5630c82c50e 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <mbouzada@gmail.com>, 2012. # Miguel Branco, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 08:22+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud enviarÃĄ as credenciais do usuario a este URL, http 401 e http 403 interpretanse como credenciais incorrectas e todos os outros cÃŗdigos como credenciais correctas." diff --git a/l10n/he/files.po b/l10n/he/files.po index 2d18545dbb6..5a1ed8223cf 100644 --- a/l10n/he/files.po +++ b/l10n/he/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: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 06:37+0000\n" -"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -21,46 +21,58 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "×× ×××ĸ×× ×§×××Ĩ. ××ĸ××Ē ×××Ē× ×××××." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "×× ××ר×ĸ× ×Ē×§××, ××§××Ļ×× ×××ĸ×× ×××Ļ×××" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "××§××Ļ×× ×Š× ×Š××× ××ר××× ×××××× ×Š×Ļ××× ×××××¨× upload_max_filesize ׊××§×××Ĩ php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "××§×××Ĩ ׊×××ĸ×× ×××ĸ×× ××Ļ××¨× ×××§××Ē" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "×× ×××ĸ×× ×§××Ļ××" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "×Ē××§××× ××× ××Ē ×ץר×" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "×××Ē××× ×××× × × ×׊××" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "×§××Ļ××" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "×ץר ׊××Ē××Ŗ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "××××§×" @@ -68,39 +80,39 @@ msgstr "××××§×" msgid "Rename" msgstr "׊×× ×× ×Š×" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} ××ר ×§×××" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "×××פ×" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "××Ļ×ĸ×Ē ×Š×" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "×××××" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} ×××××Ŗ" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "×××××" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ×××××Ŗ ×Öž{old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "×××× ×Š××Ē××¤× ×Š× {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} × ×××§×" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "××Š× ×Š×××, ×ץ×ר ××׊×Ē×׊ ××Ē×××× '\\', '/', '<', '>', ':', '\"', '|', '?' ×Öž'*'." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "×××Ļר ×§×××Ĩ ZIP, ×× × ×××Ē×." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "×× ×××× ×××ĸ×××Ē ××Ē ××§×××Ĩ ×××××× ×Š×× ×Ē×§×× ×× ×Š××Š×§× ××§×××Ĩ 0 ××Ē××" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "׊××××Ē ××ĸ×××" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ץ××ר×" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "×××Ē××" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "×§×××Ĩ ××× × ×Š××" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ×§××Ļ×× × ×Š××××" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "×××ĸ××× ×××××." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "××Ē××Ļ×ĸ×Ē ××ĸ×Ē ××ĸ×××Ē ×§××Ļ××. ×ĸ×××× ×Š× ××ĸ××× ×Ē××× ××Ē ×××ĸ×××." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "×Š× ××Ē××§××× ×Š×××. ×׊×××׊ ××Š× âSharedâ ׊××ר ×××××Ē Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ×§××Ļ×× × ×Ą×¨×§×" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "××ר×ĸ× ×Š×××× ××××× ×ץר××§×" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "׊×" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "××××" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "××× ×Š×× ××" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "×Ē××§××× ×××Ē" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} ×Ē××§×××Ē" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "×§×××Ĩ ×××" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ×§××Ļ××" @@ -195,27 +207,27 @@ msgstr "××פ×× ××§××Ļ××" msgid "Maximum upload size" msgstr "×××× ××ĸ××× ×קץ××××" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "××ר×× ××פ׊ר×: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "× ×××Ĩ ×××ר×× ×Š× ×¨×××× ×§××Ļ×× ×× ×Ē××§×××Ē." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "×פ×ĸ××Ē ××ר××Ē ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 - ××× ×××××" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "×××× ××§×× ××ר×× ××§×××Ļ× ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "׊××ר×" @@ -243,28 +255,28 @@ msgstr "××ĸ×××" msgid "Cancel upload" msgstr "××××× ×××ĸ×××" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "××× ××× ×Š×× ××ר. ×××× ×ר×Ļ×× × ×××ĸ×××Ē ×׊××?" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "××ר××" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "××ĸ××× ××××× ××××" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "××§××Ļ×× ×Š× ×ץ××Ē ×××ĸ×××Ē ×ר×× ×××××× ××קץ×××× ×××ĸ×××Ē ×§××Ļ×× ×ĸ× ×Š×¨×Ē ××." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "××§××Ļ×× × ×Ą×¨×§××, × × ××××Ē××." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "×ץר××§× ×× ×××××Ē" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 1c494c435f9..12a3b1fd159 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,58 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7a1464ff148..d47d5f18bdc 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je poslana uspjeÅĄno i bez pogreÅĄaka" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je poslana samo djelomiÄno" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ni jedna datoteka nije poslana" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Nedostaje privremena mapa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Prekini djeljenje" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "BriÅĄi" @@ -67,39 +79,39 @@ msgstr "BriÅĄi" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "predloÅži ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "odustani" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "vrati" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generiranje ZIP datoteke, ovo moÅže potrajati." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "PogreÅĄka pri slanju" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zatvori" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "U tijeku" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 datoteka se uÄitava" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Slanje poniÅĄteno." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "greÄka prilikom skeniranja" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Naziv" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "VeliÄina" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -194,27 +206,27 @@ msgstr "datoteka za rukovanje" msgid "Maximum upload size" msgstr "Maksimalna veliÄina prijenosa" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksimalna moguÄa: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Potrebno za preuzimanje viÅĄe datoteke i mape" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "OmoguÄi ZIP-preuzimanje" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 je \"bez limita\"" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimalna veliÄina za ZIP datoteke" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Snimi" @@ -242,28 +254,28 @@ msgstr "PoÅĄalji" msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nema niÄega u ovoj mapi. PoÅĄalji neÅĄto!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokuÅĄavate prenijeti prelaze maksimalnu veliÄinu za prijenos datoteka na ovom posluÅžitelju." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo priÄekajte." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hu/core.po b/l10n/hu/core.po new file mode 100644 index 00000000000..03c54c112f2 --- /dev/null +++ b/l10n/hu/core.po @@ -0,0 +1,579 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:84 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:86 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:88 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:90 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +msgid "This category already exists: " +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 +msgid "Settings" +msgstr "" + +#: js/js.js:704 +msgid "seconds ago" +msgstr "" + +#: js/js.js:705 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:706 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:707 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:708 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:709 +msgid "today" +msgstr "" + +#: js/js.js:710 +msgid "yesterday" +msgstr "" + +#: js/js.js:711 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:712 +msgid "last month" +msgstr "" + +#: js/js.js:713 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:714 +msgid "months ago" +msgstr "" + +#: js/js.js:715 +msgid "last year" +msgstr "" + +#: js/js.js:716 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:180 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:124 js/share.js:594 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:135 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:142 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:151 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:153 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:158 +msgid "Share with" +msgstr "" + +#: js/share.js:163 +msgid "Share with link" +msgstr "" + +#: js/share.js:166 +msgid "Password protect" +msgstr "" + +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 +#: templates/verify.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:172 +msgid "Email link to person" +msgstr "" + +#: js/share.js:173 +msgid "Send" +msgstr "" + +#: js/share.js:177 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:178 +msgid "Expiration date" +msgstr "" + +#: js/share.js:210 +msgid "Share via email:" +msgstr "" + +#: js/share.js:212 +msgid "No people found" +msgstr "" + +#: js/share.js:239 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:275 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:296 +msgid "Unshare" +msgstr "" + +#: js/share.js:308 +msgid "can edit" +msgstr "" + +#: js/share.js:310 +msgid "access control" +msgstr "" + +#: js/share.js:313 +msgid "create" +msgstr "" + +#: js/share.js:316 +msgid "update" +msgstr "" + +#: js/share.js:319 +msgid "delete" +msgstr "" + +#: js/share.js:322 +msgid "share" +msgstr "" + +#: js/share.js:356 js/share.js:541 +msgid "Password protected" +msgstr "" + +#: js/share.js:554 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:566 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:581 +msgid "Sending ..." +msgstr "" + +#: js/share.js:592 +msgid "Email sent" +msgstr "" + +#: lostpassword/controller.php:47 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:50 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:52 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:59 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 +msgid "will be used" +msgstr "" + +#: templates/installation.php:107 +msgid "Database user" +msgstr "" + +#: templates/installation.php:111 +msgid "Database password" +msgstr "" + +#: templates/installation.php:115 +msgid "Database name" +msgstr "" + +#: templates/installation.php:123 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:129 +msgid "Database host" +msgstr "" + +#: templates/installation.php:134 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Sunday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Monday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Tuesday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Wednesday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Thursday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Friday" +msgstr "" + +#: templates/layout.guest.php:16 templates/layout.user.php:17 +msgid "Saturday" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "January" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "February" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "March" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "April" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "May" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "June" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "July" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "August" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "September" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "October" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "November" +msgstr "" + +#: templates/layout.guest.php:17 templates/layout.user.php:18 +msgid "December" +msgstr "" + +#: templates/layout.guest.php:42 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:45 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/hu/files.po b/l10n/hu/files.po new file mode 100644 index 00000000000..c3d83a15a02 --- /dev/null +++ b/l10n/hu/files.po @@ -0,0 +1,278 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:24 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:26 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:27 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:28 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:29 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "" + +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:181 +msgid "Rename" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "replace" +msgstr "" + +#: js/filelist.js:199 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:199 js/filelist.js:201 +msgid "cancel" +msgstr "" + +#: js/filelist.js:248 +msgid "replaced {new_name}" +msgstr "" + +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 +msgid "undo" +msgstr "" + +#: js/filelist.js:250 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:282 +msgid "unshared {files}" +msgstr "" + +#: js/filelist.js:284 +msgid "deleted {files}" +msgstr "" + +#: js/files.js:33 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:174 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:212 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:212 +msgid "Upload Error" +msgstr "" + +#: js/files.js:229 +msgid "Close" +msgstr "" + +#: js/files.js:248 js/files.js:362 js/files.js:392 +msgid "Pending" +msgstr "" + +#: js/files.js:268 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:271 js/files.js:325 js/files.js:340 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:343 js/files.js:376 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:445 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:515 +msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" +msgstr "" + +#: js/files.js:699 +msgid "{count} files scanned" +msgstr "" + +#: js/files.js:707 +msgid "error while scanning" +msgstr "" + +#: js/files.js:780 templates/index.php:66 +msgid "Name" +msgstr "" + +#: js/files.js:781 templates/index.php:77 +msgid "Size" +msgstr "" + +#: js/files.js:782 templates/index.php:79 +msgid "Modified" +msgstr "" + +#: js/files.js:801 +msgid "1 folder" +msgstr "" + +#: js/files.js:803 +msgid "{count} folders" +msgstr "" + +#: js/files.js:811 +msgid "1 file" +msgstr "" + +#: js/files.js:813 +msgid "{count} files" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:35 +msgid "Upload" +msgstr "" + +#: templates/index.php:43 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:58 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:72 +msgid "Download" +msgstr "" + +#: templates/index.php:104 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:106 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:111 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:114 +msgid "Current scanning" +msgstr "" diff --git a/l10n/hu/files_encryption.po b/l10n/hu/files_encryption.po new file mode 100644 index 00000000000..26913fea990 --- /dev/null +++ b/l10n/hu/files_encryption.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings.php:6 +msgid "Enable Encryption" +msgstr "" + +#: templates/settings.php:7 +msgid "None" +msgstr "" + +#: templates/settings.php:12 +msgid "Exclude the following file types from encryption" +msgstr "" diff --git a/l10n/hu/files_external.po b/l10n/hu/files_external.po new file mode 100644 index 00000000000..5ee957401ae --- /dev/null +++ b/l10n/hu/files_external.po @@ -0,0 +1,120 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:434 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:435 +msgid "" +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "" + +#: templates/settings.php:95 +msgid "Users" +msgstr "" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/hu/files_sharing.po b/l10n/hu/files_sharing.po new file mode 100644 index 00000000000..07688f2047c --- /dev/null +++ b/l10n/hu/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:19 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:22 templates/public.php:38 +msgid "Download" +msgstr "" + +#: templates/public.php:37 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:43 +msgid "web services under your control" +msgstr "" diff --git a/l10n/hu/files_versions.po b/l10n/hu/files_versions.po new file mode 100644 index 00000000000..8fb51cf6202 --- /dev/null +++ b/l10n/hu/files_versions.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:7 +msgid "Expire all versions" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:10 +msgid "This will delete all existing backup versions of your files" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/hu/lib.po b/l10n/hu/lib.po new file mode 100644 index 00000000000..0dc080f7db0 --- /dev/null +++ b/l10n/hu/lib.po @@ -0,0 +1,152 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:287 +msgid "Help" +msgstr "" + +#: app.php:294 +msgid "Personal" +msgstr "" + +#: app.php:299 +msgid "Settings" +msgstr "" + +#: app.php:304 +msgid "Users" +msgstr "" + +#: app.php:311 +msgid "Apps" +msgstr "" + +#: app.php:313 +msgid "Admin" +msgstr "" + +#: files.php:365 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:366 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:366 files.php:391 +msgid "Back to Files" +msgstr "" + +#: files.php:390 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:64 json.php:77 json.php:89 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: template.php:103 +msgid "seconds ago" +msgstr "" + +#: template.php:104 +msgid "1 minute ago" +msgstr "" + +#: template.php:105 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:106 +msgid "1 hour ago" +msgstr "" + +#: template.php:107 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:108 +msgid "today" +msgstr "" + +#: template.php:109 +msgid "yesterday" +msgstr "" + +#: template.php:110 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:111 +msgid "last month" +msgstr "" + +#: template.php:112 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:113 +msgid "last year" +msgstr "" + +#: template.php:114 +msgid "years ago" +msgstr "" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/hu/settings.po b/l10n/hu/settings.po new file mode 100644 index 00000000000..934e419f787 --- /dev/null +++ b/l10n/hu/settings.po @@ -0,0 +1,271 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:12 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:13 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: js/apps.js:28 js/apps.js:67 +msgid "Disable" +msgstr "" + +#: js/apps.js:28 js/apps.js:55 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:27 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:31 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:32 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:23 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:24 +msgid "Current password" +msgstr "" + +#: templates/personal.php:25 +msgid "New password" +msgstr "" + +#: templates/personal.php:26 +msgid "show" +msgstr "" + +#: templates/personal.php:27 +msgid "Change password" +msgstr "" + +#: templates/personal.php:33 +msgid "Email" +msgstr "" + +#: templates/personal.php:34 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:35 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:41 templates/personal.php:42 +msgid "Language" +msgstr "" + +#: templates/personal.php:47 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/users.php:21 templates/users.php:81 +msgid "Name" +msgstr "" + +#: templates/users.php:26 templates/users.php:83 templates/users.php:103 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:138 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:153 +msgid "Other" +msgstr "" + +#: templates/users.php:85 templates/users.php:117 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:87 +msgid "Storage" +msgstr "" + +#: templates/users.php:133 +msgid "Default" +msgstr "" + +#: templates/users.php:161 +msgid "Delete" +msgstr "" diff --git a/l10n/hu/user_ldap.po b/l10n/hu/user_ldap.po new file mode 100644 index 00000000000..e2abecc29af --- /dev/null +++ b/l10n/hu/user_ldap.po @@ -0,0 +1,183 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" +" not work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Host" +msgstr "" + +#: templates/settings.php:15 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:16 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:16 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:17 +msgid "User DN" +msgstr "" + +#: templates/settings.php:17 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:18 +msgid "Password" +msgstr "" + +#: templates/settings.php:18 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:19 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:19 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:20 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:20 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:20 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:21 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:21 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:21 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:24 +msgid "Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:26 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:27 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:28 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:28 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:29 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:30 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:30 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:31 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:31 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:32 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:34 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:36 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:37 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:39 +msgid "Help" +msgstr "" diff --git a/l10n/hu/user_webdavauth.po b/l10n/hu/user_webdavauth.po new file mode 100644 index 00000000000..d6235e0472c --- /dev/null +++ b/l10n/hu/user_webdavauth.po @@ -0,0 +1,29 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +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-11-09 09:06+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 827fa8bff4f..40dde261a38 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 09:40+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-01 00:04+0100\n" +"PO-Revision-Date: 2012-12-31 14:56+0000\n" +"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,30 +23,30 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "%s felhasznÃĄlÃŗ megosztott Ãnnel egy fÃĄjlt" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "%s felhasznÃĄlÃŗ megosztott Ãnnel egy mappÃĄt" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "%s felhasznÃĄlÃŗ megosztotta ezt az ÃĄllomÃĄnyt Ãnnel: %s. A fÃĄjl innen tÃļlthetÅ le: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "%s felhasznÃĄlÃŗ megosztotta ezt a mappÃĄt Ãnnel: %s. A mappa innen tÃļlthetÅ le: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Nincs megadva a kategÃŗria tÃpusa." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -54,24 +54,24 @@ msgstr "Nincs hozzÃĄadandÃŗ kategÃŗria?" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "Ez a kategÃŗria mÃĄr lÊtezik" +msgstr "Ez a kategÃŗria mÃĄr lÊtezik: " #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Az objektum tÃpusa nincs megadva." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID nincs megadva." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Nem sikerÃŧlt a kedvencekhez adni ezt: %s" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -80,7 +80,7 @@ msgstr "Nincs tÃļrlÊsre jelÃļlt kategÃŗria" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Nem sikerÃŧlt a kedvencekbÅl tÃļrÃļlni ezt: %s" #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -88,15 +88,15 @@ msgstr "BeÃĄllÃtÃĄsok" #: js/js.js:704 msgid "seconds ago" -msgstr "mÃĄsodperccel ezelÅtt" +msgstr "pÃĄr mÃĄsodperce" #: js/js.js:705 msgid "1 minute ago" -msgstr "1 perccel ezelÅtt" +msgstr "1 perce" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} perce" #: js/js.js:707 msgid "1 hour ago" @@ -104,7 +104,7 @@ msgstr "1 ÃŗrÃĄja" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} ÃŗrÃĄja" #: js/js.js:709 msgid "today" @@ -116,7 +116,7 @@ msgstr "tegnap" #: js/js.js:711 msgid "{days} days ago" -msgstr "" +msgstr "{days} napja" #: js/js.js:712 msgid "last month" @@ -124,11 +124,11 @@ msgstr "mÃēlt hÃŗnapban" #: js/js.js:713 msgid "{months} months ago" -msgstr "" +msgstr "{months} hÃŗnapja" #: js/js.js:714 msgid "months ago" -msgstr "hÃŗnappal ezelÅtt" +msgstr "tÃļbb hÃŗnapja" #: js/js.js:715 msgid "last year" @@ -136,11 +136,11 @@ msgstr "tavaly" #: js/js.js:716 msgid "years ago" -msgstr "Êvvel ezelÅtt" +msgstr "tÃļbb Êve" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "" +msgstr "VÃĄlasszon" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" @@ -161,7 +161,7 @@ msgstr "Ok" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Az objektum tÃpusa nincs megadva." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 @@ -171,128 +171,128 @@ msgstr "Hiba" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Az alkalmazÃĄs neve nincs megadva." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "A szÃŧksÊges fÃĄjl: {file} nincs telepÃtve!" #: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "" +msgstr "Nem sikerÃŧlt lÊtrehozni a megosztÃĄst" #: js/share.js:135 msgid "Error while unsharing" -msgstr "" +msgstr "Nem sikerÃŧlt visszavonni a megosztÃĄst" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "Nem sikerÃŧlt mÃŗdosÃtani a jogosultsÃĄgokat" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Megosztotta Ãnnel Ês a(z) {group} csoporttal: {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Megosztotta Ãnnel: {owner}" #: js/share.js:158 msgid "Share with" -msgstr "" +msgstr "Kivel osztom meg" #: js/share.js:163 msgid "Share with link" -msgstr "" +msgstr "Link megadÃĄsÃĄval osztom meg" #: js/share.js:166 msgid "Password protect" -msgstr "" +msgstr "JelszÃŗval is vÊdem" #: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" -msgstr "JelszÃŗ" +msgstr "JelszÃŗ (tetszÅleges)" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Email cÃmre kÃŧldjÃŧk el" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "KÃŧldjÃŧk el" #: js/share.js:177 msgid "Set expiration date" -msgstr "" +msgstr "Legyen lejÃĄrati idÅ" #: js/share.js:178 msgid "Expiration date" -msgstr "" +msgstr "A lejÃĄrati idÅ" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "MegosztÃĄs emaillel:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "Nincs talÃĄlat" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "Ezt az ÃĄllomÃĄnyt csak a tulajdonosa oszthatja meg mÃĄsokkal" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Megosztva {item}-ben {user}-rel" #: js/share.js:296 msgid "Unshare" -msgstr "Nem oszt meg" +msgstr "A megosztÃĄs visszavonÃĄsa" #: js/share.js:308 msgid "can edit" -msgstr "" +msgstr "mÃŗdosÃthat" #: js/share.js:310 msgid "access control" -msgstr "" +msgstr "jogosultsÃĄg" #: js/share.js:313 msgid "create" -msgstr "lÊtrehozÃĄs" +msgstr "lÊtrehoz" #: js/share.js:316 msgid "update" -msgstr "" +msgstr "szerkeszt" #: js/share.js:319 msgid "delete" -msgstr "" +msgstr "tÃļrÃļl" #: js/share.js:322 msgid "share" -msgstr "" +msgstr "megoszt" #: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "" +msgstr "JelszÃŗval van vÊdve" #: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Nem sikerÃŧlt a lejÃĄrati idÅt tÃļrÃļlni" #: js/share.js:566 msgid "Error setting expiration date" -msgstr "" +msgstr "Nem sikerÃŧlt a lejÃĄrati idÅt beÃĄllÃtani" #: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "KÃŧldÊs ..." #: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Az emailt elkÃŧldtÃŧk" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -300,19 +300,19 @@ msgstr "ownCloud jelszÃŗ-visszaÃĄllÃtÃĄs" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "HasznÃĄlja az alÃĄbbi linket a jelszÃŗ-visszaÃĄllÃtÃĄshoz: {link}" +msgstr "HasznÃĄlja ezt a linket a jelszÃŗ ismÊtelt beÃĄllÃtÃĄsÃĄhoz: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Egy e-mailben kap ÊrtesÃtÊst a jelszÃŗvÃĄltoztatÃĄs mÃŗdjÃĄrÃŗl." +msgstr "Egy emailben fog ÊrtesÃtÊst kapni a jelszÃŗbeÃĄllÃtÃĄs mÃŗdjÃĄrÃŗl." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "ElkÃŧldtÃŧk az emailt a jelszÃŗ ismÊtelt beÃĄllÃtÃĄsÃĄhoz." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Nem sikerÃŧlt a kÊrÊst teljesÃteni!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: templates/login.php:28 @@ -353,7 +353,7 @@ msgstr "AlkalmazÃĄsok" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "AdminisztrÃĄciÃŗ" #: strings.php:9 msgid "Help" @@ -361,7 +361,7 @@ msgstr "SÃēgÃŗ" #: templates/403.php:12 msgid "Access forbidden" -msgstr "HozzÃĄfÊrÊs tiltva" +msgstr "A hozzÃĄfÊrÊs nem engedÊlyezett" #: templates/404.php:12 msgid "Cloud not found" @@ -383,13 +383,13 @@ msgstr "BiztonsÃĄgi figyelmeztetÊs" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Nem ÊrhetÅ el megfelelÅ vÊletlenszÃĄm-generÃĄtor, telepÃteni kellene a PHP OpenSSL kiegÊszÃtÊsÊt." #: templates/installation.php:26 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "MegfelelÅ vÊletlenszÃĄm-generÃĄtor hiÃĄnyÃĄban egy tÃĄmadÃŗ szÃĄndÊkÃē idegen kÊpes lehet megjÃŗsolni a jelszÃŗvisszaÃĄllÃtÃŗ tokent, Ês Ãn helyett belÊpni." #: templates/installation.php:32 msgid "" @@ -398,11 +398,11 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Az adatkÃļnytÃĄra Ês az itt levÅ fÃĄjlok valÃŗszÃnÅąleg elÊrhetÅk az internetrÅl. Az ownCloud ÃĄltal beillesztett .htaccess fÃĄjl nem mÅąkÃļdik. Nagyon fontos, hogy a webszervert Ãēgy konfigurÃĄlja, hogy az adatkÃļnyvtÃĄr nem legyen kÃļzvetlenÃŧl kÃvÃŧlrÅl elÊrhetÅ, vagy az adatkÃļnyvtÃĄrt tegye a webszerver dokumentumfÃĄjÃĄn kÃvÃŧlre." #: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" -msgstr "<strong>RendszergazdafiÃŗk</strong> lÊtrehozÃĄsa" +msgstr "<strong>Rendszergazdai belÊpÊs</strong> lÊtrehozÃĄsa" #: templates/installation.php:50 msgid "Advanced" @@ -419,7 +419,7 @@ msgstr "AdatbÃĄzis konfigurÃĄlÃĄsa" #: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:85 templates/installation.php:95 msgid "will be used" -msgstr "hasznÃĄlva lesz" +msgstr "adatbÃĄzist fogunk hasznÃĄlni" #: templates/installation.php:107 msgid "Database user" @@ -431,11 +431,11 @@ msgstr "AdatbÃĄzis jelszÃŗ" #: templates/installation.php:115 msgid "Database name" -msgstr "AdatbÃĄzis nÊv" +msgstr "Az adatbÃĄzis neve" #: templates/installation.php:123 msgid "Database tablespace" -msgstr "" +msgstr "Az adatbÃĄzis tÃĄblÃĄzattÊr (tablespace)" #: templates/installation.php:129 msgid "Database host" @@ -443,87 +443,87 @@ msgstr "AdatbÃĄzis szerver" #: templates/installation.php:134 msgid "Finish setup" -msgstr "BeÃĄllÃtÃĄs befejezÊse" +msgstr "A beÃĄllÃtÃĄsok befejezÊse" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Sunday" -msgstr "VasÃĄrnap" +msgstr "vasÃĄrnap" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Monday" -msgstr "HÊtfÅ" +msgstr "hÊtfÅ" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Tuesday" -msgstr "Kedd" +msgstr "kedd" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Wednesday" -msgstr "Szerda" +msgstr "szerda" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Thursday" -msgstr "CsÃŧtÃļrtÃļk" +msgstr "csÃŧtÃļrtÃļk" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Friday" -msgstr "PÊntek" +msgstr "pÊntek" #: templates/layout.guest.php:16 templates/layout.user.php:17 msgid "Saturday" -msgstr "Szombat" +msgstr "szombat" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "January" -msgstr "JanuÃĄr" +msgstr "januÃĄr" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "February" -msgstr "FebruÃĄr" +msgstr "februÃĄr" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "March" -msgstr "MÃĄrcius" +msgstr "mÃĄrcius" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "April" -msgstr "Ãprilis" +msgstr "ÃĄprilis" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "May" -msgstr "MÃĄjus" +msgstr "mÃĄjus" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "June" -msgstr "JÃēnius" +msgstr "jÃēnius" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "July" -msgstr "JÃēlius" +msgstr "jÃēlius" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "August" -msgstr "Augusztus" +msgstr "augusztus" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "September" -msgstr "Szeptember" +msgstr "szeptember" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "October" -msgstr "OktÃŗber" +msgstr "oktÃŗber" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "November" -msgstr "November" +msgstr "november" #: templates/layout.guest.php:17 templates/layout.user.php:18 msgid "December" -msgstr "December" +msgstr "december" #: templates/layout.guest.php:42 msgid "web services under your control" -msgstr "webszolgÃĄltatÃĄsok az irÃĄnyÃtÃĄsod alatt" +msgstr "webszolgÃĄltatÃĄsok sajÃĄt kÊzben" #: templates/layout.user.php:45 msgid "Log out" @@ -531,21 +531,21 @@ msgstr "KilÊpÊs" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Az automatikus bejelentkezÊs sikertelen!" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Ha mostanÃĄban nem mÃŗdosÃtotta a jelszavÃĄt, akkor lehetsÊges, hogy idegenek jutottak be a rendszerbe az Ãn nevÊben!" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "A biztonsÃĄga ÊrdekÊben vÃĄltoztassa meg a jelszavÃĄt!" #: templates/login.php:19 msgid "Lost your password?" -msgstr "Elfelejtett jelszÃŗ?" +msgstr "Elfelejtette a jelszavÃĄt?" #: templates/login.php:39 msgid "remember" @@ -561,22 +561,22 @@ msgstr "KilÊpett." #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "ElÅzÅ" +msgstr "elÅzÅ" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "KÃļvetkezÅ" +msgstr "kÃļvetkezÅ" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "" +msgstr "BiztonsÃĄgi figyelmeztetÊs!" #: templates/verify.php:6 msgid "" "Please verify your password. <br/>For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "KÊrjÃŧk Ãrja be a jelszavÃĄt! <br/>BiztonsÃĄgi okokbÃŗl nÊha a bejelentkezÊst kÃļvetÅen is ellenÅrzÊskÊppen meg kell adnia a jelszavÃĄt." #: templates/verify.php:16 msgid "Verify" -msgstr "" +msgstr "EllenÅrzÊs" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index d430e38083e..ab2c04997d0 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/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: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 20:37+0000\n" -"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,37 +20,49 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nem tÃļrtÊnt feltÃļltÊs. Ismeretlen hiba" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "A fÃĄjlt sikerÃŧlt feltÃļlteni" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fÃĄjlt csak rÊszben sikerÃŧlt feltÃļlteni." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nem tÃļltÅdÃļtt fel semmi" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "HiÃĄnyzik egy ideiglenes mappa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nem sikerÃŧlt a lemezre tÃļrtÊnÅ ÃrÃĄs" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "FÃĄjlok" @@ -194,27 +206,27 @@ msgstr "FÃĄjlkezelÊs" msgid "Maximum upload size" msgstr "MaximÃĄlis feltÃļlthetÅ fÃĄjlmÊret" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. lehetsÊges: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "KÃļtegelt fÃĄjl- vagy mappaletÃļltÊshez szÃŧksÊges" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "A ZIP-letÃļltÊs engedÊlyezÊse" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 = korlÃĄtlan" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP-fÃĄjlok maximÃĄlis kiindulÃĄsi mÊrete" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "MentÊs" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 3f93aeb3961..7e27aa1727b 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,58 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nulle file esseva incargate" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Files" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Deler" @@ -66,39 +78,39 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Clauder" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nomine" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Dimension" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificate" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Dimension maxime de incargamento" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salveguardar" @@ -241,28 +253,28 @@ msgstr "Incargar" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Discargar" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 4c752ed6c0b..d1498ef87e2 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,58 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Kehilangan folder temporer" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Berkas" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "batalkan berbagi" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Hapus" @@ -67,39 +79,39 @@ msgstr "Hapus" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "mengganti" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "batal dikerjakan" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "membuat berkas ZIP, ini mungkin memakan waktu." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Terjadi Galat Pengunggahan" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "tutup" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Menunggu" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nama" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Ukuran" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -194,27 +206,27 @@ msgstr "Penanganan berkas" msgid "Maximum upload size" msgstr "Ukuran unggah maksimum" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "Kemungkinan maks:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Dibutuhkan untuk multi-berkas dan unduhan folder" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktifkan unduhan ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 adalah tidak terbatas" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Ukuran masukan maksimal untuk berkas ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "simpan" @@ -242,28 +254,28 @@ msgstr "Unggah" msgid "Cancel upload" msgstr "Batal mengunggah" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Unduh" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Unggahan terlalu besar" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silahkan tunggu." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Sedang memindai" diff --git a/l10n/is/files.po b/l10n/is/files.po index 1036913c086..a09396d6c0e 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: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 15:06+0000\n" -"Last-Translator: sveinn <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,37 +18,49 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrÃĄ skilaði sÊr" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Engin skrÃĄ skilaði sÊr" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Vantar brÃĄÃ°abirgðamÃļppu" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "TÃŗkst ekki að skrifa ÃĄ disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "SkrÃĄr" @@ -192,27 +204,27 @@ msgstr "MeðhÃļndlun skrÃĄr" msgid "Maximum upload size" msgstr "HÃĄmarks stÃĻrð innsendingar" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "hÃĄmark mÃļgulegt: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nauðsynlegt til að sÃĻkja margar skrÃĄr og mÃļppur à einu." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Virkja ZIP niðurhal." -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er Ãŗtakmarkað" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "HÃĄmarks inntaksstÃĻrð fyrir ZIP skrÃĄr" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Vista" diff --git a/l10n/it/files.po b/l10n/it/files.po index 062fa2906fd..4dbd873f5db 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -6,13 +6,13 @@ # <cosenal@gmail.com>, 2011. # Francesco Apruzzese <cescoap@gmail.com>, 2011. # <marco@carnazzo.it>, 2012. -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. +# Vincenzo Reale <vinx.reale@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 01:41+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 18:21+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,58 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nessun file è stato inviato. Errore sconosciuto" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato parzialmente caricato" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Cartella temporanea mancante" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Spazio disponibile insufficiente" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "Cartella non valida." + #: appinfo/app.php:10 msgid "Files" msgstr "File" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Elimina" @@ -68,39 +80,39 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} esiste già " -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "annulla" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "sostituito {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "annulla" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "non condivisi {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "eliminati {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "creazione file ZIP, potrebbe richiedere del tempo." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Errore di invio" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Chiudi" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "In corso" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} file in fase di caricamentoe" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di \"Shared\" è riservato a ownCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} file analizzati" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "errore durante la scansione" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Dimensione" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificato" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 file" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} file" @@ -195,27 +207,27 @@ msgstr "Gestione file" msgid "Maximum upload size" msgstr "Dimensione massima upload" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "numero mass.: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necessario per lo scaricamento di file multipli e cartelle." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Abilita scaricamento ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 è illimitato" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Dimensione massima per i file ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salva" @@ -243,28 +255,28 @@ msgstr "Carica" msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Scarica" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Il file caricato è troppo grande" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 3f253361a8a..39ebcb8c951 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: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 01:53+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,58 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ããĄã¤ãĢã¯äŊããĸããããŧããããĻããžããã䏿ãĒã¨ãŠãŧ" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ã¨ãŠãŧã¯ãããžãããããĄã¤ãĢãŽãĸããããŧãã¯æåããžãã" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ãĸããããŧããããããĄã¤ãĢã¯php.ini ㎠upload_max_filesize ãĢč¨åŽããããĩã¤ãēãčļ
ããĻããžã:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ãĸããããŧããããããĄã¤ãĢã¯HTMLãŽããŠãŧã ãĢč¨åŽãããMAX_FILE_SIZEãĢč¨åŽããããĩã¤ãēãčļ
ããĻããžã" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ããĄã¤ãĢã¯ä¸é¨åãããĸããããŧããããžããã§ãã" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ããĄã¤ãĢã¯ãĸããããŧããããžããã§ãã" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ããŗããŠãĒããŠãĢããčĻã¤ãããžãã" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ããŖãšã¯ã¸ãŽæ¸ãčžŧãŋãĢå¤ąæããžãã" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ããĄã¤ãĢ" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "å
ąæããĒã" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "åé¤" @@ -68,39 +80,39 @@ msgstr "åé¤" msgid "Rename" msgstr "ååãŽå¤æ´" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} ã¯ãã§ãĢåå¨ããĻããžã" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "įŊŽãæã" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "æ¨åĨ¨åį§°" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ããŖãŗãģãĢ" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} ãįŊŽæ" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "å
ãĢæģã" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ã {new_name} ãĢįŊŽæ" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "æĒå
ąæ {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "åé¤ {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "įĄåšãĒååã'\\', '/', '<', '>', ':', '\"', '|', '?', '*' ã¯äŊŋį¨ã§ããžããã" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ZIPããĄã¤ãĢãįæä¸ã§ãããã°ãããåž
ãĄãã ããã" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ããŖãŦã¯ããĒãããã¯0ãã¤ããŽããĄã¤ãĢã¯ãĸããããŧãã§ããžãã" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ãĸããããŧãã¨ãŠãŧ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "éãã" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "äŋį" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "ããĄã¤ãĢã1ã¤ãĸããããŧãä¸" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ããĄã¤ãĢããĸããããŧãä¸" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ãĸããããŧãã¯ããŖãŗãģãĢãããžããã" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ããĄã¤ãĢčģĸéãåŽčĄä¸ã§ããäģããŽããŧã¸ããį§ģåããã¨ãĸããããŧãã䏿ĸãããžãã" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "įĄåšãĒããŠãĢãåã§ãã\"Shared\" ãŽåŠį¨ã¯ ownCloud ãäēį´æ¸ãŋã§ãã" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ããĄã¤ãĢããšããŖãŗ" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "ãšããŖãŗä¸ãŽã¨ãŠãŧ" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "åå" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "ãĩã¤ãē" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "æ´æ°æĨæ" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 ããŠãĢã" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} ããŠãĢã" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ããĄã¤ãĢ" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ããĄã¤ãĢ" @@ -195,27 +207,27 @@ msgstr "ããĄã¤ãĢæäŊ" msgid "Maximum upload size" msgstr "æå¤§ãĸããããŧããĩã¤ãē" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "æå¤§åŽšé: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "褿°ããĄã¤ãĢãããŗããŠãĢããŽããĻãŗããŧããĢåŋ
čĻ" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIPåŊĸåŧãŽããĻãŗããŧããæåšãĢãã" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0ãæåŽããå ´åã¯įĄåļé" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIPããĄã¤ãĢã¸ã޿大å
Ĩåãĩã¤ãē" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "äŋå" @@ -243,28 +255,28 @@ msgstr "ãĸããããŧã" msgid "Cancel upload" msgstr "ãĸããããŧããããŖãŗãģãĢ" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ãããĢã¯äŊããããžãããäŊããĸããããŧãããĻãã ããã" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ããĻãŗããŧã" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ããĄã¤ãĢãĩã¤ãēã大ããããžã" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ãĸããããŧããããã¨ããĻããããĄã¤ãĢã¯ããĩãŧãã§čĻåŽãããæå¤§ãĩã¤ãēãčļ
ããĻããžãã" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ããĄã¤ãĢããšããŖãŗããĻããžãããã°ãããåž
ãĄãã ããã" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "ãšããŖãŗä¸" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index c1f06322310..7f6ee2171c9 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -4,16 +4,16 @@ # # Translators: # Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012-2013. # <tetuyano+transi@gmail.com>, 2012. # <tetuyano+transi@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 01:31+0000\n" +"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "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" @@ -248,11 +248,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" @@ -264,11 +264,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/ka_GE/files.po b/l10n/ka_GE/files.po index 5e3078f5048..ebcf1bec0d6 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,58 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "áááĒáááá áá ááá¤ááĨáĄáá áá, á¤áááá áŦáá áááĸáááá áááĸááá áá" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ááĸááá ááŖáá á¤áááá ááŽáááá áááŦááááá áá áááĸááá áá" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "á¤áááá áá áááĸááá áá" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "áá áááááá áĄááĨááĻáááá áá áá áĄáááááĄ" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "á¨ááĒáááá áááĄááá áŠááŦáá ááĄááĄ" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "á¤áááááá" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "áááááá áááᥠáááŽáĄáá" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "áŦáá¨áá" @@ -65,39 +77,39 @@ msgstr "áŦáá¨áá" msgid "Rename" msgstr "ááááá áĨáááá" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} áŖááá áá áĄáááááĄ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "á¨ááĒááá" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "áĄááŽáááᥠá¨ááááááááááá" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "áŖáá á§áá¤á" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} á¨ááĒáááááá" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "áááá áŖáááá" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} á¨ááĒáááááá {old_name}âáá" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "áááááá ááá áááŽáĄáááá {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "áŦáá¨áááá {files}" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ZIP-á¤ááááᥠááááá áá ááá, áááᥠááá áááá ááá ááááŖáá áá á." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ááĨáááá á¤ááááᥠááĸááá ááá ááá áááŽáá áŽáá. áᥠáá áᥠáĄááĨááĻáááá áá á¨áááĒááᥠ0 ááááĸáĄ" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "á¨ááĒáááá ááĸááá ááááĄááĄ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "áááŽáŖá áá" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "áááĒááᥠá ááááá¨á" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 á¤ááááᥠááĸááá ááá" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} á¤áááá ááĸááá áááá" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ááĸááá ááá á¨ááŠáá áááŖá ááĨáá." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "áááááááá áááᥠá¤ááááᥠááĸááá ááá. áĄáŽáá áááá ááá áááááĄááá ááááááŦáááᥠááĸááá áááᥠá¨ááŠáá ááááĄ" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} á¤áááá áĄááááá áááŖááá" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "á¨ááĒáááá áĄááááá ááááĄááĄ" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "áĄááŽááá" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "áááá" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "á¨ááĒáááááá" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 áĄááĨááĻáááá" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} áĄááĨááĻáááá" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 á¤áááá" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} á¤áááá" @@ -192,27 +204,27 @@ msgstr "á¤ááááᥠááááŖá¨ááááá" msgid "Maximum upload size" msgstr "áááĨáĄáááŖá ááĸááá ááᥠáááá" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "áááĨáĄ. á¨ááĄááĢáááááá:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "áĄáááá áá ááŖááĸá á¤ááá áá áĄááĨááĻááááᥠáŠááááĸááá ááá." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-DownloadâáᥠáŠáá ááá" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 is unlimited" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP á¤ááááááᥠáááĨáĄáááŖá áááĄáá¨áááá áááá" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "á¨ááááŽáá" @@ -240,28 +252,28 @@ msgstr "ááĸááá ááá" msgid "Cancel upload" msgstr "ááĸááá áááᥠáááŖáĨáááá" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ááĨ áá áá¤áá á áá áá ááĄ. ááĸááá áá á ááá!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "áŠááááĸááá ááá" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ááĄááĸááá áá á¤áááá áĢááááá ááááá" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "á¤ááááᥠáááá á ááááᥠááĸááá ááááĄááĒ ááĨááá áááá ááá, áááá áááᥠáĄáá ááá áá ááá¨ááááŖá áááĨáĄáááŖááĄ." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "áááááááá áááᥠá¤ááááááᥠáĄááááá ááá, áááŽááá áááááááá." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "áááááááá á áĄááááá ááá" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 0fcb15b44b4..6eac0f74ad1 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/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: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 05:40+0000\n" -"Last-Translator: Shinjo Park <kde@peremen.name>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,37 +20,49 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "íėŧė´ ė
ëĄëëė§ ėėėĩëë¤. ė ė ėë ė¤ëĨė
ëë¤" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ė
ëĄëė ėąęŗĩíėėĩëë¤." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ė
ëĄëí íėŧė´ php.iniė upload_max_filesizeëŗ´ë¤ íŊëë¤:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ė
ëĄëí íėŧė´ HTML ëŦ¸ėė ė§ė í MAX_FILE_SIZEëŗ´ë¤ ë íŧ" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "íėŧė´ ëļëļė ėŧëĄ ė
ëĄëë¨" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ė
ëĄëë íėŧ ėė" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ėė í´ëę° ėŦëŧė§" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ëė¤íŦė ė°ė§ ëĒģíėĩëë¤" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "íėŧ" @@ -113,76 +125,76 @@ msgstr "í´ë ė´ëĻė´ ėŦë°ëĨ´ė§ ėėĩëë¤. ė´ëĻė ëŦ¸ė '\\', '/', msgid "generating ZIP-file, it may take some time." msgstr "ZIP íėŧė ėėąíęŗ ėėĩëë¤. ėę°ė´ 깸ëĻ´ ėë ėėĩëë¤." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ė´ íėŧė ëë í°ëĻŦė´ęą°ë ëšė´ ė기 ëëŦ¸ė ė
ëĄëí ė ėėĩëë¤" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "ė
ëĄë ė¤ëĨ" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "ëĢ기" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "ëŗ´ëĨ ė¤" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "íėŧ 1ę° ė
ëĄë ė¤" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "íėŧ {count}ę° ė
ëĄë ė¤" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ė
ëĄëę° ėˇ¨ėëėėĩëë¤." -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "íėŧ ė
ëĄëę° ė§í ė¤ė
ëë¤. ė´ íė´ė§ëĨŧ ë˛ė´ë늴 ė
ëĄëę° ėˇ¨ėëŠëë¤." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "í´ë ė´ëĻė´ ėŦë°ëĨ´ė§ ėėĩëë¤. \"Shared\" í´ëë ownCloudėė ėėŊëėėĩëë¤." -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "íėŧ {count}ę° ę˛ėë¨" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "ę˛ė ė¤ ė¤ëĨ ë°ė" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ė´ëĻ" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "íŦ기" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ėė ë¨" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "í´ë 1ę°" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "í´ë {count}ę°" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "íėŧ 1ę°" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "íėŧ {count}ę°" @@ -194,27 +206,27 @@ msgstr "íėŧ ė˛ëĻŦ" msgid "Maximum upload size" msgstr "ėĩë ė
ëĄë íŦ기" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ėĩë ę°ëĨ:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "ë¤ė¤ íėŧ ë° í´ë ë¤ė´ëĄëė íėíŠëë¤." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP ë¤ė´ëĄë íėŠ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0ė ëŦ´ė íė
ëë¤" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP íėŧ ėĩë íŦ기" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ė ėĨ" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 749a057b1c1..a191da36582 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,58 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Ø¯Ø§ØŽØŗØĒŲ" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ŲØ§Ų" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ŲžØ§Ø´ÚŠŲâŲØĒÚŠØąØ¯Ų" @@ -239,28 +251,28 @@ msgstr "Ø¨Ø§ØąÚŠØąØ¯Ų" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Ø¯Ø§Ú¯ØąØĒŲ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index d4f89d14eac..f749e860e99 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,58 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "DÊi ropgelueden Datei ass nÃĢmmen hallef ropgelueden ginn" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dateien" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Läschen" @@ -65,39 +77,39 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "rÊckgängeg man" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 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:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Fehler beim eroplueden" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zoumaachen" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Numm" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "GrÊisst" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Geännert" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -192,27 +204,27 @@ msgstr "Fichier handling" msgid "Maximum upload size" msgstr "Maximum Upload GrÊisst " -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mÊiglech:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Gett gebraucht fir multi-Fichier an Dossier Downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-download erlaben" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ass onlimitÊiert" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximal GrÊisst fir ZIP Fichieren" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Späicheren" @@ -240,28 +252,28 @@ msgstr "Eroplueden" msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Eroflueden" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "DÊi Dateien dÊi Dir probÊiert erop ze lueden sinn mÊi grouss wei dÊi Maximal GrÊisst dÊi op dÃĢsem Server erlaabt ass." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index ef30d7726ce..e82e8e9846d 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "KlaidÅŗ nÄra, failas įkeltas sÄkmingai" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nebuvo įkeltas nÄ vienas failas" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "NÄra laikinojo katalogo" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nepavyko įraÅĄyti į diskÄ
" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Failai" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Nebesidalinti" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "IÅĄtrinti" @@ -67,39 +79,39 @@ msgstr "IÅĄtrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "pasiÅĢlyti pavadinimÄ
" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "atÅĄaukti" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "pakeiskite {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "nebesidalinti {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "iÅĄtrinti {files}" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "kuriamas ZIP archyvas, tai gali uÅžtrukti ÅĄiek tiek laiko." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ÄŽkÄlimo klaida" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "UÅžverti" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Laukiantis" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} įkeliami failai" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ÄŽkÄlimas atÅĄauktas." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} praskanuoti failai" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "klaida skanuojant" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Dydis" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Pakeista" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 failas" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} failai" @@ -194,27 +206,27 @@ msgstr "FailÅŗ tvarkymas" msgid "Maximum upload size" msgstr "Maksimalus įkeliamo failo dydis" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maks. galima:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Reikalinga daugybinui failÅŗ ir aplankalÅŗ atsisiuntimui." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ÄŽjungti atsisiuntimÄ
ZIP archyvu" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 yra neribotas" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimalus ZIP archyvo failo dydis" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "IÅĄsaugoti" @@ -242,28 +254,28 @@ msgstr "ÄŽkelti" msgid "Cancel upload" msgstr "AtÅĄaukti siuntimÄ
" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Äia tuÅĄÄia. ÄŽkelkite kÄ
nors!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "AtsisiÅŗsti" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ÄŽkÄlimui failas per didelis" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "BandomÅŗ įkelti failÅŗ dydis virÅĄija maksimalÅŗ leidÅžiamÄ
ÅĄiame serveryje" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, praÅĄome palaukti." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Å iuo metu skenuojama" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 09760c280aa..8d7b3dbc089 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,58 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Viss kÄrtÄĢbÄ, augÅĄupielÄde veiksmÄĢga" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Neviens fails netika augÅĄuplÄdÄts" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "TrÅĢkst pagaidu mapes" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Nav iespÄjams saglabÄt" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Faili" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "PÄrtraukt lÄĢdzdalÄĢÅĄanu" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "IzdzÄst" @@ -66,39 +78,39 @@ msgstr "IzdzÄst" msgid "Rename" msgstr "PÄrdÄvÄt" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "Ieteiktais nosaukums" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "vienu soli atpakaÄŧ" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 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:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "AugÅĄuplÄdÄÅĄanas laikÄ radÄs kÄŧÅĢda" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Gaida savu kÄrtu" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "AugÅĄuplÄde ir atcelta" -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nosaukums" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "IzmÄrs" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "IzmainÄĢts" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "Failu pÄrvaldÄĢba" msgid "Maximum upload size" msgstr "MaksimÄlais failu augÅĄuplÄdes apjoms" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksÄĢmÄlais iespÄjamais:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "VajadzÄĢgs vairÄku failu un mapju lejuplÄdei" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "IespÄjot ZIP lejuplÄdi" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ir neierobeÅžots" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "SaglabÄt" @@ -241,28 +253,28 @@ msgstr "AugÅĄuplÄdet" msgid "Cancel upload" msgstr "Atcelt augÅĄuplÄdi" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Te vÄl nekas nav. RÄĢkojies, sÄc augÅĄuplÄdÄt" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "LejuplÄdÄt" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Fails ir par lielu lai to augÅĄuplÄdetu" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "JÅĢsu augÅĄuplÄdÄjamie faili pÄrsniedz servera pieÄŧaujamo failu augÅĄupielÄdes apjomu" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Faili ÅĄobrÄĢd tiek caurskatÄĢti, nedaudz jÄpagaida." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Å obrÄĢd tiek pÄrbaudÄĢti" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 778f65fd741..861290c50de 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/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: 2012-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 12:18+0000\n" -"Last-Translator: Georgi Stanojevski <glisha@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -20,37 +20,49 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ĐиŅŅ ĐĩĐ´ĐĩĐŊ ŅаŅĐģ ĐŊĐĩ ŅĐĩ вŅиŅа. ĐĐĩĐŋОСĐŊаŅа ĐŗŅĐĩŅĐēа" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ĐĐĩĐŧа ĐŗŅĐĩŅĐēа, даŅĐžŅĐĩĐēаŅа ĐąĐĩŅĐĩ ĐŋĐžĐ´Đ¸ĐŗĐŊаŅа ŅŅĐŋĐĩŅĐŊĐž" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ĐĐžĐ´Đ¸ĐŗĐŊаŅаŅа даŅĐžŅĐĩĐēа Ņа ĐŊадĐŧиĐŊŅва upload_max_filesize диŅĐĩĐēŅиваŅа вО php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ĐаŅĐžŅĐĩĐēаŅа ĐąĐĩŅĐĩ ŅаĐŧĐž Đ´ĐĩĐģŅĐŧĐŊĐž ĐŋĐžĐ´Đ¸ĐŗĐŊаŅа." -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ĐĐĩ ĐąĐĩŅĐĩ ĐŋĐžĐ´Đ¸ĐŗĐŊаŅа даŅĐžŅĐĩĐēа" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ĐĐĩ ĐŋĐžŅŅОи ĐŋŅивŅĐĩĐŧĐĩĐŊа ĐŋаĐŋĐēа" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ĐĐĩŅŅĐŋĐĩав да СаĐŋиŅаĐŧ ĐŊа диŅĐē" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ĐаŅĐžŅĐĩĐēи" @@ -113,76 +125,76 @@ msgstr "ĐĐĩĐŋŅавиĐģĐŊĐž иĐŧĐĩ. , '\\', '/', '<', '>', ':', '\"', '|', '?' msgid "generating ZIP-file, it may take some time." msgstr "ĐĄĐĩ ĐŗĐĩĐŊĐĩŅиŅа ZIP ŅаŅĐģĐžŅ, ŅĐĩ ŅŅĐĩйа иСвĐĩŅĐŊĐž вŅĐĩĐŧĐĩ." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ĐĐĩ ĐŧĐžĐļĐĩ да ŅĐĩ ĐŋŅĐĩСĐĩĐŧĐĩ ваŅаŅа даŅĐžŅĐĩĐēа йидĐĩŅŅи ŅĐžĐģĐ´ĐĩŅĐžŅ Đ˛Đž ĐēĐžŅ ŅĐĩ ĐŊаОŅа ŅаŅĐģĐžŅ Đ¸Đŧа ĐŗĐžĐģĐĩĐŧиĐŊа Од 0 йаŅŅи" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "ĐŅĐĩŅĐēа ĐŋŅи ĐŋŅĐĩСĐĩĐŧаŅĐĩ" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "ĐаŅвОи" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "ЧĐĩĐēа" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 даŅĐžŅĐĩĐēа ŅĐĩ ĐŋĐžĐ´Đ¸ĐŗĐ°" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} даŅĐžŅĐĩĐēи ŅĐĩ ĐŋĐžĐ´Đ¸ĐŗĐ°Đ°Ņ" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ĐŅĐĩСĐĩĐŧаŅĐĩŅĐž Đĩ ĐŋŅĐĩĐēиĐŊаŅĐž." -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ĐĐžĐ´Đ¸ĐŗĐ°ŅĐĩ ĐŊа даŅĐžŅĐĩĐēа Đĩ вО ŅĐĩĐē. ĐаĐŋŅŅŅĐĩŅĐĩ ĐŊа ŅŅŅаĐŊиŅаŅа ŅĐĩ ĐŗĐž ĐŋŅĐĩĐēиĐŊĐĩ." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "ĐĐĩĐŋŅавиĐģĐŊĐž иĐŧĐĩ ĐŊа ĐŋаĐŋĐēа. ĐĐžŅиŅŅĐĩŅĐĩŅĐž ĐŊа âSharedâ Đĩ ŅĐĩСĐĩŅвиŅаĐŊĐž Са Owncloud" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} даŅĐžŅĐĩĐēи ŅĐēĐĩĐŊиŅаĐŊи" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "ĐŗŅĐĩŅĐēа ĐŋŅи ŅĐēĐĩĐŊиŅаŅĐĩ" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ĐĐŧĐĩ" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "ĐĐžĐģĐĩĐŧиĐŊа" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ĐŅĐžĐŧĐĩĐŊĐĩŅĐž" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 ĐŋаĐŋĐēа" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} ĐŋаĐŋĐēи" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 даŅĐžŅĐĩĐēа" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} даŅĐžŅĐĩĐēи" @@ -194,27 +206,27 @@ msgstr "РаĐēŅваŅĐĩ ŅĐž даŅĐžŅĐĩĐēи" msgid "Maximum upload size" msgstr "ĐаĐēŅиĐŧаĐģĐŊа ĐŗĐžĐģĐĩĐŧиĐŊа Са ĐŋĐžĐ´Đ¸ĐŗĐ°ŅĐĩ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ĐŧаĐēŅ. ĐŧĐžĐļĐŊĐž:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "ĐĐžŅŅĐĩĐąĐŊĐž Са ŅиĐŧĐŊŅваŅĐĩ ĐŋОвĐĩŅĐĩ-даŅĐžŅĐĩĐēи и ĐŋаĐŋĐēи." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ĐвОСĐŧĐžĐļи ZIP ŅиĐŧĐŊŅваŅĐĩ " -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 Đĩ ĐŊĐĩĐžĐŗŅаĐŊиŅĐĩĐŊĐž" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ĐаĐēŅиĐŧаĐģĐŊа ĐŗĐžĐģĐĩĐŧиĐŊа Са вĐŊĐĩŅ ĐŊа ZIP даŅĐžŅĐĩĐēи" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ĐĄĐŊиĐŧи" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 02844fd34d3..772c7c7ac4b 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,58 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat, fail berjaya dimuat naik." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Sebahagian daripada fail telah dimuat naik. " -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Tiada fail yang dimuat naik" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Folder sementara hilang" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "fail" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Padam" @@ -68,39 +80,39 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "ganti" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "Batal" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "sedang menghasilkan fail ZIP, mungkin mengambil sedikit masa." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Muat naik ralat" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Tutup" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Dalam proses" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nama " -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Saiz" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -195,27 +207,27 @@ msgstr "Pengendalian fail" msgid "Maximum upload size" msgstr "Saiz maksimum muat naik" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "maksimum:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Diperlukan untuk muatturun fail pelbagai " -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktifkan muatturun ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 adalah tanpa had" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Saiz maksimum input untuk fail ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Simpan" @@ -243,28 +255,28 @@ msgstr "Muat naik" msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Muat turun" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Muat naik terlalu besar" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 58b1183863d..efc1669f396 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/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: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 17:25+0000\n" -"Last-Translator: espenbye <espenbye@me.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian BokmÃĨl (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,37 +26,49 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ingen filer ble lastet opp. Ukjent feil." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Det er ingen feil. Filen ble lastet opp." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Filopplastningen ble bare delvis gjennomført" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil ble lastet opp" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Klarte ikke ÃĨ skrive til disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" @@ -200,27 +212,27 @@ msgstr "FilhÃĨndtering" msgid "Maximum upload size" msgstr "Maksimum opplastingsstørrelse" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mulige:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nødvendig for ÃĨ laste ned mapper og mer enn Ên fil om gangen." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktiver nedlasting av ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 er ubegrenset" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksimal størrelse pÃĨ ZIP-filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lagre" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index bb78a69078c..f4f6a49c8ae 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: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 09:15+0000\n" -"Last-Translator: Len <lenny@weijl.org>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,46 +28,58 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Er was geen bestand geladen. Onbekende fout" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Geen bestand geÃŧpload" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Een tijdelijke map mist" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Bestanden" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Stop delen" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Verwijder" @@ -75,39 +87,39 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "vervang" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "verving {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "delen gestopt {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "verwijderde {files}" @@ -117,80 +129,80 @@ msgid "" "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "aanmaken ZIP-file, dit kan enige tijd duren." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Sluit" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Wachten" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} bestanden aan het uploaden" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Folder naam niet toegestaan. Het gebruik van \"Shared\" is aan Owncloud voorbehouden" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} bestanden gescanned" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Naam" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 map" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 bestand" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} bestanden" @@ -202,27 +214,27 @@ msgstr "Bestand" msgid "Maximum upload size" msgstr "Maximale bestandsgrootte voor uploads" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mogelijk: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Nodig voor meerdere bestanden en mappen downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Zet ZIP-download aan" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 is ongelimiteerd" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maximale grootte voor ZIP bestanden" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Opslaan" @@ -250,28 +262,28 @@ msgstr "Upload" msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Download" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Bestanden te groot" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 4fb42612d82..e9aca8b6874 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,58 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Slett" @@ -66,39 +78,39 @@ msgstr "Slett" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Lukk" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Namn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Storleik" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Endra" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Maksimal opplastingsstorleik" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lagre" @@ -241,28 +253,28 @@ msgstr "Last opp" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Last ned" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver ÃĨ laste opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index a433382c7ce..abbd15f4a27 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,58 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fichièrs" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Non parteja" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Escafa" @@ -65,39 +77,39 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "remplaça" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "anulla" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "defar" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 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:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Error d'amontcargar" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Al esperar" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "error pendant l'exploracion" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nom" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Talha" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificat" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -192,27 +204,27 @@ msgstr "Manejament de fichièr" msgid "Maximum upload size" msgstr "Talha maximum d'amontcargament" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possible: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Requesit per avalcargar gropat de fichièrs e dorsièr" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Activa l'avalcargament de ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 es pas limitat" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Talha maximum de dintrada per fichièrs ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Enregistra" @@ -240,28 +252,28 @@ msgstr "Amontcarga" msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Amontcargament trÃ˛p grÃ˛s" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son trÃ˛p pesucs per la talha maxi pel servidor." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 8c9563a58e4..66e7875a122 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.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-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 10:15+0000\n" -"Last-Translator: Thomasso <tomekde@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -24,46 +24,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Plik nie zostaÅ zaÅadowany. Nieznany bÅÄ
d" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "PrzesÅano plik" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Plik przesÅano tylko czÄÅciowo" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nie przesÅano Åŧadnego pliku" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Brak katalogu tymczasowego" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "BÅÄ
d zapisu na dysk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Pliki" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Nie udostÄpniaj" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Usuwa element" @@ -71,39 +83,39 @@ msgstr "Usuwa element" msgid "Rename" msgstr "ZmieÅ nazwÄ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} juÅŧ istnieje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "zastap" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "zasugeruj nazwÄ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "zastÄ
piony {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "wrÃŗÄ" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "zastÄ
piony {new_name} z {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "UdostÄpniane wstrzymane {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "usuniÄto {files}" @@ -113,80 +125,80 @@ msgid "" "allowed." msgstr "Niepoprawna nazwa, Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*'sÄ
niedozwolone." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Generowanie pliku ZIP, moÅŧe potrwaÄ pewien czas." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "BÅÄ
d wczytywania" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zamknij" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "OczekujÄ
ce" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 plik wczytany" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} przesyÅanie plikÃŗw" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "BÅÄdna nazwa folderu. Nazwa \"Shared\" jest zarezerwowana dla Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} pliki skanowane" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "WystÄ
piÅ bÅÄ
d podczas skanowania" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nazwa" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Rozmiar" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 folder" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 plik" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} pliki" @@ -198,27 +210,27 @@ msgstr "ZarzÄ
dzanie plikami" msgid "Maximum upload size" msgstr "Maksymalny rozmiar wysyÅanego pliku" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. moÅŧliwych" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Wymagany do pobierania wielu plikÃŗw i folderÃŗw" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "WÅÄ
cz pobieranie ZIP-paczki" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 jest nielimitowane" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Maksymalna wielkoÅÄ pliku wejÅciowego ZIP " -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Zapisz" @@ -246,28 +258,28 @@ msgstr "PrzeÅlij" msgid "Cancel upload" msgstr "PrzestaÅ wysyÅaÄ" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Brak zawartoÅci. ProszÄ wysÅaÄ pliki!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Pobiera element" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "WysyÅany plik ma za duÅŧy rozmiar" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki ktÃŗre prÃŗbujesz przesÅaÄ, przekraczajÄ
maksymalnÄ
, dopuszczalnÄ
wielkoÅÄ." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Skanowanie plikÃŗw, proszÄ czekaÄ." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 2e1909d5c9f..84d6007fd24 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,58 @@ 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/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Zapisz" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 91ecfae55f0..8df95d7daf9 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-01 23:23+0000\n" -"Last-Translator: FredMaranhao <fred.maranhao@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,46 +25,58 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nenhum arquivo foi transferido. Erro desconhecido" + +#: ajax/upload.php:21 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:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Pasta temporÃĄria nÃŖo encontrada" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Arquivos" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Descompartilhar" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Excluir" @@ -72,39 +84,39 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} jÃĄ existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "substituir" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "substituÃdo {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "desfazer" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "SubstituÃdo {old_name} por {new_name} " -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "{files} nÃŖo compartilhados" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} apagados" @@ -114,80 +126,80 @@ msgid "" "allowed." msgstr "Nome invÃĄlido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' nÃŖo sÃŖo permitidos." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "gerando arquivo ZIP, isso pode levar um tempo." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Erro de envio" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Fechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendente" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "Enviando {count} arquivos" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de pasta invÃĄlido. O nome \"Shared\" Ê reservado pelo Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} arquivos scaneados" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "erro durante verificaÃ§ÃŖo" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamanho" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} arquivos" @@ -199,27 +211,27 @@ msgstr "Tratamento de Arquivo" msgid "Maximum upload size" msgstr "Tamanho mÃĄximo para carregar" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possÃvel:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "NecessÃĄrio para multiplos arquivos e diretÃŗrio de downloads." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Habilitar ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 para ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamanho mÃĄximo para arquivo ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvar" @@ -247,28 +259,28 @@ msgstr "Carregar" msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Baixar" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Arquivo muito grande" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que vocÃĒ estÃĄ tentando carregar excedeu o tamanho mÃĄximo para arquivos no servidor." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 8628e63a4de..df8a73ee300 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <daniel@mouxy.net>, 2012. +# <daniel@mouxy.net>, 2012-2013. # Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. # <geral@ricardolameiro.pt>, 2012. # Helder Meneses <helder.meneses@gmail.com>, 2012. @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 00:41+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 15:33+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -22,46 +22,58 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Sem erro, ficheiro enviado com sucesso" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado sÃŗ foi enviado parcialmente" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "NÃŖo foi enviado nenhum ficheiro" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Falta uma pasta temporÃĄria" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "Espaço em disco insuficiente!" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "DirectÃŗrio InvÃĄlido" + #: appinfo/app.php:10 msgid "Files" msgstr "Ficheiros" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Apagar" @@ -69,39 +81,39 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "O nome {new_name} jÃĄ existe" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "substituir" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "Sugira um nome" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "{new_name} substituido" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "desfazer" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "{files} nÃŖo partilhado(s)" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "{files} eliminado(s)" @@ -111,80 +123,80 @@ msgid "" "allowed." msgstr "Nome InvÃĄlido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' nÃŖo sÃŖo permitidos." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "a gerar o ficheiro ZIP, poderÃĄ demorar algum tempo." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Erro no envio" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Fechar" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pendente" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "A carregar {count} ficheiros" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "O envio foi cancelado." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Nome de pasta invÃĄlido! O uso de \"Shared\" (Partilhado) estÃĄ reservado pelo OwnCloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ficheiros analisados" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "erro ao analisar" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Nome" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Tamanho" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Modificado" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ficheiros" @@ -196,27 +208,27 @@ msgstr "Manuseamento de ficheiros" msgid "Maximum upload size" msgstr "Tamanho mÃĄximo de envio" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. possivel: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "NecessÃĄrio para descarregamento mÃēltiplo de ficheiros e pastas" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Permitir descarregar em ficheiro ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 Ê ilimitado" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Tamanho mÃĄximo para ficheiros ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Guardar" @@ -244,28 +256,28 @@ msgstr "Enviar" msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Transferir" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Envio muito grande" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que estÃĄ a tentar enviar excedem o tamanho mÃĄximo de envio permitido neste servidor." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estÃŖo a ser analisados, por favor aguarde." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "AnÃĄlise actual" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 3018d56bd26..5318d06fed8 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -4,7 +4,7 @@ # # Translators: # <daniel@mouxy.net>, 2012. -# Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. +# Duarte Velez Grilo <duartegrilo@gmail.com>, 2012-2013. # <geral@ricardolameiro.pt>, 2012. # Helder Meneses <helder.meneses@gmail.com>, 2012. # <rjgpp.1994@gmail.com>, 2012. @@ -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 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-03 00:04+0100\n" +"PO-Revision-Date: 2013-01-02 14:00+0000\n" +"Last-Translator: Duarte Velez Grilo <duartegrilo@gmail.com>\n" "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" @@ -249,11 +249,11 @@ msgstr "Criar" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Armazenamento PadrÃŖo" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Ilimitado" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -265,11 +265,11 @@ msgstr "Grupo Administrador" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Armazenamento" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "PadrÃŖo" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index d61dc617703..a3dee090ef5 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 00:09+0000\n" -"Last-Translator: laurentiucristescu <laur.cristescu@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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,37 +22,49 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nici un fiČier nu a fost ÃŽncÄrcat. Eroare necunoscutÄ" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nicio eroare, fiČierul a fost ÃŽncÄrcat cu succes" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "FiČierul a fost ÃŽncÄrcat doar parČial" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Niciun fiČier ÃŽncÄrcat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "LipseČte un dosar temporar" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "FiČiere" @@ -196,27 +208,27 @@ msgstr "Manipulare fiČiere" msgid "Maximum upload size" msgstr "Dimensiune maximÄ admisÄ la ÃŽncÄrcare" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. posibil:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Necesar pentru descÄrcarea mai multor fiČiere Či a dosarelor" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ActiveazÄ descÄrcare fiČiere compresate" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 e nelimitat" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "Dimensiunea maximÄ de intrare pentru fiČiere compresate" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Salvare" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 100c8901c66..7081267e64e 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 15:47+0000\n" -"Last-Translator: sam002 <semen@sam002.net>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,37 +27,49 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ФаКĐģ ĐŊĐĩ ĐąŅĐģ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊ. ĐĐĩиСвĐĩŅŅĐŊĐ°Ņ ĐžŅийĐēа" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ФаКĐģ ŅŅĐŋĐĩŅĐŊĐž ĐˇĐ°ĐŗŅŅĐļĐĩĐŊ" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ФаКĐģ ĐŋŅĐĩвŅŅаĐĩŅ ŅаСĐŧĐĩŅ ŅŅŅаĐŊОвĐģĐĩĐŊĐŊŅĐš upload_max_filesize в php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ФаКĐģ ĐąŅĐģ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊ ĐŊĐĩ ĐŋĐžĐģĐŊĐžŅŅŅŅ" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ФаКĐģ ĐŊĐĩ ĐąŅĐģ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ĐĐĩвОСĐŧĐžĐļĐŊĐž ĐŊаКŅи вŅĐĩĐŧĐĩĐŊĐŊŅŅ ĐŋаĐŋĐēŅ" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ĐŅийĐēа СаĐŋиŅи ĐŊа диŅĐē" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ФаКĐģŅ" @@ -120,76 +132,76 @@ msgstr "ĐĐĩĐŋŅавиĐģŅĐŊĐžĐĩ иĐŧŅ, '\\', '/', '<', '>', ':', '\"', '|', '? msgid "generating ZIP-file, it may take some time." msgstr "ŅОСдаĐŊиĐĩ ZIP-ŅаКĐģа, ŅŅĐž ĐŧĐžĐļĐĩŅ ĐˇĐ°ĐŊŅŅŅ ĐŊĐĩĐēĐžŅĐžŅĐžĐĩ вŅĐĩĐŧŅ." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ĐĐĩ ŅдаĐĩŅŅŅ ĐˇĐ°ĐŗŅŅСиŅŅ ŅаКĐģ ŅаСĐŧĐĩŅĐžĐŧ 0 ĐąĐ°ĐšŅ Đ˛ ĐēаŅаĐģĐžĐŗ" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "ĐŅийĐēа ĐˇĐ°ĐŗŅŅСĐēи" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "ĐаĐēŅŅŅŅ" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "ĐĐļидаĐŊиĐĩ" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "ĐˇĐ°ĐŗŅŅĐļаĐĩŅŅŅ 1 ŅаКĐģ" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ŅаКĐģОв ĐˇĐ°ĐŗŅŅĐļаĐĩŅŅŅ" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ĐĐ°ĐŗŅŅСĐēа ĐžŅĐŧĐĩĐŊĐĩĐŊа." -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ФаКĐģ в ĐŋŅĐžŅĐĩŅŅĐĩ ĐˇĐ°ĐŗŅŅСĐēи. ĐĐžĐēиĐŊŅв ŅŅŅаĐŊиŅŅ Đ˛Ņ ĐŋŅĐĩŅвŅŅĐĩ ĐˇĐ°ĐŗŅŅСĐēŅ." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "ĐĐĩ ĐŋŅавиĐģŅĐŊĐžĐĩ иĐŧŅ ĐŋаĐŋĐēи. ĐĐŧŅ \"Shared\" ŅĐĩСĐĩŅвиŅОваĐŊĐž в Owncloud" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ŅаКĐģОв ĐŋŅĐžŅĐēаĐŊиŅОваĐŊĐž" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "ĐžŅийĐēа вО вŅĐĩĐŧŅ ŅаĐŊиŅОваĐŊиŅ" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ĐаСваĐŊиĐĩ" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "РаСĐŧĐĩŅ" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ĐСĐŧĐĩĐŊŅĐŊ" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 ĐŋаĐŋĐēа" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} ĐŋаĐŋĐžĐē" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 ŅаКĐģ" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ŅаКĐģОв" @@ -201,27 +213,27 @@ msgstr "ĐŖĐŋŅавĐģĐĩĐŊиĐĩ ŅаКĐģаĐŧи" msgid "Maximum upload size" msgstr "ĐаĐēŅиĐŧаĐģŅĐŊŅĐš ŅаСĐŧĐĩŅ ĐˇĐ°ĐŗŅŅĐļаĐĩĐŧĐžĐŗĐž ŅаКĐģа" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ĐŧаĐēŅ. вОСĐŧĐžĐļĐŊĐž: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "ĐĸŅĐĩĐąŅĐĩŅŅŅ Đ´ĐģŅ ŅĐēаŅиваĐŊĐ¸Ņ ĐŊĐĩŅĐēĐžĐģŅĐēиŅ
ŅаКĐģОв и ĐŋаĐŋĐžĐē" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ĐĐēĐģŅŅиŅŅ ZIP-ŅĐēаŅиваĐŊиĐĩ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 - ĐąĐĩС ĐžĐŗŅаĐŊиŅĐĩĐŊиК" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ĐаĐēŅиĐŧаĐģŅĐŊŅĐš иŅŅ
ОдĐŊŅĐš ŅаСĐŧĐĩŅ Đ´ĐģŅ ZIP ŅаКĐģОв" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ĐĄĐžŅ
ŅаĐŊиŅŅ" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index acd6779fcd6..f8f0840c933 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/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: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 07:59+0000\n" -"Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,37 +19,49 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ФаКĐģ ĐŊĐĩ ĐąŅĐģ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊ. ĐĐĩиСвĐĩŅŅĐŊĐ°Ņ ĐžŅийĐēа" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ĐŅийĐēа ĐžŅŅŅŅŅŅвŅĐĩŅ, ŅаКĐģ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊ ŅŅĐŋĐĩŅĐŊĐž." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "РаСĐŧĐĩŅ ĐˇĐ°ĐŗŅŅĐļаĐĩĐŧĐžĐŗĐž ŅаКĐģа ĐŋŅĐĩвŅŅаĐĩŅ upload_max_filesize диŅĐĩĐēŅĐ¸Đ˛Ņ Đ˛ php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "РаСĐŧĐĩŅ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊĐŊĐžĐŗĐž" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ĐĐ°ĐŗŅŅĐļаĐĩĐŧŅĐš ŅаКĐģ ĐąŅĐģ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊ ŅаŅŅиŅĐŊĐž" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ФаКĐģ ĐŊĐĩ ĐąŅĐģ ĐˇĐ°ĐŗŅŅĐļĐĩĐŊ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ĐŅŅŅŅŅŅвŅĐĩŅ Đ˛ŅĐĩĐŧĐĩĐŊĐŊĐ°Ņ ĐŋаĐŋĐēа" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ĐĐĩ ŅдаĐģĐžŅŅ ĐˇĐ°ĐŋиŅаŅŅ ĐŊа диŅĐē" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ФаКĐģŅ" @@ -112,76 +124,76 @@ msgstr "ĐĐĩĐēĐžŅŅĐĩĐēŅĐŊĐžĐĩ иĐŧŅ, '\\', '/', '<', '>', ':', '\"', '|', '? msgid "generating ZIP-file, it may take some time." msgstr "ХОСдаĐŊиĐĩ ZIP-ŅаКĐģа, ŅŅĐž ĐŧĐžĐļĐĩŅ ĐˇĐ°ĐŊŅŅŅ ĐŊĐĩĐēĐžŅĐžŅĐžĐĩ вŅĐĩĐŧŅ." -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ĐĐĩвОСĐŧĐžĐļĐŊĐž ĐˇĐ°ĐŗŅŅСиŅŅ ŅаКĐģ,\n ŅаĐē ĐēаĐē ĐžĐŊ иĐŧĐĩĐĩŅ ĐŊŅĐģĐĩвОК ŅаСĐŧĐĩŅ Đ¸Đģи ŅвĐģŅĐĩŅŅŅ Đ´Đ¸ŅĐĩĐēŅĐžŅиĐĩĐš" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "ĐŅийĐēа ĐˇĐ°ĐŗŅŅСĐēи" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "ĐаĐēŅŅŅŅ" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "ĐĐļидаŅŅиК ŅĐĩŅĐĩĐŊиŅ" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "ĐˇĐ°ĐŗŅŅСĐēа 1 ŅаКĐģа" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{ĐēĐžĐģиŅĐĩŅŅвО} ĐˇĐ°ĐŗŅŅĐļĐĩĐŊĐž ŅаКĐģОв" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ĐĐ°ĐŗŅŅСĐēа ĐžŅĐŧĐĩĐŊĐĩĐŊа" -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ĐŅĐžŅĐĩŅŅ ĐˇĐ°ĐŗŅŅСĐēи ŅаКĐģа. ĐŅĐģи ĐŋĐžĐēиĐŊŅŅŅ ŅŅŅаĐŊиŅŅ ŅĐĩĐšŅаŅ, ĐˇĐ°ĐŗŅŅСĐēа ĐąŅĐ´ĐĩŅ ĐžŅĐŧĐĩĐŊĐĩĐŊа." -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "ĐĐĩĐēĐžŅŅĐĩĐēŅĐŊĐžĐĩ иĐŧŅ ĐŋаĐŋĐēи. ĐиĐŧĐĩĐŊОваĐŊиĐĩ \"ĐĐŋŅĐąĐģиĐēОваĐŊĐž\" СаŅĐĩСĐĩŅвиŅОваĐŊĐž ownCloud" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{ĐēĐžĐģиŅĐĩŅŅвО} ŅаКĐģОв ĐžŅŅĐēаĐŊиŅОваĐŊĐž" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "ĐžŅийĐēа ĐŋŅи ŅĐēаĐŊиŅОваĐŊии" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ĐĐŧŅ" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "РаСĐŧĐĩŅ" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ĐСĐŧĐĩĐŊĐĩĐŊ" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "1 ĐŋаĐŋĐēа" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "{ĐēĐžĐģиŅĐĩŅŅвО} ĐŋаĐŋĐžĐē" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "1 ŅаКĐģ" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "{ĐēĐžĐģиŅĐĩŅŅвО} ŅаКĐģОв" @@ -193,27 +205,27 @@ msgstr "РайОŅа Ņ ŅаКĐģаĐŧи" msgid "Maximum upload size" msgstr "ĐаĐēŅиĐŧаĐģŅĐŊŅĐš ŅаСĐŧĐĩŅ ĐˇĐ°ĐŗŅŅĐļаĐĩĐŧĐžĐŗĐž ŅаКĐģа" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ĐаĐēŅиĐŧаĐģŅĐŊĐž вОСĐŧĐžĐļĐŊŅĐš" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "ĐĐĩОйŅ
ОдиĐŧĐž Đ´ĐģŅ ĐŧĐŊĐžĐļĐĩŅŅвĐĩĐŊĐŊОК ĐˇĐ°ĐŗŅŅСĐēи." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ĐĐēĐģŅŅĐĩĐŊиĐĩ ZIP-ĐˇĐ°ĐŗŅŅСĐēи" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ĐąĐĩС ĐžĐŗŅаĐŊиŅĐĩĐŊиК" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ĐаĐēŅиĐŧаĐģŅĐŊŅĐš ŅаСĐŧĐĩŅ Đ˛Ņ
ОдŅŅиŅ
ZIP-ŅаКĐģОв " -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ĐĄĐžŅ
ŅаĐŊиŅŅ" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 0f0bb6776b0..ce3d8e19e61 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,58 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "āļāˇāļąāˇāˇāļ⎠āļāļŠāˇāļāļ āļąāˇāˇāˇāļąāˇ. āļąāˇāˇāˇāļŗāˇāļąāˇ āļ¯āˇāˇāļēāļāˇ" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "āļąāˇāˇāˇāļģāļ¯āˇ ⎠āļāˇāļąāˇāˇ āļāļŠāˇāļāļ āļāˇāļģāˇāļąāˇ" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "āļāļŠāˇāļāļ āļāˇ
āļāˇāļąāˇāˇāˇ āˇāˇāˇāˇāļŊāļāˇāˇāļē HTML āļ´āˇāļģāļ¸āļē⎠āļąāˇāļēāļ¸ āļāˇ
āļāļ⎠MAX_FILE_SIZE āˇāˇāˇāˇāļŊāļāˇāˇāļēāļ§ āˇāļŠāˇ āˇāˇāļŠāˇāļē" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "āļāļŠāˇāļāļ āļāˇ
āļāˇāļąāˇāˇāˇ āļāˇāļ§āˇāļ⎠āļ´āļ¸āļĢāļ⎠āļāļŠāˇāļāļ āˇāˇāļē" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "āļāˇāˇāˇāļ¯āˇ āļāˇāļąāˇāļ⎠āļāļŠāˇāļāļ āļąāˇāˇāˇāļąāˇ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "āļāˇāˇāļāˇāļŊāˇāļ āˇāˇāļŊāˇāļŠāļģāļēāļ⎠āˇāˇāļēāˇāļāļ āļąāˇāˇāˇāļ" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "āļāˇāļ§āˇāļāļ āļāˇāļģāˇāļ¸ āļ
āˇāˇāļģāˇāļŽāļāļēāˇ" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "āļāˇāļąāˇ" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "āļąāˇāļļāˇāļ¯āˇ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "āļ¸āļāļąāˇāļą" @@ -66,39 +78,39 @@ msgstr "āļ¸āļāļąāˇāļą" msgid "Rename" msgstr "āļąāˇāˇāļ āļąāļ¸āˇ āļāļģāļąāˇāļą" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "āļ´āˇâāļģāļāˇāˇāˇāļŽāˇāļ´āļąāļē āļāļģāļąāˇāļą" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "āļąāļ¸āļ⎠āļēāˇāļĸāļąāˇ āļāļģāļąāˇāļą" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "āļ
āļ⎠āˇāļģāˇāļąāˇāļą" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "āļąāˇāˇāˇāļ´āˇâāļģāļˇ āļāļģāļąāˇāļą" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "āļāˇāļąāˇāˇāļ⎠āˇāˇāļ¯āˇāļ¸āˇāļąāˇ āļ´āˇāļāˇ. āļāˇāļ§āˇ āˇāˇāļŊāˇāˇāļ⎠āļāļ āˇāˇāļē āˇāˇāļ" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "āļāļŠāˇāļāļ āļāˇāļģāˇāļ¸āˇ āļ¯āˇāˇāļēāļāˇ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "āˇāˇāļąāˇāļą" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 āļāˇāļąāˇāˇāļ⎠āļāļŠāļāļ āļāˇāļģāˇ" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "āļāļŠāˇāļāļ āļāˇāļģāˇāļ¸ āļ
āļ⎠āˇāļģāˇāļąāˇāļą āļŊāļ¯āˇ" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "āļāļŠāˇāļāļāļāˇāļģāˇāļ¸āļ⎠āˇāˇāļ¯āˇāˇāˇ. āļ´āˇāļ§āˇāˇ āˇāˇāļģ āļēāˇāļ¸āˇāļąāˇ āļāļē āļąāˇāˇāļāˇāļąāˇ āļāļ" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "āļ´āļģāˇāļāˇāˇāˇ āļāˇāļģāˇāļ¸āˇāļ¯āˇ āļ¯āˇāˇāļēāļāˇ" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "āļąāļ¸" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "āļ´āˇâāļģāļ¸āˇāļĢāļē" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "āˇāˇāļąāˇāˇ āļāˇ
" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 āˇāˇāļŊāˇāļŠāļģāļēāļāˇ" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 āļāˇāļąāˇāˇāļāˇ" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -193,27 +205,27 @@ msgstr "āļāˇāļąāˇ āļ´āļģāˇāˇāļģāļĢāļē" msgid "Maximum upload size" msgstr "āļāļŠāˇāļāļ āļāˇāļģāˇāļ¸āļ āļāļ´āļģāˇāļ¸ āļ´āˇâāļģāļ¸āˇāļĢāļē" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "āˇāˇāļ⎠āļāļ´āļģāˇāļ¸āļē:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "āļļāˇāˇ-āļāˇāļąāˇ āˇāˇ āˇāˇāļŊāˇāļŠāļģ āļļāˇāļāļ āļāˇāļģāˇāļ¸āļ§ āļ
āˇāˇāˇâāļēāļēāˇ" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP-āļļāˇāļāļ āļāˇāļģāˇāļ¸āˇ āˇāļāˇâāļģāˇāļē āļāļģāļąāˇāļą" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 āļēāļąāˇ āˇāˇāļ¸āˇāˇāļ⎠āļąāˇāļ⎠āļļāˇāļē" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP āļāˇāļąāˇ āˇāļŗāˇāˇ āļ¯āˇāļ¸āˇāļē āˇāˇāļ⎠āļāļ´āļģāˇāļ¸ āˇāˇāˇāˇāļŊāļāˇāļē" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "āˇāˇāļģāļāˇāļąāˇāļą" @@ -241,28 +253,28 @@ msgstr "āļāļŠāˇāļāļ āļāˇāļģāˇāļ¸" msgid "Cancel upload" msgstr "āļāļŠāˇāļāļ āļāˇāļģāˇāļ¸ āļ
āļ⎠āˇāļģāˇāļąāˇāļą" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "āļ¸āˇāˇāˇ āļāˇāˇāˇāˇāļ⎠āļąāˇāļ¸āˇāļ. āļēāļ¸āļ⎠āļāļŠāˇāļāļ āļāļģāļąāˇāļą" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "āļļāˇāļāļ āļāˇāļģāˇāļ¸" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "āļāļŠāˇāļāļ āļāˇāļģāˇāļ¸ āˇāˇāˇāˇāļŊ āˇāˇāļŠāˇāļē" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "āļāļļ āļāļŠāˇāļāļ āļāˇāļģāˇāļ¸āļ§ āļāˇāļ⎠āļāļģāļą āļāˇāļąāˇ āļ¸āˇāļ¸ āˇāˇāˇāˇāļ¯āˇāļēāļāļē⎠āļāļŠāˇāļāļ āļāˇāļģāˇāļ¸āļ§ āļāļŠāļ¯āˇ āļāļ⎠āļāļ´āļģāˇāļ¸ āļāˇāļąāˇ āˇāˇāˇāˇāļŊāļāˇāˇāļēāļ§ āˇāļŠāˇ āˇāˇāļŠāˇāļē" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "āļāˇāļąāˇ āļ´āļģāˇāļāˇāˇāˇ āļāˇāļģāˇ. āļ¸āļŗāļ⎠āļģāˇāļŗāˇ āˇāˇāļ§āˇāļąāˇāļą" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "āˇāļģāˇāļāļ¸āˇāļą āļ´āļģāˇāļāˇāˇāˇāˇ" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index d55899f3b3e..6e4cd382709 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/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: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 16:18+0000\n" -"Last-Translator: martin <zatroch.martin@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,58 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ÅŊiaden sÃēbor nebol odoslanÃŊ. NeznÃĄma chyba" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nenastala Åžiadna chyba, sÃēbor bol ÃēspeÅĄne nahranÃŊ" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "NahrÃĄvanÃŊ sÃēbor bol iba ÄiastoÄne nahranÃŊ" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ÅŊiaden sÃēbor nebol nahranÃŊ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ChÃŊbajÃēci doÄasnÃŊ prieÄinok" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ZÃĄpis na disk sa nepodaril" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "SÃēbory" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "NezdielaÅĨ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "OdstrÃĄniÅĨ" @@ -68,39 +80,39 @@ msgstr "OdstrÃĄniÅĨ" msgid "Rename" msgstr "PremenovaÅĨ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} uÅž existuje" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "nahradiÅĨ" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "pomôcÅĨ s menom" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "zruÅĄiÅĨ" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "prepÃsanÃŊ {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "vrÃĄtiÅĨ" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "prepÃsanÃŊ {new_name} sÃēborom {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "zdieÄžanie zruÅĄenÊ pre {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "zmazanÊ {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "NesprÃĄvne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sÃē povolenÊ hodnoty." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "generujem ZIP-sÃēbor, môŞe to chvÃÄžu trvaÅĨ." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Chyba odosielania" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ZavrieÅĨ" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "ÄakÃĄ sa" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 sÃēbor sa posiela " -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} sÃēborov odosielanÃŊch" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Odosielanie zruÅĄenÊ" -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "NesprÃĄvne meno adresÃĄra. PouÅžitie slova \"Shared\" (ZdieÄžanÊ) je vyhradenÊ sluÅžbou ownCloud." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} sÃēborov prehÄžadanÃŊch" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "chyba poÄas kontroly" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Meno" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "VeÄžkosÅĨ" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "UpravenÊ" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 prieÄinok" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} prieÄinkov" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 sÃēbor" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} sÃēborov" @@ -195,27 +207,27 @@ msgstr "Nastavenie sprÃĄvanie k sÃēborom" msgid "Maximum upload size" msgstr "MaximÃĄlna veÄžkosÅĨ odosielanÊho sÃēboru" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "najväÄÅĄie moÅžnÊ:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "VyÅžadovanÊ pre sÅĨahovanie viacerÃŊch sÃēborov a adresÃĄrov." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "PovoliÅĨ sÅĨahovanie ZIP sÃēborov" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 znamenÃĄ neobmedzenÊ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "NajväÄÅĄia veÄžkosÅĨ ZIP sÃēborov" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "UloÅžiÅĨ" @@ -243,28 +255,28 @@ msgstr "OdoslaÅĨ" msgid "Cancel upload" msgstr "ZruÅĄiÅĨ odosielanie" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ÅŊiadny sÃēbor. Nahrajte nieÄo!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "StiahnuÅĨ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "OdosielanÃŊ sÃēbor je prÃliÅĄ veÄžkÃŊ" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "SÃēbory, ktorÊ sa snaÅžÃte nahraÅĨ, presahujÃē maximÃĄlnu veÄžkosÅĨ pre nahratie sÃēborov na tento server." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Äakajte, sÃēbory sÃē prehÄžadÃĄvanÊ." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "PrÃĄve prehliadanÊ" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index db703c7acc4..5958b770296 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/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: 2012-12-09 00:11+0100\n" -"PO-Revision-Date: 2012-12-07 23:34+0000\n" -"Last-Translator: Peter PeroÅĄa <peter.perosa@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Nobena datoteka ni naloÅžena. Neznana napaka." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspeÅĄno naloÅžena brez napak." -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je le delno naloÅžena" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nobena datoteka ni bila naloÅžena" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Manjka zaÄasna mapa" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Datoteke" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Odstrani iz souporabe" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "IzbriÅĄi" @@ -68,39 +80,39 @@ msgstr "IzbriÅĄi" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} Åže obstaja" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "prekliÄi" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "zamenjano je ime {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "zamenjano ime {new_name} z imenom {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "odstranjeno iz souporabe {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "izbrisano {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: js/files.js:184 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Ustvarjanje datoteke ZIP. To lahko traja nekaj Äasa." -#: js/files.js:219 +#: js/files.js:212 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:219 +#: js/files.js:212 msgid "Upload Error" msgstr "Napaka med nalaganjem" -#: js/files.js:236 +#: js/files.js:229 msgid "Close" msgstr "Zapri" -#: js/files.js:255 js/files.js:369 js/files.js:399 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "V Äakanju ..." -#: js/files.js:275 +#: js/files.js:268 msgid "1 file uploading" msgstr "PoÅĄiljanje 1 datoteke" -#: js/files.js:278 js/files.js:332 js/files.js:347 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "nalagam {count} datotek" -#: js/files.js:350 js/files.js:383 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "PoÅĄiljanje je preklicano." -#: js/files.js:452 +#: js/files.js:445 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:524 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Neveljavno ime datoteke. Uporaba mape \"Share\" je rezervirana za ownCloud." -#: js/files.js:705 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} files scanned" -#: js/files.js:713 +#: js/files.js:707 msgid "error while scanning" msgstr "napaka med pregledovanjem datotek" -#: js/files.js:786 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Ime" -#: js/files.js:787 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Velikost" -#: js/files.js:788 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:815 +#: js/files.js:801 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:817 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:825 +#: js/files.js:811 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:827 +#: js/files.js:813 msgid "{count} files" msgstr "{count} datotek" @@ -195,27 +207,27 @@ msgstr "Upravljanje z datotekami" msgid "Maximum upload size" msgstr "NajveÄja velikost za poÅĄiljanja" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "najveÄ mogoÄe:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Uporabljeno za prenos veÄ datotek in map." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "OmogoÄi prejemanje arhivov ZIP" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 je neskonÄno" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "NajveÄja vhodna velikost za datoteke ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Shrani" @@ -243,28 +255,28 @@ msgstr "PoÅĄlji" msgid "Cancel upload" msgstr "PrekliÄi poÅĄiljanje" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Tukaj ni niÄesar. NaloÅžite kaj!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Prejmi" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Nalaganje ni mogoÄe, ker je preveliko" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih Åželite naloÅžiti, presegajo najveÄjo dovoljeno velikost na tem streÅžniku." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Poteka preuÄevanje datotek, poÄakajte ..." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Trenutno poteka preuÄevanje" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index e10cc61469b..1b42ec608f7 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -5,15 +5,15 @@ # Translators: # <>, 2012. # <peter.perosa@gmail.com>, 2012. -# Peter PeroÅĄa <peter.perosa@gmail.com>, 2012. +# Peter PeroÅĄa <peter.perosa@gmail.com>, 2012-2013. # <urossolar@hotmail.com>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-30 00:04+0100\n" -"PO-Revision-Date: 2012-12-29 23:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"PO-Revision-Date: 2013-01-01 14:26+0000\n" +"Last-Translator: Peter PeroÅĄa <peter.perosa@gmail.com>\n" "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" @@ -121,27 +121,27 @@ msgstr "<span class=\"licence\"></span>-z dovoljenjem s strani <span class=\"aut #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "UporabniÅĄka dokumentacija" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "Administratorjeva dokumentacija" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "Spletna dokumentacija" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "Sistem za sledenje napakam" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "Komercialna podpora" #: templates/personal.php:8 #, php-format @@ -154,15 +154,15 @@ msgstr "Stranka" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Prenesi namizne odjemalce" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Prenesi Android odjemalec" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Prenesi iOS odjemalec" #: templates/personal.php:21 templates/users.php:23 templates/users.php:82 msgid "Password" @@ -214,15 +214,15 @@ msgstr "Pomagajte pri prevajanju" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Uporabite ta naslov za povezavo do ownCloud v vaÅĄem upravljalniku datotek." #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "RazliÄica" #: templates/personal.php:65 msgid "" @@ -248,11 +248,11 @@ msgstr "Ustvari" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Privzeta shramba" #: templates/users.php:42 templates/users.php:138 msgid "Unlimited" -msgstr "" +msgstr "Neomejeno" #: templates/users.php:60 templates/users.php:153 msgid "Other" @@ -264,11 +264,11 @@ msgstr "Skrbnik skupine" #: templates/users.php:87 msgid "Storage" -msgstr "" +msgstr "Shramba" #: templates/users.php:133 msgid "Default" -msgstr "" +msgstr "Privzeto" #: templates/users.php:161 msgid "Delete" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index b5b34116c6f..c6891589fd4 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Peter PeroÅĄa <peter.perosa@gmail.com>, 2012. +# Peter PeroÅĄa <peter.perosa@gmail.com>, 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-01-02 00:04+0100\n" +"PO-Revision-Date: 2013-01-01 14:17+0000\n" +"Last-Translator: Peter PeroÅĄa <peter.perosa@gmail.com>\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" @@ -20,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud bo poslal uporabniÅĄka poverila temu URL naslovu. Pri tem bo interpretiral http 401 in http 403 odgovor kot spodletelo avtentikacijo ter vse ostale http odgovore kot uspeÅĄne." diff --git a/l10n/sq/files.po b/l10n/sq/files.po index c3bd0a63259..efe363e09ed 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,58 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 2eac1068a25..19a9c5e5c01 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/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: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 18:27+0000\n" -"Last-Translator: Rancher <theranchcowboy@gmail.com>\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -20,46 +20,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ĐиŅĐĩ Đ´ĐžŅĐģĐž Đ´Đž ĐŗŅĐĩŅĐēĐĩ. ĐаŅĐžŅĐĩĐēа ŅĐĩ ŅŅĐŋĐĩŅĐŊĐž ĐžŅĐŋŅĐĩĐŧŅĐĩĐŊа." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ĐŅĐŋŅĐĩĐŧŅĐĩĐŊа даŅĐžŅĐĩĐēа ĐŋŅĐĩĐģаСи ŅĐŧĐĩŅĐŊиŅŅ upload_max_filesize Ņ Đ´Đ°ŅĐžŅĐĩŅи php.ini:" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ĐаŅĐžŅĐĩĐēа ŅĐĩ Đ´ĐĩĐģиĐŧиŅĐŊĐž ĐžŅĐŋŅĐĩĐŧŅĐĩĐŊа" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ĐаŅĐžŅĐĩĐēа ĐŊиŅĐĩ ĐžŅĐŋŅĐĩĐŧŅĐĩĐŊа" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ĐĐĩĐ´ĐžŅŅаŅĐĩ ĐŋŅивŅĐĩĐŧĐĩĐŊа ŅаŅŅиĐēĐģа" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ĐĐĩ ĐŧĐžĐŗŅ Đ´Đ° ĐŋиŅĐĩĐŧ ĐŊа диŅĐē" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ĐаŅĐžŅĐĩĐēĐĩ" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "ĐŖĐēиĐŊи Đ´ĐĩŅĐĩŅĐĩ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "ĐĐąŅиŅи" @@ -67,39 +79,39 @@ msgstr "ĐĐąŅиŅи" msgid "Rename" msgstr "ĐŅĐĩиĐŧĐĩĐŊŅŅ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} вĐĩŅ ĐŋĐžŅŅĐžŅи" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "СаĐŧĐĩĐŊи" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "ĐŋŅĐĩĐ´ĐģĐžĐļи ĐŊаСив" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ĐžŅĐēаĐļи" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "СаĐŧĐĩŅĐĩĐŊĐž {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "ĐžĐŋОСОви" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "СаĐŧĐĩŅĐĩĐŊĐž {new_name} Ņа {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "ŅĐēиĐŊŅŅĐž Đ´ĐĩŅĐĩŅĐĩ {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "ОйŅиŅаĐŊĐž {files}" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "ĐĐĩиŅĐŋŅаваĐŊ ĐŊаСив. ĐĄĐģĐĩĐ´ĐĩŅи СĐŊаĐēОви ĐŊиŅŅ Đ´ĐžĐˇĐ˛ĐžŅĐĩĐŊи: \\, /, <, >, :, \", |, ? и *." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ĐŋŅавиĐŧ ZIP даŅĐžŅĐĩĐēŅâĻ" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ĐĐĩ ĐŧĐžĐŗŅ Đ´Đ° ĐžŅĐŋŅĐĩĐŧиĐŧ даŅĐžŅĐĩĐēŅ ĐēаО ŅаŅŅиĐēĐģŅ Đ¸Đģи ĐžĐŊа иĐŧа 0 йаŅŅОва" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ĐŅĐĩŅĐēа ĐŋŅи ĐžŅĐŋŅĐĩĐŧаŅŅ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ĐаŅвОŅи" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Đа ŅĐĩĐēаŅŅ" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "ĐŅĐŋŅĐĩĐŧаĐŧ 1 даŅĐžŅĐĩĐēŅ" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "ĐŅĐŋŅĐĩĐŧаĐŧ {count} даŅĐžŅĐĩĐēĐĩ/а" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ĐŅĐŋŅĐĩĐŧаŅĐĩ ŅĐĩ ĐŋŅĐĩĐēиĐŊŅŅĐž." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ĐŅĐŋŅĐĩĐŧаŅĐĩ даŅĐžŅĐĩĐēĐĩ ŅĐĩ Ņ ŅĐžĐēŅ. ĐĐēĐž Ņада ĐŊаĐŋŅŅŅиŅĐĩ ŅŅŅаĐŊиŅŅ, ĐŋŅĐĩĐēиĐŊŅŅĐĩŅĐĩ ĐžŅĐŋŅĐĩĐŧаŅĐĩ." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "ĐĐĩиŅĐŋŅаваĐŊ ĐŊаСив ŅаŅŅиĐēĐģĐĩ. âĐĐĩŅĐĩĐŊĐžâ ĐēĐžŅиŅŅи ĐŅĐŊĐēĐģаŅĐ´." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "ĐĄĐēĐĩĐŊиŅаĐŊĐž даŅĐžŅĐĩĐēа: {count}" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "ĐŗŅĐĩŅĐēа ĐŋŅи ŅĐēĐĩĐŊиŅаŅŅ" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ĐаСив" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "ĐĐĩĐģиŅиĐŊа" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ĐСĐŧĐĩŅĐĩĐŊĐž" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 ŅаŅŅиĐēĐģа" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} ŅаŅŅиĐēĐģĐĩ/и" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 даŅĐžŅĐĩĐēа" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} даŅĐžŅĐĩĐēĐĩ/а" @@ -194,27 +206,27 @@ msgstr "ĐŖĐŋŅавŅаŅĐĩ даŅĐžŅĐĩĐēаĐŧа" msgid "Maximum upload size" msgstr "ĐаŅвĐĩŅа вĐĩĐģиŅиĐŊа даŅĐžŅĐĩĐēĐĩ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ĐŊаŅвĐĩŅа вĐĩĐģиŅиĐŊа:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "ĐĐĩĐžĐŋŅ
ОдĐŊĐž Са ĐŋŅĐĩŅСиĐŧаŅĐĩ виŅĐĩĐ´ĐĩĐģĐŊиŅ
даŅĐžŅĐĩĐēа и ŅаŅŅиĐēĐģи." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ĐĐŧĐžĐŗŅŅи ĐŋŅĐĩŅСиĐŧаŅĐĩ Ņ ZIP-Ņ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ŅĐĩ ĐŊĐĩĐžĐŗŅаĐŊиŅĐĩĐŊĐž" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ĐаŅвĐĩŅа вĐĩĐģиŅиĐŊа ZIP даŅĐžŅĐĩĐēа" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ХаŅŅваŅ" @@ -242,28 +254,28 @@ msgstr "ĐŅĐŋŅĐĩĐŧи" msgid "Cancel upload" msgstr "ĐŅĐĩĐēиĐŊи ĐžŅĐŋŅĐĩĐŧаŅĐĩ" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ĐвдĐĩ ĐŊĐĩĐŧа ĐŊиŅĐĩĐŗ. ĐŅĐŋŅĐĩĐŧиŅĐĩ ĐŊĐĩŅŅĐž!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ĐŅĐĩŅСĐŧи" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ĐаŅĐžŅĐĩĐēа ŅĐĩ ĐŋŅĐĩвĐĩĐģиĐēа" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ĐаŅĐžŅĐĩĐēĐĩ ĐēĐžŅĐĩ ĐļĐĩĐģиŅĐĩ да ĐžŅĐŋŅĐĩĐŧиŅĐĩ ĐŋŅĐĩĐģаСĐĩ ĐžĐŗŅаĐŊиŅĐĩŅĐĩ Ņ Đ˛ĐĩĐģиŅиĐŊи." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ĐĄĐēĐĩĐŊиŅаĐŧ даŅĐžŅĐĩĐēĐĩâĻ" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "ĐĸŅĐĩĐŊŅŅĐŊĐž ŅĐēĐĩĐŊиŅаŅĐĩ" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index fbaee12094b..be81ff388b3 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Nema greÅĄke, fajl je uspeÅĄno poslat" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimiÄno otpremljen!" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Fajlovi" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "ObriÅĄi" @@ -65,39 +77,39 @@ msgstr "ObriÅĄi" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Zatvori" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Ime" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "VeliÄina" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -192,27 +204,27 @@ msgstr "" msgid "Maximum upload size" msgstr "Maksimalna veliÄina poÅĄiljke" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Snimi" @@ -240,28 +252,28 @@ msgstr "PoÅĄalji" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Ovde nema niÄeg. PoÅĄaljite neÅĄto!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "PoÅĄiljka je prevelika" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje Åželite da poÅĄaljete prevazilaze ograniÄenje maksimalne veliÄine poÅĄiljke na ovom serveru." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 7c197ea6056..ae07b2b0daa 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 19:45+0000\n" -"Last-Translator: Magnus HÃļglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,46 +23,58 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Ingen fil uppladdad. Okänt fel" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Saknar en tillfällig mapp" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Sluta dela" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Radera" @@ -70,39 +82,39 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "ersätt" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "fÃļreslÃĨ namn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "ersatt {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "ÃĨngra" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "stoppad delning {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "raderade {files}" @@ -112,80 +124,80 @@ msgid "" "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillÃĨtet." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "genererar ZIP-fil, det kan ta lite tid." -#: js/files.js:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Uppladdningsfel" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Stäng" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Väntar" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} filer laddas upp" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Ordet \"Delad\" är reserverat av ownCloud." -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} filer skannade" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "fel vid skanning" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Namn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Storlek" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Ãndrad" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fil" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} filer" @@ -197,27 +209,27 @@ msgstr "Filhantering" msgid "Maximum upload size" msgstr "Maximal storlek att ladda upp" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "max. mÃļjligt:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Krävs fÃļr nerladdning av flera mappar och filer." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Aktivera ZIP-nerladdning" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 är oändligt" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "StÃļrsta tillÃĨtna storlek fÃļr ZIP-filer" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Spara" @@ -245,28 +257,28 @@ msgstr "Ladda upp" msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp nÃĨgot!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "FÃļr stor uppladdning" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du fÃļrsÃļker ladda upp Ãļverstiger den maximala storleken fÃļr filÃļverfÃļringar pÃĨ servern." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index b6abb44c847..86eaae3dd59 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,58 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "āŽāް❠āŽā¯āŽĒā¯āŽĒā¯āŽŽā¯ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽāŽĩāŽŋāŽ˛ā¯āޞā¯. āŽ
āŽąāŽŋāŽ¯āŽĒā¯āŽĒāŽāŽžāŽ¤ āŽĩāŽ´ā¯" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "āŽāŽā¯āŽā¯ āŽĩāŽ´ā¯ āŽāޞā¯āޞā¯, āŽā¯āŽĒā¯āŽĒ❠āŽĩā¯āŽąā¯āŽąāŽŋāŽāŽ°āŽŽāŽžāŽ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽāޤā¯" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽ āŽā¯āŽĒā¯āŽĒāŽžāŽŠāŽ¤ā¯ HTML āŽĒāŽāŽŋāŽĩāŽ¤ā¯āޤāŽŋāŽ˛ā¯ āŽā¯āŽąāŽŋāŽĒā¯āŽĒāŽŋāŽāŽĒā¯āŽĒāŽā¯āŽā¯āŽŗā¯āŽŗ MAX_FILE_SIZE directive āŽ āŽĩāŽŋāŽ āŽā¯āŽāŽŋāŽ¯āŽ¤ā¯" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽ āŽā¯āŽĒā¯āŽĒāŽžāŽŠāŽ¤ā¯ āŽĒāŽā¯āޤāŽŋāŽ¯āŽžāŽ āŽŽāŽā¯āŽā¯āŽŽā¯ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽā¯āŽŗā¯āŽŗāŽ¤ā¯" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "āŽāލā¯āޤ āŽā¯āŽĒā¯āŽĒā¯āŽŽā¯ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽāŽĩāŽŋāŽ˛ā¯āޞā¯" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "āŽāŽ°ā¯ āŽ¤āŽąā¯āŽāŽžāŽ˛āŽŋāŽāŽŽāŽžāŽŠ āŽā¯āŽĒā¯āŽĒā¯āŽąā¯āޝ❠āŽāŽžāŽŖāŽĩāŽŋāŽ˛ā¯āޞā¯" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "āŽĩāŽā¯āŽāŽŋāŽ˛ā¯ āŽāŽ´ā¯āޤ āŽŽā¯āŽāŽŋāŽ¯āŽĩāŽŋāŽ˛ā¯āޞā¯" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "āŽā¯āŽĒā¯āŽĒā¯āŽāŽŗā¯" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "āŽĒāŽāŽŋāŽ°āŽĒā¯āŽĒāŽāŽžāŽ¤āŽ¤ā¯" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "āŽ
āŽ´āŽŋāŽā¯āŽ" @@ -65,39 +77,39 @@ msgstr "āŽ
āŽ´āŽŋāŽā¯āŽ" msgid "Rename" msgstr "āŽĒā¯āŽ¯āŽ°ā¯āŽŽāŽžāŽąā¯āŽąāŽŽā¯" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} āŽāŽąā¯āŽāŽŠāŽĩ❠āŽāŽŗā¯āŽŗāŽ¤ā¯" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "āŽŽāŽžāŽąā¯āŽąāŽŋāŽā¯āŽ" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "āŽĒā¯āŽ¯āŽ°ā¯ āŽĒāŽ°āŽŋāŽ¨ā¯āޤā¯āްā¯āŽā¯āŽ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "āŽāŽ°āŽ¤ā¯āޤ❠āŽā¯āޝā¯āŽ" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "āŽŽāŽžāŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽāޤ❠{new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "āŽŽā¯āŽŠā¯ āŽā¯āŽ¯āŽ˛ā¯ āŽ¨ā¯āŽā¯āŽāŽŽā¯ " -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} āŽāŽŠāŽ¤ā¯ {old_name} āŽāŽŠāŽžāŽ˛ā¯ āŽŽāŽžāŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽāޤā¯" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "āŽĒāŽāŽŋāŽ°āŽĒā¯āŽĒāŽāŽžāŽ¤āŽ¤ā¯ {āŽā¯āŽĒā¯āŽĒā¯āŽāŽŗā¯}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "āŽ¨ā¯āŽā¯āŽāŽĒā¯āŽĒāŽā¯āŽāޤ❠{āŽā¯āŽĒā¯āŽĒā¯āŽāŽŗā¯}" @@ -107,80 +119,80 @@ msgid "" "allowed." msgstr "āŽā¯āޞā¯āޞā¯āŽĒāŽāŽŋāŽ¯āŽąā¯āŽą āŽĒā¯āŽ¯āŽ°ā¯,'\\', '/', '<', '>', ':', '\"', '|', '?' āŽŽāŽąā¯āŽąā¯āŽŽā¯ '*' āŽāŽāŽŋāŽ¯āŽŠ āŽ
āŽŠā¯āŽŽāŽ¤āŽŋāŽā¯āŽāŽĒā¯āŽĒāŽāŽŽāŽžāŽā¯āŽāŽžāŽ¤ā¯." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr " ZIP āŽā¯āŽĒā¯āŽĒ❠āŽāްā¯āŽĩāŽžāŽā¯āŽāŽĒā¯āŽĒāŽā¯āŽāŽŋāŽŠā¯āŽąāŽ¤ā¯, āŽāޤ❠āŽāŽŋāŽ˛ āŽ¨ā¯āŽ°āŽŽā¯ āŽāŽāŽ˛āŽžāŽŽā¯." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "āŽ
āŽā¯āŽĩ❠āŽ
āŽ˛ā¯āŽ˛āŽ¤ā¯ 0 bytes āŽ āŽā¯āŽŖā¯āŽā¯āŽŗā¯āŽŗāŽ¤āŽžāŽ˛ā¯ āŽāŽā¯āŽāŽŗā¯āŽā¯āޝ āŽā¯āŽžāŽĒā¯āŽĒ❠āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽą āŽŽā¯āŽāŽŋāŽ¯āŽĩāŽŋāŽ˛ā¯āޞā¯" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽ˛ā¯ āŽĩāŽ´ā¯" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "āŽŽā¯āŽā¯āŽ" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "āŽ¨āŽŋāŽ˛ā¯āŽĩā¯āޝāŽŋāŽ˛ā¯āŽŗā¯āŽŗ" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 āŽā¯āŽĒā¯āŽĒ❠āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽāŽŋāŽąāŽ¤ā¯" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{āŽāŽŖā¯āŽŖāŽŋāŽā¯āŽā¯} āŽā¯āŽĒā¯āŽĒā¯āŽā޺❠āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽāŽŋāŽŠā¯āŽąāŽ¤ā¯" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽ˛ā¯ āŽāŽ°āŽ¤ā¯āޤ❠āŽā¯āޝā¯āޝāŽĒā¯āŽĒāŽā¯āŽā¯āŽŗā¯āŽŗāŽ¤ā¯" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "āŽā¯āŽĒā¯āŽĒ❠āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽŽā¯ āŽā¯āŽ¯āŽ˛ā¯āŽĒāŽžāŽā¯āŽāŽŋāŽ˛ā¯ āŽāŽŗā¯āŽŗāŽ¤ā¯. āŽāލā¯āޤāŽĒ❠āŽĒāŽā¯āŽāޤā¯āޤāŽŋāŽ˛āŽŋāŽ°ā¯āލā¯āޤ❠āŽĩā¯āŽąāŽŋāŽ¯ā¯āŽąā¯āŽĩāŽ¤āŽžāŽŠāŽ¤ā¯ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽ˛ā¯ āŽāŽ°āŽ¤ā¯āޤ❠āŽā¯āޝā¯āޝā¯āŽŽā¯." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "āŽā¯āޞā¯āޞā¯āŽĒāŽāŽŋāŽ¯āŽąā¯āŽą āŽā¯āŽĒā¯āŽĒā¯āŽąā¯ āŽĒā¯āŽ¯āŽ°ā¯. \"āŽĒāŽāŽŋāŽ°ā¯āŽĩāŽŋāŽŠā¯\" āŽĒāŽžāŽĩāŽŠā¯ Owncloud āŽāŽŠāŽžāŽ˛ā¯ āŽāޤā¯āŽā¯āŽāŽĒā¯āŽĒāŽā¯āŽā¯āŽŗā¯āŽŗāŽ¤ā¯" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{āŽāŽŖā¯āŽŖāŽŋāŽā¯āŽā¯} āŽā¯āŽĒā¯āŽĒā¯āŽā޺❠āŽĩāŽ°ā¯āŽāŽĒā¯āŽĒāŽā¯āŽāޤā¯" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "āŽĩāŽ°ā¯āŽā¯āŽŽā¯ āŽĒā¯āŽ¤āŽžāŽŠ āŽĩāŽ´ā¯" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "āŽĒā¯āŽ¯āŽ°ā¯" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "āŽ
āŽŗāŽĩā¯" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "āŽŽāŽžāŽąā¯āŽąāŽĒā¯āŽĒāŽā¯āŽāޤā¯" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 āŽā¯āŽĒā¯āŽĒā¯āŽąā¯" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{āŽāŽŖā¯āŽŖāŽŋāŽā¯āŽā¯} āŽā¯āŽĒā¯āŽĒā¯āŽąā¯āŽāŽŗā¯" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 āŽā¯āŽĒā¯āŽĒā¯" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{āŽāŽŖā¯āŽŖāŽŋāŽā¯āŽā¯} āŽā¯āŽĒā¯āŽĒā¯āŽāŽŗā¯" @@ -192,27 +204,27 @@ msgstr "āŽā¯āŽĒā¯āŽĒ❠āŽā¯āŽ¯āŽžāŽŗā¯āŽ¤āŽ˛ā¯" msgid "Maximum upload size" msgstr "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽā¯āŽā¯āŽāŽŋāŽ¯ āŽāŽāŽā¯āŽā¯āŽāŽŋāŽ¯ āŽ
āŽŗāŽĩ❠" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "āŽāŽāŽā¯ āŽā¯āŽāŽŋāŽ¯āŽ¤ā¯:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "āŽĒāŽ˛ā¯āŽĩā¯āŽąā¯āŽĒā¯āŽĒāŽā¯āŽ āŽā¯āŽĒā¯āŽĒā¯ āŽŽāŽąā¯āŽąā¯āŽŽā¯ āŽā¯āŽĒā¯āŽĒā¯āŽąā¯āŽā޺❠āŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽā¯āŽ āŽ¤ā¯āŽĩā¯āŽ¯āŽžāŽŠāŽ¤ā¯." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP āŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽā¯āŽāޞ❠āŽāŽ¯āŽ˛ā¯āŽŽā¯āŽĒā¯āŽĒāŽā¯āޤā¯āޤā¯āŽ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 āŽāŽŠāŽ¤ā¯ āŽāޞā¯āޞā¯āŽ¯āŽąā¯āŽąāŽ¤ā¯" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP āŽā¯āŽĒā¯āŽĒā¯āŽāŽŗā¯āŽā¯āŽāŽžāŽŠ āŽāŽāŽā¯āŽā¯āŽāŽŋāŽ¯ āŽāŽŗā¯āŽŗā¯āŽā¯āŽā¯ āŽ
āŽŗāŽĩā¯" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "āŽā¯āŽŽāŽŋāŽā¯āŽ" @@ -240,28 +252,28 @@ msgstr "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąā¯āŽ" msgid "Cancel upload" msgstr "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽ˛ā¯ āŽāŽ°āŽ¤ā¯āޤ❠āŽā¯āޝā¯āŽ" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "āŽāŽā¯āŽā¯ āŽāŽŠā¯āŽąā¯āŽŽā¯ āŽāޞā¯āޞā¯. āŽāŽ¤āŽžāŽĩāŽ¤ā¯ āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąā¯āŽ!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "āŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽā¯āŽā¯āŽ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽ˛ā¯ āŽŽāŽŋāŽāŽĒā¯āŽĒā¯āްāŽŋāŽ¯āŽ¤ā¯" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "āŽ¨ā¯āŽā¯āŽā޺❠āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽą āŽŽā¯āŽ¯āŽąā¯āŽāŽŋāŽā¯āŽā¯āŽŽā¯ āŽā¯āŽĒā¯āŽĒā¯āŽāŽŗāŽžāŽŠāŽ¤ā¯ āŽāލā¯āޤ āŽā¯āŽĩā¯āޝāŽāޤā¯āޤāŽŋāŽ˛ā¯ āŽā¯āŽĒā¯āŽĒ❠āŽĒāŽ¤āŽŋāŽĩā¯āŽąā¯āŽąāŽā¯āŽā¯āŽāŽŋāŽ¯ āŽāŽāŽā¯āŽā¯āŽāŽŋāŽ¯ āŽ
āŽŗāŽĩāŽŋāŽ˛ā¯āŽŽā¯ āŽā¯āŽāŽŋāŽ¯āŽ¤ā¯." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "āŽā¯āŽĒā¯āŽĒā¯āŽā޺❠āŽĩāŽ°ā¯āŽāŽĒā¯āŽĒāŽā¯āŽāŽŋāŽŠā¯āŽąāŽŠ, āŽ¤āŽ¯āŽĩā¯āŽā¯āޝā¯āޤ❠āŽāŽžāŽ¤ā¯āޤāŽŋāŽ°ā¯āŽā¯āŽāŽŗā¯." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "āŽ¤āŽąā¯āŽĒā¯āޤ❠āŽĩāŽ°ā¯āŽāŽĒā¯āŽĒāŽā¯āŽĒāŽĩā¯" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index cc33a324c89..6be8fc8018a 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9834fd44815..75c8980fa85 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,37 +17,49 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 1741ce20902..e43c1143691 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ba153383185..9036d8d3091 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 252ca02fd8c..a260296a66a 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 50c7690b122..78905414136 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 48ce7c8f931..7da716a8aab 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index b4e0bb7c2ba..f933cb03821 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 3090e074b57..fc4eb6385e7 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3612d95289b..6189b17c9a8 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: 2012-12-31 00:04+0100\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index cff6308811a..4ba029facfd 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/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: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 10:27+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,37 +19,49 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ā¸ĸā¸ąā¸āšā¸Ąāšā¸Ąā¸ĩāšā¸ā¸Ĩāšāšā¸ā¸ā¸ĩāšā¸ā¸šā¸ā¸ā¸ąā¸āšā¸Ģā¸Ĩ⏠āšā¸ā¸´ā¸ā¸āšā¸ā¸ā¸´ā¸ā¸ā¸Ĩ⏞ā¸ā¸ā¸ĩāšāšā¸Ąāšā¸ā¸Ŗā¸˛ā¸ā¸Ē⏞āšā¸Ģā¸ā¸¸" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "āšā¸Ąāšā¸Ąā¸ĩā¸āšā¸ā¸ā¸´ā¸ā¸ā¸Ĩ⏞ā¸āšā¸āš āšā¸ā¸Ĩāšā¸ā¸šā¸ā¸ā¸ąā¸āšā¸Ģā¸Ĩā¸āšā¸Ŗā¸ĩā¸ĸā¸ā¸Ŗāšā¸ā¸ĸāšā¸Ĩāšā¸§" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ā¸ā¸ā¸˛ā¸āšā¸ā¸Ĩāšā¸ā¸ĩāšā¸ā¸ąā¸āšā¸Ģā¸Ĩā¸ā¸Ąā¸ĩā¸ā¸ā¸˛ā¸āšā¸ā¸´ā¸ upload_max_filesize ā¸ā¸ĩāšā¸Ŗā¸°ā¸ā¸¸āšā¸§āšāšā¸ php.ini" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "āšā¸ā¸Ĩāšā¸ā¸ĩāšā¸ā¸ąā¸āšā¸Ģā¸Ĩā¸ā¸ĸā¸ąā¸āšā¸Ąāšāšā¸āšā¸ā¸šā¸ā¸ā¸ąā¸āšā¸Ģā¸Ĩā¸ā¸ā¸ĸāšā¸˛ā¸ā¸Ēā¸Ąā¸ā¸šā¸Ŗā¸āš" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ā¸ĸā¸ąā¸āšā¸Ąāšā¸Ąā¸ĩāšā¸ā¸Ĩāšā¸ā¸ĩāšā¸ā¸šā¸ā¸ā¸ąā¸āšā¸Ģā¸Ĩā¸" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "āšā¸āšā¸Ąāšā¸ā¸ā¸Ē⏞⏪ā¸ā¸ąāšā¸§ā¸ā¸Ŗā¸˛ā¸§āšā¸ā¸´ā¸ā¸ā¸˛ā¸Ŗā¸Ēā¸šā¸ā¸Ģ⏞ā¸ĸ" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "āšā¸ā¸ĩā¸ĸā¸ā¸āšā¸ā¸Ąā¸šā¸Ĩā¸Ĩā¸āšā¸āšā¸ā¸ā¸´ā¸Ēā¸āšā¸Ĩāšā¸Ąāšā¸Ģā¸Ĩ⏧" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "āšā¸ā¸Ĩāš" @@ -193,27 +205,27 @@ msgstr "ā¸ā¸˛ā¸Ŗā¸ā¸ąā¸ā¸ā¸˛āšā¸ā¸Ĩāš" msgid "Maximum upload size" msgstr "ā¸ā¸ā¸˛ā¸āšā¸ā¸Ĩāšā¸Ēā¸šā¸ā¸Ē⏏ā¸ā¸ā¸ĩāšā¸ā¸ąā¸āšā¸Ģā¸Ĩā¸āšā¸āš" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ā¸ā¸ŗā¸ā¸§ā¸ā¸Ēā¸šā¸ā¸Ē⏏ā¸ā¸ā¸ĩāšā¸Ēā¸˛ā¸Ąā¸˛ā¸Ŗā¸ā¸ā¸ŗāšā¸āš: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "ā¸ā¸ŗāšā¸āšā¸ā¸āšā¸ā¸āšā¸āšā¸Ē⏺ā¸Ģā¸Ŗā¸ąā¸ā¸ā¸˛ā¸Ŗā¸ā¸˛ā¸§ā¸āšāšā¸Ģā¸Ĩā¸āšā¸ā¸Ĩāšā¸ā¸Ŗāšā¸ā¸Ąā¸ā¸ąā¸ā¸Ģā¸Ĩ⏞ā¸ĸāšāšā¸ā¸Ĩāšā¸Ģ⏪⏎ā¸ā¸ā¸˛ā¸§ā¸āšāšā¸Ģā¸Ĩā¸ā¸ā¸ąāšā¸āšā¸ā¸Ĩāšā¸ā¸ā¸Ŗāš" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ā¸ā¸ā¸¸ā¸ā¸˛ā¸āšā¸Ģāšā¸ā¸˛ā¸§ā¸āšāšā¸Ģā¸Ĩā¸āšā¸āšā¸āšā¸ā¸Ĩāš ZIP āšā¸āš" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ā¸Ģā¸Ąā¸˛ā¸ĸā¸ā¸ļā¸āšā¸Ąāšā¸ā¸ŗā¸ā¸ąā¸" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ā¸ā¸ā¸˛ā¸āšā¸ā¸Ĩāš ZIP ā¸Ēā¸šā¸ā¸Ē⏏ā¸" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ā¸ā¸ąā¸ā¸ā¸ļā¸" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index bfd4390738c..0346536aa7e 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/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: 2012-12-28 00:20+0100\n" -"PO-Revision-Date: 2012-12-27 11:23+0000\n" -"Last-Translator: Necdet YÃŧcel <necdetyucel@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -22,37 +22,49 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Dosya yÃŧklenmedi. Bilinmeyen hata" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "Bir hata yok, dosya baÅarÄąyla yÃŧklendi" -#: ajax/upload.php:21 +#: ajax/upload.php:22 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:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "YÃŧklenen dosyanÄąn sadece bir kÄąsmÄą yÃŧklendi" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Hiç dosya yÃŧklenmedi" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Geçici bir klasÃļr eksik" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Diske yazÄąlamadÄą" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Dosyalar" @@ -196,27 +208,27 @@ msgstr "Dosya taÅÄąma" msgid "Maximum upload size" msgstr "Maksimum yÃŧkleme boyutu" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "mÃŧmkÃŧn olan en fazla: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Ãoklu dosya ve dizin indirmesi için gerekli." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ZIP indirmeyi aktif et" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 limitsiz demektir" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP dosyalarÄą için en fazla girdi sayÄąsÄą" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Kaydet" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index c37f23560d7..4e662e7cffa 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/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: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 10:32+0000\n" -"Last-Translator: volodya327 <volodya327@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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,46 +20,58 @@ 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/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "ĐĐĩ СаваĐŊŅаĐļĐĩĐŊĐž ĐļОдĐŊĐžĐŗĐž ŅаКĐģŅ. ĐĐĩвŅĐ´ĐžĐŧа ĐŋĐžĐŧиĐģĐēа" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "ФаКĐģ ŅŅĐŋŅŅĐŊĐž виваĐŊŅаĐļĐĩĐŊĐž ĐąĐĩС ĐŋĐžĐŧиĐģĐžĐē." -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "РОСĐŧŅŅ ĐˇĐ˛Đ°ĐŊŅаĐļĐĩĐŊĐŊŅ ĐŋĐĩŅĐĩвиŅŅŅ upload_max_filesize ĐŋаŅаĐŧĐĩŅŅа в php.ini: " -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "ФаКĐģ вŅдваĐŊŅаĐļĐĩĐŊĐž ĐģиŅĐĩ ŅаŅŅĐēОвО" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "ĐĐĩ вŅдваĐŊŅаĐļĐĩĐŊĐž ĐļОдĐŊĐžĐŗĐž ŅаКĐģŅ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ĐŅĐ´ŅŅŅĐŊŅĐš ŅиĐŧŅаŅОвиК ĐēаŅаĐģĐžĐŗ" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "ĐĐĩвдаĐģĐžŅŅ ĐˇĐ°ĐŋиŅаŅи ĐŊа диŅĐē" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "ФаКĐģи" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "ĐайОŅĐžĐŊиŅи Đ´ĐžŅŅŅĐŋ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "ĐидаĐģиŅи" @@ -67,39 +79,39 @@ msgstr "ĐидаĐģиŅи" msgid "Rename" msgstr "ĐĐĩŅĐĩĐšĐŧĐĩĐŊŅваŅи" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} вĐļĐĩ ŅŅĐŊŅŅ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "СаĐŧŅĐŊа" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "СаĐŋŅĐžĐŋĐžĐŊŅĐšŅĐĩ ĐŊаСвŅ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "вŅĐ´ĐŧŅĐŊа" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "СаĐŧŅĐŊĐĩĐŊĐž {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "вŅĐ´ĐŧŅĐŊиŅи" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "СаĐŧŅĐŊĐĩĐŊĐž {new_name} ĐŊа {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "ĐŊĐĩĐžĐŋŅĐąĐģŅĐēОваĐŊĐž {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "видаĐģĐĩĐŊĐž {files}" @@ -109,80 +121,80 @@ msgid "" "allowed." msgstr "ĐĐĩвŅŅĐŊĐĩ ŅĐŧ'Ņ, '\\', '/', '<', '>', ':', '\"', '|', '?' Ņа '*' ĐŊĐĩ дОСвОĐģĐĩĐŊŅ." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "ĐĄŅвОŅĐĩĐŊĐŊŅ ZIP-ŅаКĐģŅ, ŅĐĩ ĐŧĐžĐļĐĩ СаКĐŊŅŅи ĐŋĐĩвĐŊиК ŅаŅ." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ĐĐĩĐŧĐžĐļĐģивО СаваĐŊŅаĐļиŅи Đ˛Đ°Ņ ŅаКĐģ ŅĐžĐŧŅ, ŅĐž вŅĐŊ ŅĐĩĐēа айО ŅаКĐģ ŅОСĐŧŅŅĐžĐŧ 0 йаКŅ" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ĐĐžĐŧиĐģĐēа СаваĐŊŅаĐļĐĩĐŊĐŊŅ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ĐаĐēŅиŅи" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "ĐŅŅĐēŅваĐŊĐŊŅ" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 ŅаКĐģ СаваĐŊŅаĐļŅŅŅŅŅŅ" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ŅаКĐģŅв СаваĐŊŅаĐļŅŅŅŅŅŅ" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ĐаваĐŊŅаĐļĐĩĐŊĐŊŅ ĐŋĐĩŅĐĩŅваĐŊĐž." -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ĐиĐēĐžĐŊŅŅŅŅŅŅ ĐˇĐ°Đ˛Đ°ĐŊŅаĐļĐĩĐŊĐŊŅ ŅаКĐģŅ. ĐаĐēŅиŅŅŅ ŅŅŅŅ ŅŅĐžŅŅĐŊĐēи ĐŋŅивĐĩĐ´Đĩ Đ´Đž вŅĐ´ĐŧŅĐŊи СаваĐŊŅаĐļĐĩĐŊĐŊŅ." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "ĐĐĩвŅŅĐŊĐĩ ŅĐŧ'Ņ ĐēаŅаĐģĐžĐŗŅ. ĐиĐēĐžŅиŅŅаĐŊĐŊŅ \"Shared\" СаŅĐĩСĐĩŅвОваĐŊĐž Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ŅаКĐģŅв ĐŋŅĐžŅĐēаĐŊОваĐŊĐž" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "ĐŋĐžĐŧиĐģĐēа ĐŋŅи ŅĐēаĐŊŅваĐŊĐŊŅ" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ĐĐŧ'Ņ" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "РОСĐŧŅŅ" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ĐĐŧŅĐŊĐĩĐŊĐž" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 ĐŋаĐŋĐēа" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} ĐŋаĐŋĐžĐē" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ŅаКĐģ" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ŅаКĐģŅв" @@ -194,27 +206,27 @@ msgstr "РОйОŅа С ŅаКĐģаĐŧи" msgid "Maximum upload size" msgstr "ĐаĐēŅиĐŧаĐģŅĐŊиК ŅОСĐŧŅŅ Đ˛ŅдваĐŊŅаĐļĐĩĐŊŅ" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "ĐŧаĐēŅ.ĐŧĐžĐļĐģивĐĩ:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "ĐĐĩОйŅ
ŅĐ´ĐŊĐž Đ´ĐģŅ ĐŧŅĐģŅŅи-ŅаКĐģĐžĐ˛ĐžĐŗĐž Ņа ĐēаŅаĐģĐžĐŗĐžĐ˛ĐžĐŗĐž СаваĐŊŅаĐļĐĩĐŊĐŊŅ." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "ĐĐēŅивŅваŅи ZIP-СаваĐŊŅаĐļĐĩĐŊĐŊŅ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 Ņ ĐąĐĩСĐģŅĐŧŅŅ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ĐаĐēŅиĐŧаĐģŅĐŊиК ŅОСĐŧŅŅ ĐˇĐ°Đ˛Đ°ĐŊŅаĐļŅŅĐŧĐžĐŗĐž ZIP ŅаКĐģŅ" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "ĐĐąĐĩŅĐĩĐŗŅи" @@ -242,28 +254,28 @@ msgstr "ĐŅдваĐŊŅаĐļиŅи" msgid "Cancel upload" msgstr "ĐĐĩŅĐĩŅваŅи СаваĐŊŅаĐļĐĩĐŊĐŊŅ" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ĐĸŅŅ ĐŊŅŅĐžĐŗĐž ĐŊĐĩĐŧаŅ. ĐŅдваĐŊŅаĐļŅĐĩ ŅĐž-ĐŊĐĩĐąŅĐ´Ņ!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ĐаваĐŊŅаĐļиŅи" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ФаКĐģ СаĐŊадŅĐž вĐĩĐģиĐēиК" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ФаКĐģи,ŅĐž ви ĐŊаĐŧĐ°ĐŗĐ°ŅŅĐĩŅŅ Đ˛ŅдваĐŊŅаĐļиŅи ĐŋĐĩŅĐĩвиŅŅŅŅŅ ĐŧаĐēŅиĐŧаĐģŅĐŊиК дОСвОĐģĐĩĐŊиК ŅОСĐŧŅŅ ŅаКĐģŅв ĐŊа ŅŅĐžĐŧŅ ŅĐĩŅвĐĩŅŅ." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ФаКĐģи ŅĐēаĐŊŅŅŅŅŅŅ, СаŅĐĩĐēаКŅĐĩ, ĐąŅĐ´Ņ-ĐģаŅĐēа." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "ĐĐžŅĐžŅĐŊĐĩ ŅĐēаĐŊŅваĐŊĐŊŅ" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 2427e237dee..072b6a52b75 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,58 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "Không cÃŗ táēp tin nà o ÄÆ°áģŖc táēŖi lÃĒn. Láģi không xÃĄc Äáģnh" + +#: ajax/upload.php:21 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:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 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:25 +#: ajax/upload.php:26 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:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "Không cÃŗ táēp tin nà o ÄÆ°áģŖc táēŖi lÃĒn" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "Không tÃŦm tháēĨy thư máģĨc táēĄm" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "Không tháģ ghi " +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "Táēp tin" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Không chia sáēŊ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "XÃŗa" @@ -68,39 +80,39 @@ msgstr "XÃŗa" msgid "Rename" msgstr "Sáģa tÃĒn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} ÄÃŖ táģn táēĄi" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "thay tháēŋ" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "tÃĒn gáģŖi ÃŊ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "háģ§y" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "ÄÃŖ thay tháēŋ {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "lÚi láēĄi" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "ÄÃŖ thay tháēŋ {new_name} báēąng {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "háģ§y chia sáēŊ {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "ÄÃŖ xÃŗa {files}" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "TÃĒn không háģŖp láģ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thÃŦ không ÄÆ°áģŖc phÊp dÚng." -#: js/files.js:183 +#: js/files.js:174 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:218 +#: js/files.js:212 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:218 +#: js/files.js:212 msgid "Upload Error" msgstr "TáēŖi lÃĒn láģi" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ÄÃŗng" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Cháģ" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 táģp tin Äang ÄÆ°áģŖc táēŖi lÃĒn" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} táēp tin Äang táēŖi lÃĒn" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Háģ§y táēŖi lÃĒn" -#: js/files.js:451 +#: js/files.js:445 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:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "TÃĒn thư máģĨc không háģŖp láģ. Sáģ dáģĨng \"Chia sáēģ\" ÄÆ°áģŖc dà nh riÃĒng báģi Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} táēp tin ÄÃŖ ÄÆ°áģŖc quÊt" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "láģi trong khi quÊt" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "TÃĒn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "KÃch cáģĄ" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Thay Äáģi" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 thư máģĨc" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} thư máģĨc" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 táēp tin" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} táēp tin" @@ -195,27 +207,27 @@ msgstr "Xáģ lÃŊ táēp tin" msgid "Maximum upload size" msgstr "KÃch thưáģc táģi Äa " -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "táģi Äa cho phÊp:" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "Cáē§n thiáēŋt cho táēŖi nhiáģu táēp tin và thư máģĨc." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "Cho phÊp ZIP-download" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 là không giáģi háēĄn" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "KÃch thưáģc táģi Äa cho cÃĄc táēp tin ZIP" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "Lưu" @@ -243,28 +255,28 @@ msgstr "TáēŖi lÃĒn" msgid "Cancel upload" msgstr "Háģ§y upload" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Không cÃŗ gÃŦ áģ ÄÃĸy .HÃŖy táēŖi lÃĒn máģt cÃĄi gÃŦ ÄÃŗ !" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "TáēŖi xuáģng" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Táēp tin táēŖi lÃĒn quÃĄ láģn" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "CÃĄc táēp tin báēĄn Äang táēŖi lÃĒn vưáģŖt quÃĄ kÃch thưáģc táģi Äa cho phÊp trÃĒn mÃĄy cháģ§ ." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Táēp tin Äang ÄÆ°áģŖc quÊt ,vui lÃ˛ng cháģ." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Hiáģn táēĄi Äang quÊt" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 7c74914a97f..7bb14a3205e 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,58 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "æ˛Ąæä¸äŧ æäģļãæĒįĨé蝝" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "æ˛ĄæäģģäŊé蝝,æäģļä¸äŧ æåäē" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ä¸äŧ įæäģļčļ
čŋäēHTML襨åæåŽįMAX_FILE_SIZE" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "æäģļåĒæé¨åčĸĢä¸äŧ " -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "æ˛Ąæä¸äŧ åŽæįæäģļ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "ä¸ĸå¤ąäēä¸ä¸Ē临æļæäģļ多" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "åįŖįå¤ąč´Ĩ" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "æäģļ" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "åæļå
ąäēĢ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "å é¤" @@ -66,39 +78,39 @@ msgstr "å é¤" msgid "Rename" msgstr "éåŊå" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} 厞åå¨" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "æŋæĸ" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "æ¨čåį§°" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "åæļ" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "厞æŋæĸ {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "æ¤é" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "厞፠{old_name} æŋæĸ {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "æĒåäēĢį {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "厞å é¤į {files}" @@ -108,80 +120,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "æŖå¨įæZIPæäģļ,čŋå¯čŊéčĻįšæļé´" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ä¸čŊä¸äŧ äŊ æåŽįæäģļ,å¯čŊå ä¸ēåŽæ¯ä¸Ēæäģļ多æč
大å°ä¸ē0" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ä¸äŧ é蝝" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "å
ŗé" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Pending" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 ä¸ĒæäģļæŖå¨ä¸äŧ " -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ä¸ĒæäģļæŖå¨ä¸äŧ " -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ä¸äŧ åæļäē" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "æäģļæŖå¨ä¸äŧ ãå
ŗééĄĩéĸäŧåæļä¸äŧ ã" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ä¸Ēæäģļ厞æĢæ" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "æĢæåēé" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "åå" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "大å°" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "äŋŽæšæĨæ" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 ä¸Ēæäģļ多" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} ä¸Ēæäģļ多" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ä¸Ēæäģļ" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ä¸Ēæäģļ" @@ -193,27 +205,27 @@ msgstr "æäģļå¤įä¸" msgid "Maximum upload size" msgstr "æå¤§ä¸äŧ 大å°" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "æå¤§å¯čŊ" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "éčĻ夿äģļåæäģļ多ä¸čŊŊ." -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "æ¯æZIPä¸čŊŊ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0æ¯æ éį" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "æå¤§įZIPæäģļčžå
Ĩ大å°" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "äŋå" @@ -241,28 +253,28 @@ msgstr "ä¸äŧ " msgid "Cancel upload" msgstr "åæļä¸äŧ " -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "čŋ鿞Ąæä¸čĨŋ.ä¸äŧ įšäģäš!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ä¸čŊŊ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ä¸äŧ įæäģļå¤Ē大äē" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "äŊ æŖå¨č¯åžä¸äŧ įæäģļčļ
čŋä翤æåĄå¨æ¯æįæå¤§įæäģļ大å°." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "æŖå¨æĢææäģļ,蝎į¨å." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "æŖå¨æĢæ" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 0493f0631c1..6a22db26f15 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 00:57+0000\n" -"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,46 +22,58 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "æ˛ĄææäģļčĸĢä¸äŧ ãæĒįĨé蝝" + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "æ˛Ąæåįé蝝īŧæäģļä¸äŧ æåã" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ä¸äŧ æäģļ大å°åˇ˛čļ
čŋphp.iniä¸upload_max_filesizeæč§åŽįåŧ" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ä¸äŧ įæäģļčļ
čŋäēå¨HTML 襨å䏿åŽįMAX_FILE_SIZE" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "åĒä¸äŧ äēæäģļįä¸é¨å" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "æäģ￞Ąæä¸äŧ " -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "įŧēå°ä¸´æļįŽåŊ" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "åå
ĨįŖįå¤ąč´Ĩ" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "æäģļ" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "åæļåäēĢ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "å é¤" @@ -69,39 +81,39 @@ msgstr "å é¤" msgid "Rename" msgstr "éåŊå" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} 厞åå¨" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "æŋæĸ" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "åģē莎åį§°" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "åæļ" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "æŋæĸ {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "æ¤é" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "åˇ˛å° {old_name}æŋæĸæ {new_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "åæļäēå
ąäēĢ {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "å é¤äē {files}" @@ -111,80 +123,80 @@ msgid "" "allowed." msgstr "æ æåį§°īŧ'\\', '/', '<', '>', ':', '\"', '|', '?' å '*' ä¸čĸĢå
莸äŊŋį¨ã" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "æŖå¨įæ ZIP æäģļīŧå¯čŊéčĻä¸äēæļé´" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "æ æŗä¸äŧ æäģļīŧå ä¸ēåŽæ¯ä¸ä¸ĒįŽåŊæč
大å°ä¸ē 0 åč" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ä¸äŧ é蝝" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "å
ŗé" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "æäŊįåž
ä¸" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1ä¸Ēæäģļä¸äŧ ä¸" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} ä¸Ēæäģļä¸äŧ ä¸" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ä¸äŧ 厞åæļ" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "æäģļæŖå¨ä¸äŧ ä¸ãį°å¨įĻģåŧæ¤éĄĩäŧå¯ŧč´ä¸äŧ å¨äŊčĸĢåæļã" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "æ æįæäģļ多åį§°ãâSharedâ æ¯ Owncloud äŋįåįŦĻã" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} ä¸Ēæäģļ厞æĢæã" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "æĢææļåēé" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "åį§°" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "大å°" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "äŋŽæšæĨæ" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1ä¸Ēæäģļ多" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} ä¸Ēæäģļ多" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ä¸Ēæäģļ" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ä¸Ēæäģļ" @@ -196,27 +208,27 @@ msgstr "æäģļå¤į" msgid "Maximum upload size" msgstr "æå¤§ä¸äŧ 大å°" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "æå¤§å
莸: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "夿äģļåæäģļ多ä¸čŊŊéčĻæ¤éĄšã" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "å¯į¨ ZIP ä¸čŊŊ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0 ä¸ēæ éåļ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "ZIP æäģļįæå¤§čžå
Ĩ大å°" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "äŋå" @@ -244,28 +256,28 @@ msgstr "ä¸äŧ " msgid "Cancel upload" msgstr "åæļä¸äŧ " -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "čŋéčŋäģäšéŊæ˛Ąæãä¸äŧ äēä¸čĨŋå§īŧ" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ä¸čŊŊ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ä¸äŧ æäģļčŋ大" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "æ¨æŖå°č¯ä¸äŧ įæäģļčļ
čŋä翤æåĄå¨å¯äģĨä¸äŧ įæå¤§åŽšééåļ" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "æäģļæŖå¨čĸ̿̿īŧ蝎į¨åã" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "åŊåæĢæ" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index c45ea5afdd4..7bd0e19490f 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,58 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4e18f079575..53c704dd1ac 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-05 00:02+0100\n" +"PO-Revision-Date: 2013-01-04 12:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,58 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:20 +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" +msgstr "æ˛ææĒæĄčĸĢä¸åŗ. æĒįĨįé¯čǤ." + +#: ajax/upload.php:21 msgid "There is no error, the file uploaded with success" msgstr "įĄé¯čǤīŧæĒæĄä¸åŗæå" -#: ajax/upload.php:21 +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ä¸åŗé썿Ąįčļ
é HTML 襨åŽä¸æåŽ MAX_FILE_SIZE éåļ" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "åĒæé¨åæĒæĄčĸĢä¸åŗ" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "įĄåˇ˛ä¸åŗæĒæĄ" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "éēå¤ąæĢåčŗæå¤ž" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "å¯Ģå
ĨįĄŦįĸå¤ąæ" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "æĒæĄ" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "åæļå
ąäēĢ" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "åĒé¤" @@ -68,39 +80,39 @@ msgstr "åĒé¤" msgid "Rename" msgstr "éæ°åŊå" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} 厞įļåå¨" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "åäģŖ" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "åæļ" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "厞åäģŖ {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "垊å" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "äŊŋ፠{new_name} åäģŖ {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -110,80 +122,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "įĸįåŖį¸ŽæĒ, åŽå¯čŊéčĻ䏿Žĩæé." -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "įĄæŗä¸åŗæ¨įæĒæĄå įēåŽå¯čŊæ¯ä¸åįŽéææĒæĄå¤§å°įē0" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "ä¸åŗįŧįé¯čǤ" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "éé" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 åæĒæĄæŖå¨ä¸åŗ" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} åæĒæĄæŖå¨ä¸åŗ" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "ä¸åŗåæļ" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "æĒæĄä¸åŗä¸. éĸ鿤é éĸå°æåæļä¸åŗ." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "įĄæįčŗæå¤žåį¨ą. \"Shared\" åį¨ąåˇ˛čĸĢ Owncloud æäŋįäŊŋį¨" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "æææįŧįé¯čǤ" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "åį¨ą" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "大å°" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "äŋŽæš" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 åčŗæå¤ž" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} åčŗæå¤ž" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 åæĒæĄ" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} åæĒæĄ" @@ -195,27 +207,27 @@ msgstr "æĒæĄčį" msgid "Maximum upload size" msgstr "æå¤§ä¸åŗåŽšé" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "æå¤§å
訹: " -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "éå°å¤æĒæĄåįŽéä¸čŧæ¯åŋ
åĄĢį" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "å፠Zip ä¸čŧ" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "0äģŖčĄ¨æ˛æéåļ" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "éå°ZIPæĒæĄæå¤§čŧ¸å
Ĩ大å°" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "å˛å" @@ -243,28 +255,28 @@ msgstr "ä¸åŗ" msgid "Cancel upload" msgstr "åæļä¸åŗ" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "æ˛æäģģäŊæąčĨŋãčĢä¸åŗå
§åŽš!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ä¸čŧ" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ä¸åŗé大" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "äŊ čŠĻåä¸åŗįæĒæĄåˇ˛čļ
éäŧēæå¨įæå¤§åŽšééåļãã" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "æŖå¨æææĒæĄīŧčĢį¨įã" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "įŽåææ" diff --git a/l10n/zu_ZA/files.po b/l10n/zu_ZA/files.po index 078ee8781ef..86f620523c9 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: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" +"POT-Creation-Date: 2013-01-04 13:22+0100\n" +"PO-Revision-Date: 2013-01-04 12:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,58 @@ msgstr "" "Language: zu_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 -msgid "There is no error, the file uploaded with success" +#: ajax/upload.php:14 +msgid "No file was uploaded. Unknown error" msgstr "" #: ajax/upload.php:21 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:22 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:24 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:26 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:27 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:28 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:28 +#: ajax/upload.php:29 msgid "Failed to write to disk" msgstr "" +#: ajax/upload.php:45 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:69 +msgid "Invalid directory." +msgstr "" + #: appinfo/app.php:10 msgid "Files" msgstr "" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "" @@ -64,39 +76,39 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "" @@ -106,80 +118,80 @@ msgid "" "allowed." msgstr "" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "" @@ -191,27 +203,27 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:19 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:23 +#: templates/admin.php:26 msgid "Save" msgstr "" @@ -239,28 +251,28 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "" diff --git a/lib/base.php b/lib/base.php index 94fb7979620..ef203b33c2b 100644 --- a/lib/base.php +++ b/lib/base.php @@ -557,7 +557,9 @@ class OC OC_App::loadApps(); OC_User::setupBackends(); if (isset($_GET["logout"]) and ($_GET["logout"])) { - OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']); + if (isset($_COOKIE['oc_token'])) { + OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']); + } OC_User::logout(); header("Location: " . OC::$WEBROOT . '/'); } else { diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php new file mode 100644 index 00000000000..275d3c0f05c --- /dev/null +++ b/lib/l10n/bn_BD.php @@ -0,0 +1,18 @@ +<?php $TRANSLATIONS = array( +"Help" => "āϏāĻšāĻžā§āĻŋāĻāĻž", +"Personal" => "āĻŦā§āϝāĻā§āϤāĻŋāĻāϤ", +"Settings" => "āύāĻŋā§āĻžāĻŽāĻāϏāĻŽā§āĻš", +"Users" => "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋāĻŦā§āύā§āĻĻ", +"Apps" => "āĻ
ā§āϝāĻžāĻĒāϏ", +"Admin" => "āĻĒā§āϰāĻļāĻžāϏāĻ", +"Authentication error" => "āύāĻŋāĻļā§āĻāĻŋāϤāĻāϰāĻŖā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§", +"Files" => "āĻĢāĻžāĻāϞ", +"seconds ago" => "āϏā§āĻā§āύā§āĻĄ āĻĒā§āϰā§āĻŦā§", +"1 minute ago" => "1 āĻŽāĻŋāύāĻŋāĻ āĻĒā§āϰā§āĻŦā§", +"1 hour ago" => "1 āĻāύā§āĻāĻž āĻĒā§āϰā§āĻŦā§", +"today" => "āĻāĻ", +"yesterday" => "āĻāϤāĻāĻžāϞ", +"last month" => "āĻāϤāĻŽāĻžāϏ", +"last year" => "āĻāϤ āĻŦāĻāϰ", +"years ago" => "āĻŦāĻāϰ āĻĒā§āϰā§āĻŦā§" +); diff --git a/lib/mail.php b/lib/mail.php index c78fcce88d4..4683a1b4eee 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -25,12 +25,18 @@ class OC_Mail { * @param string $mailtext * @param string $fromaddress * @param string $fromname - * @param bool $html + * @param bool|int $html + * @param string $altbody + * @param string $ccaddress + * @param string $ccname + * @param string $bcc + * @throws Exception */ public static function send($toaddress,$toname,$subject,$mailtext,$fromaddress,$fromname,$html=0,$altbody='',$ccaddress='',$ccname='', $bcc='') { $SMTPMODE = OC_Config::getValue( 'mail_smtpmode', 'sendmail' ); $SMTPHOST = OC_Config::getValue( 'mail_smtphost', '127.0.0.1' ); + $SMTPPORT = OC_Config::getValue( 'mail_smtpport', 25 ); $SMTPAUTH = OC_Config::getValue( 'mail_smtpauth', false ); $SMTPUSERNAME = OC_Config::getValue( 'mail_smtpname', '' ); $SMTPPASSWORD = OC_Config::getValue( 'mail_smtppassword', '' ); @@ -49,6 +55,7 @@ class OC_Mail { $mailo->Host = $SMTPHOST; + $mailo->Port = $SMTPPORT; $mailo->SMTPAuth = $SMTPAUTH; $mailo->Username = $SMTPUSERNAME; $mailo->Password = $SMTPPASSWORD; @@ -89,8 +96,6 @@ class OC_Mail { } } - - /** * return the footer for a mail * @@ -103,7 +108,4 @@ class OC_Mail { return($txt); } - - - } diff --git a/lib/public/db.php b/lib/public/db.php index 92ff8f93a22..5d4aadd22ae 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -36,8 +36,8 @@ namespace OCP; class DB { /** * @brief Prepare a SQL query - * @param $query Query string - * @returns prepared SQL query + * @param string $query Query string + * @return \MDB2_Statement_Common prepared SQL query * * SQL query via MDB2 prepare(), needs to be execute()'d! */ @@ -59,7 +59,7 @@ class DB { * 'family' => array ('value' => 'Stefanov'), * 'birth_date' => array ('value' => '1975-06-20') * ); - * @returns true/false + * @return bool * */ public static function insertIfNotExist($table, $input) { @@ -69,7 +69,7 @@ class DB { /** * @brief gets last value of autoincrement * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix - * @returns id + * @return int * * MDB2 lastInsertID() * diff --git a/lib/public/response.php b/lib/public/response.php index 95e67a85720..bfb84eda5d1 100644 --- a/lib/public/response.php +++ b/lib/public/response.php @@ -31,12 +31,12 @@ namespace OCP; /** - * This class provides convinient functions to send the correct http response headers + * This class provides convenient functions to send the correct http response headers */ class Response { /** * @brief Enable response caching by sending correct HTTP headers - * @param $cache_time time to cache the response + * @param int $cache_time time to cache the response * >0 cache time in seconds * 0 and <0 enable default browser caching * null cache indefinitly @@ -48,7 +48,7 @@ class Response { /** * Checks and set Last-Modified header, when the request matches sends a * 'not modified' response - * @param $lastModified time when the reponse was last modified + * @param string $lastModified time when the reponse was last modified */ static public function setLastModifiedHeader( $lastModified ) { return(\OC_Response::setLastModifiedHeader( $lastModified )); @@ -65,7 +65,7 @@ class Response { /** * Checks and set ETag header, when the request matches sends a * 'not modified' response - * @param $etag token to use for modification check + * @param string $etag token to use for modification check */ static public function setETagHeader( $etag ) { return(\OC_Response::setETagHeader( $etag )); @@ -73,15 +73,15 @@ class Response { /** * @brief Send file as response, checking and setting caching headers - * @param $filepath of file to send + * @param string $filepath of file to send */ static public function sendFile( $filepath ) { return(\OC_Response::sendFile( $filepath )); } /** - * @brief Set reponse expire time - * @param $expires date-time when the response expires + * @brief Set response expire time + * @param string|\DateTime $expires date-time when the response expires * string for DateInterval from now * DateTime object when to expire response */ @@ -91,9 +91,9 @@ class Response { /** * @brief Send redirect response - * @param $location to redirect to + * @param string $location to redirect to */ static public function redirect( $location ) { return(\OC_Response::redirect( $location )); } -}
\ No newline at end of file +} diff --git a/lib/public/util.php b/lib/public/util.php index af782b01483..df09ea81ae1 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -68,7 +68,7 @@ class Util { * @brief write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function writeLog( $app, $message, $level ) { // call the internal log class @@ -77,7 +77,7 @@ class Util { /** * @brief add a css file - * @param url $url + * @param string $url */ public static function addStyle( $application, $file = null ) { \OC_Util::addStyle( $application, $file ); @@ -85,8 +85,8 @@ class Util { /** * @brief add a javascript file - * @param appid $application - * @param filename $file + * @param string $application + * @param string $file */ public static function addScript( $application, $file = null ) { \OC_Util::addScript( $application, $file ); @@ -94,7 +94,7 @@ class Util { /** * @brief Add a custom element to the header - * @param string tag tag name of the element + * @param string $tag tag name of the element * @param array $attributes array of attributes for the element * @param string $text the text content for the element */ @@ -104,8 +104,8 @@ class Util { /** * @brief formats a timestamp in the "right" way - * @param int timestamp $timestamp - * @param bool dateOnly option to ommit time from the result + * @param int $timestamp $timestamp + * @param bool $dateOnly option to omit time from the result */ public static function formatDate( $timestamp, $dateOnly=false) { return(\OC_Util::formatDate( $timestamp, $dateOnly )); @@ -113,11 +113,11 @@ class Util { /** * @brief Creates an absolute url - * @param $app app - * @param $file file - * @param $args array with param=>value, will be appended to the returned url + * @param string $app app + * @param string $file file + * @param array $args array with param=>value, will be appended to the returned url * The value of $args will be urlencoded - * @returns the url + * @returns string the url * * Returns a absolute url to the given app and file. */ @@ -127,8 +127,8 @@ class Util { /** * @brief Creates an absolute url for remote use - * @param $service id - * @returns the url + * @param string $service id + * @returns string the url * * Returns a absolute url to the given app and file. */ @@ -138,8 +138,8 @@ class Util { /** * @brief Creates an absolute url for public use - * @param $service id - * @returns the url + * @param string $service id + * @returns string the url * * Returns a absolute url to the given app and file. */ @@ -149,11 +149,11 @@ class Util { /** * @brief Creates an url - * @param $app app - * @param $file file - * @param $args array with param=>value, will be appended to the returned url + * @param string $app app + * @param string $file file + * @param array $args array with param=>value, will be appended to the returned url * The value of $args will be urlencoded - * @returns the url + * @returns string the url * * Returns a url to the given app and file. */ @@ -163,7 +163,7 @@ class Util { /** * @brief Returns the server host - * @returns the server host + * @returns string the server host * * Returns the server host, even if the website uses one or more * reverse proxies @@ -174,7 +174,7 @@ class Util { /** * @brief returns the server hostname - * @returns the server hostname + * @returns string the server hostname * * Returns the server host name without an eventual port number */ @@ -190,8 +190,8 @@ class Util { /** * @brief Returns the default email address - * @param $user_part the user part of the address - * @returns the default email address + * @param string $user_part the user part of the address + * @returns string the default email address * * Assembles a default email address (using the server hostname * and the given user part, and returns it @@ -210,7 +210,7 @@ class Util { /** * @brief Returns the server protocol - * @returns the server protocol + * @returns string the server protocol * * Returns the server protocol. It respects reverse proxy servers and load balancers */ @@ -220,9 +220,9 @@ class Util { /** * @brief Creates path to an image - * @param $app app - * @param $image image name - * @returns the url + * @param string $app app + * @param string $image image name + * @returns string the url * * Returns the path to the image. */ @@ -232,8 +232,8 @@ class Util { /** * @brief Make a human file size - * @param $bytes file size in bytes - * @returns a human readable file size + * @param int $bytes file size in bytes + * @returns string a human readable file size * * Makes 2048 to 2 kB. */ @@ -243,8 +243,8 @@ class Util { /** * @brief Make a computer file size - * @param $str file size in a fancy format - * @returns a file size in bytes + * @param string $str file size in a fancy format + * @returns int a file size in bytes * * Makes 2kB to 2048. * @@ -256,11 +256,11 @@ class Util { /** * @brief connects a function to a hook - * @param $signalclass class name of emitter - * @param $signalname name of signal - * @param $slotclass class name of slot - * @param $slotname name of slot - * @returns true/false + * @param string $signalclass class name of emitter + * @param string $signalname name of signal + * @param string $slotclass class name of slot + * @param string $slotname name of slot + * @returns bool * * This function makes it very easy to connect to use hooks. * @@ -272,10 +272,10 @@ class Util { /** * @brief emitts a signal - * @param $signalclass class name of emitter - * @param $signalname name of signal - * @param $params defautl: array() array with additional data - * @returns true if slots exists or false if not + * @param string $signalclass class name of emitter + * @param string $signalname name of signal + * @param string $params defautl: array() array with additional data + * @returns bool true if slots exists or false if not * * Emits a signal. To get data from the slot use references! * @@ -306,7 +306,7 @@ class Util { * * This function is used to sanitize HTML and should be applied on any string or array of strings before displaying it on a web page. * - * @param string or array of strings + * @param string|array of strings * @return array with sanitized strings or a single sinitized string, depends on the input parameter. */ public static function sanitizeHTML( $value ) { @@ -316,9 +316,9 @@ class Util { /** * @brief Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. * - * @param $input The array to work on - * @param $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param array $input The array to work on + * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 * @return array * * @@ -330,11 +330,11 @@ class Util { /** * @brief replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. * - * @param $input The input string. .Opposite to the PHP build-in function does not accept an array. - * @param $replacement The replacement string. - * @param $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. - * @param $length Length of the part to be replaced - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param string $input The input string. .Opposite to the PHP build-in function does not accept an array. + * @param string $replacement The replacement string. + * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. + * @param int $length Length of the part to be replaced + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 * @return string * */ @@ -345,11 +345,11 @@ class Util { /** * @brief Replace all occurrences of the search string with the replacement string * - * @param $search The value being searched for, otherwise known as the needle. String. - * @param $replace The replacement string. - * @param $subject The string or array being searched and replaced on, otherwise known as the haystack. - * @param $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @param $count If passed, this will be set to the number of replacements performed. + * @param string $search The value being searched for, otherwise known as the needle. String. + * @param string $replace The replacement string. + * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack. + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param int $count If passed, this will be set to the number of replacements performed. * @return string * */ @@ -359,10 +359,10 @@ class Util { /** * @brief performs a search in a nested array - * @param haystack the array to be searched - * @param needle the search string - * @param $index optional, only search this key name - * @return the key of the matching field, otherwise false + * @param array $haystack the array to be searched + * @param string $needle the search string + * @param int $index optional, only search this key name + * @return mixed the key of the matching field, otherwise false */ public static function recursiveArraySearch($haystack, $needle, $index = null) { return(\OC_Helper::recursiveArraySearch($haystack, $needle, $index)); diff --git a/lib/util.php b/lib/util.php index 4170de2125a..7b1de094ead 100755 --- a/lib/util.php +++ b/lib/util.php @@ -111,7 +111,7 @@ class OC_Util { * @return string */ public static function getEditionString() { - return ''; + return ''; } /** @@ -311,14 +311,14 @@ class OC_Util { if (isset($_REQUEST['redirect_url'])) { $redirect_url = OC_Util::sanitizeHTML($_REQUEST['redirect_url']); $parameters['redirect_url'] = urlencode($redirect_url); - } + } OC_Template::printGuestPage("", "login", $parameters); } /** - * Check if the app is enabled, redirects to home if not - */ + * Check if the app is enabled, redirects to home if not + */ public static function checkAppEnabled($app) { if( !OC_App::isEnabled($app)) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); @@ -327,9 +327,9 @@ class OC_Util { } /** - * Check if the user is logged in, redirects to home if not. With - * redirect URL parameter to the request URI. - */ + * Check if the user is logged in, redirects to home if not. With + * redirect URL parameter to the request URI. + */ public static function checkLoggedIn() { // Check if we are a user if( !OC_User::isLoggedIn()) { @@ -339,8 +339,8 @@ class OC_Util { } /** - * Check if the user is a admin, redirects to home if not - */ + * Check if the user is a admin, redirects to home if not + */ public static function checkAdminUser() { // Check if we are a user self::checkLoggedIn(); @@ -352,9 +352,9 @@ class OC_Util { } /** - * Check if the user is a subadmin, redirects to home if not - * @return array $groups where the current user is subadmin - */ + * Check if the user is a subadmin, redirects to home if not + * @return array $groups where the current user is subadmin + */ public static function checkSubAdminUser() { // Check if we are a user self::checkLoggedIn(); @@ -370,19 +370,19 @@ class OC_Util { } /** - * Check if the user verified the login with his password in the last 15 minutes - * If not, the user will be shown a password verification page - */ + * Check if the user verified the login with his password in the last 15 minutes + * If not, the user will be shown a password verification page + */ public static function verifyUser() { if(OC_Config::getValue('enhancedauth', false) === true) { - // Check password to set session + // Check password to set session if(isset($_POST['password'])) { if (OC_User::login(OC_User::getUser(), $_POST["password"] ) === true) { $_SESSION['verifiedLogin']=time() + OC_Config::getValue('enhancedauthtime', 15 * 60); } } - // Check if the user verified his password + // Check if the user verified his password if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { OC_Template::printGuestPage("", "verify", array('username' => OC_User::getUser())); exit(); @@ -391,9 +391,9 @@ class OC_Util { } /** - * Check if the user verified the login with his password - * @return bool - */ + * Check if the user verified the login with his password + * @return bool + */ public static function isUserVerified() { if(OC_Config::getValue('enhancedauth', false) === true) { if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { @@ -404,8 +404,8 @@ class OC_Util { } /** - * Redirect to the user default page - */ + * Redirect to the user default page + */ public static function redirectToDefaultPage() { if(isset($_REQUEST['redirect_url'])) { $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url'])); @@ -553,9 +553,9 @@ class OC_Util { } - /** - * Check if the setlocal call doesn't work. This can happen if the right local packages are not available on the server. - */ + /** + * Check if the setlocal call doesn't work. This can happen if the right local packages are not available on the server. + */ public static function issetlocaleworking() { $result=setlocale(LC_ALL, 'en_US.UTF-8'); if($result==false) { @@ -565,20 +565,20 @@ class OC_Util { } } - /** - * Check if the ownCloud server can connect to the internet - */ + /** + * Check if the ownCloud server can connect to the internet + */ public static function isinternetconnectionworking() { // try to connect to owncloud.org to see if http connections to the internet are possible. - $connected = @fsockopen("www.owncloud.org", 80); + $connected = @fsockopen("www.owncloud.org", 80); if ($connected) { fclose($connected); return true; }else{ // second try in case one server is down - $connected = @fsockopen("apps.owncloud.com", 80); + $connected = @fsockopen("apps.owncloud.com", 80); if ($connected) { fclose($connected); return true; @@ -601,11 +601,11 @@ class OC_Util { /** - * @brief Generates a cryptographical secure pseudorandom string - * @param Int with the length of the random string - * @return String - * Please also update secureRNG_available if you change something here - */ + * @brief Generates a cryptographical secure pseudorandom string + * @param Int with the length of the random string + * @return String + * Please also update secureRNG_available if you change something here + */ public static function generate_random_bytes($length = 30) { // Try to use openssl_random_pseudo_bytes @@ -637,9 +637,9 @@ class OC_Util { } /** - * @brief Checks if a secure random number generator is available - * @return bool - */ + * @brief Checks if a secure random number generator is available + * @return bool + */ public static function secureRNG_available() { // Check openssl_random_pseudo_bytes @@ -658,48 +658,61 @@ class OC_Util { return false; } - - /** - * @Brief Get file content via curl. - * @param string $url Url to get content - * @return string of the response or false on error - * This function get the content of a page via curl, if curl is enabled. - * If not, file_get_element is used. - */ - - public static function getUrlContent($url){ - - if (function_exists('curl_init')) { - - $curl = curl_init(); - - curl_setopt($curl, CURLOPT_HEADER, 0); - curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); - curl_setopt($curl, CURLOPT_URL, $url); - curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); - if(OC_Config::getValue('proxy','')<>'') { - curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('proxy')); - } - if(OC_Config::getValue('proxyuserpwd','')<>'') { - curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); - } - $data = curl_exec($curl); - curl_close($curl); - - } else { - - $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); - $data=@file_get_contents($url, 0, $ctx); - - } - return $data; + + /** + * @Brief Get file content via curl. + * @param string $url Url to get content + * @return string of the response or false on error + * This function get the content of a page via curl, if curl is enabled. + * If not, file_get_element is used. + */ + + public static function getUrlContent($url){ + + if (function_exists('curl_init')) { + + $curl = curl_init(); + + curl_setopt($curl, CURLOPT_HEADER, 0); + curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); + curl_setopt($curl, CURLOPT_URL, $url); + curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); + if(OC_Config::getValue('proxy','')<>'') { + curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('proxy')); + } + if(OC_Config::getValue('proxyuserpwd','')<>'') { + curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); + } + $data = curl_exec($curl); + curl_close($curl); + + } else { + $contextArray = null; + + if(OC_Config::getValue('proxy','')<>'') { + $contextArray = array( + 'http' => array( + 'timeout' => 10, + 'proxy' => OC_Config::getValue('proxy') + ) + ); + } else { + $contextArray = array( + 'http' => array( + 'timeout' => 10 + ) + ); + } + + + $ctx = stream_context_create( + $contextArray + ); + $data=@file_get_contents($url, 0, $ctx); + + } + return $data; } - + } diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php new file mode 100644 index 00000000000..0b7983c6c1c --- /dev/null +++ b/settings/l10n/bn_BD.php @@ -0,0 +1,46 @@ +<?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "āĻ
ā§āϝāĻžāĻĒāϏā§āĻā§āϰ āĻĨā§āĻā§ āϤāĻžāϞāĻŋāĻāĻž āϞā§āĻĄ āĻāϰāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž", +"Group already exists" => "āĻā§āώā§āĻ ā§āĻāĻŋ āĻŦāĻŋāĻĻā§āϝāĻŽāĻžāύ", +"Unable to add group" => "āĻā§āώā§āĻ ā§ āϝā§āĻ āĻāϰāϤ⧠āĻĒāĻžāϰāĻž āĻā§āϞ āύāĻž", +"Could not enable app. " => "āĻ
ā§āϝāĻžāĻĒ āϏāĻā§āϰāĻŋā§ āĻāϰāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž", +"Email saved" => "āĻ-āĻŽā§āĻāϞ āϏāĻāϰāĻā§āώāĻŖ āĻāϰāĻž āĻšā§ā§āĻā§", +"Invalid email" => "āĻ-āĻŽā§āĻāϞāĻāĻŋ āϏāĻ āĻŋāĻ āύā§", +"OpenID Changed" => "OpenID āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻž āĻšā§ā§āĻā§", +"Invalid request" => "āĻ
āύāύā§āĻŽā§āĻĻāĻŋāϤ āĻ
āύā§āϰā§āϧ", +"Unable to delete group" => "āĻā§āώā§āĻ ā§ āĻŽā§āĻā§ āĻĢā§āϞāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž", +"Authentication error" => "āύāĻŋāĻļā§āĻāĻŋāϤāĻāϰāĻŖā§ āϏāĻŽāϏā§āϝāĻž āĻĻā§āĻāĻž āĻĻāĻŋā§ā§āĻā§", +"Unable to delete user" => "āĻŦā§āϝāĻŦāĻšāĻžāϰāĻāĻžāϰāĻŋ āĻŽā§āĻā§ āĻĢā§āϞāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž", +"Language changed" => "āĻāĻžāώāĻž āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻž āĻšā§ā§āĻā§", +"Disable" => "āύāĻŋāώā§āĻā§āϰāĻŋā§", +"Enable" => "āϏāĻā§āϰāĻŋā§", +"Saving..." => "āϏāĻāϰāĻā§āώāĻŖ āĻāϰāĻž āĻšāĻā§āĻā§....", +"__language_name__" => "_āĻāĻžāώāĻžāϰ_āύāĻžāĻŽ_", +"Add your App" => "āĻāĻĒāύāĻžāϰ āĻ
ā§āϝāĻžāĻĒāĻāĻŋ āϝā§āĻ āĻāϰā§āύ", +"More Apps" => "āĻāϰāĻ āĻ
ā§āϝāĻžāĻĒ", +"Select an App" => "āĻ
ā§āϝāĻžāĻĒ āύāĻŋāϰā§āĻŦāĻžāĻāύ āĻāϰā§āύ", +"See application page at apps.owncloud.com" => "āĻ
ā§āϝāĻžāĻĒā§āϞāĻŋāĻā§āϏāύ āĻĒāĻžāϤāĻžāĻāĻŋ āĻĻā§āĻā§āύ āĻāĻāĻžāύ⧠apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-āϞāĻžāĻāϏā§āύā§āϏ āĻāϰāĻŋā§ā§āĻā§āύ <span class=\"author\"></span>", +"Forum" => "āĻĢā§āϰāĻžāĻŽ", +"Bugtracker" => "āĻŦāĻžāĻāĻā§āϰā§āϝāĻžāĻāĻžāϰ", +"Commercial Support" => "āĻŦāĻžāĻŖāĻŋāĻā§āϝāĻŋāĻ āϏāĻžāĻĒā§āϰā§āĻ", +"Clients" => "āĻā§āϞāĻžā§ā§āύā§āĻ", +"Download Desktop Clients" => "āĻĄā§āϏā§āĻāĻāĻĒ āĻā§āϞāĻžā§ā§āύā§āĻ āĻĄāĻžāĻāύāϞā§āĻĄ āĻāϰā§āύ", +"Password" => "āĻā§āĻāĻļāĻŦā§āĻĻ", +"Your password was changed" => "āĻāĻĒāύāĻžāϰ āĻā§āĻāĻļāĻŦā§āĻĻāĻāĻŋ āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻž āĻšā§ā§āĻā§", +"Unable to change your password" => "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰāĻž āϏāĻŽā§āĻāĻŦ āĻšāϞ⧠āύāĻž", +"Current password" => "āĻŦāϰā§āϤāĻŽāĻžāύ āĻā§āĻāĻļāĻŦā§āĻĻ", +"New password" => "āύāϤā§āύ āĻā§āĻāĻļāĻŦā§āĻĻ", +"show" => "āĻĒā§āϰāĻĻāϰā§āĻļāύ", +"Change password" => "āĻā§āĻāĻļāĻŦā§āĻĻ āĻĒāϰāĻŋāĻŦāϰā§āϤāύ āĻāϰ", +"Email" => "āĻ-āĻŽā§āĻāϞ", +"Your email address" => "āĻāĻĒāύāĻžāϰ āĻ-āĻŽā§āĻāϞ āĻ āĻŋāĻāĻžāύāĻž", +"Language" => "āĻāĻžāώāĻž", +"Help translate" => "āĻ
āύā§āĻŦāĻžāĻĻ āĻāϰāϤ⧠āϏāĻžāĻšāĻžāϝā§āϝ āĻāϰā§āύ", +"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "āϤā§āϰāĻŋ āĻāϰā§āĻā§āύ <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, āϝāĻžāϰ <a href=\"https://github.com/owncloud\" target=\"_blank\">āĻā§āϏ āĻā§āĻĄ</a> <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr>āĻāϰ āĻ
āϧā§āύ⧠āϞāĻžāĻā§āϏāύā§āϏāĻā§āϤ</a>.", +"Name" => "āύāĻžāĻŽ", +"Groups" => "āĻā§āώā§āĻ ā§", +"Create" => "āϤā§āϰāĻŋ āĻāϰ", +"Other" => "āĻ
āύā§āϝāĻžāύā§āϝ", +"Group Admin" => "āĻā§āώā§āĻ ā§ āĻĒā§āϰāĻļāĻžāϏāύ", +"Delete" => "āĻŽā§āĻā§ āĻĢā§āϞ" +); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 6a354211254..cde7fd1cbf1 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -53,7 +53,11 @@ "Name" => "Nom", "Groups" => "Grups", "Create" => "Crea", -"Other" => "Altre", +"Default Storage" => "Emmagatzemament per defecte", +"Unlimited" => "Il¡limitat", +"Other" => "Un altre", "Group Admin" => "Grup Admin", +"Storage" => "Emmagatzemament", +"Default" => "Per defecte", "Delete" => "Suprimeix" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 2300b98a2bf..7800bcfb6c4 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -53,7 +53,11 @@ "Name" => "Navn", "Groups" => "Grupper", "Create" => "Ny", +"Default Storage" => "Standard opbevaring", +"Unlimited" => "UbegrÃĻnset", "Other" => "Andet", "Group Admin" => "Gruppe Administrator", +"Storage" => "Opbevaring", +"Default" => "Standard", "Delete" => "Slet" ); diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 2853b6fed7d..13088d0d8b2 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,47 +1,63 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "Non se puido cargar a lista desde a App Store", +"Unable to load list from App Store" => "Non foi posÃbel cargar a lista desde a App Store", "Group already exists" => "O grupo xa existe", -"Unable to add group" => "Non se pode engadir o grupo", -"Could not enable app. " => "Con se puido activar o aplicativo.", -"Email saved" => "Correo electrÃŗnico gardado", -"Invalid email" => "correo electrÃŗnico non vÃĄlido", -"OpenID Changed" => "Mudou o OpenID", +"Unable to add group" => "Non Ê posÃbel engadir o grupo", +"Could not enable app. " => "Non Ê posÃbel activar o aplicativo.", +"Email saved" => "Correo gardado", +"Invalid email" => "correo incorrecto", +"OpenID Changed" => "Cambiou o OpenID", "Invalid request" => "PeticiÃŗn incorrecta", -"Unable to delete group" => "Non se pode eliminar o grupo.", -"Authentication error" => "Erro na autenticaciÃŗn", -"Unable to delete user" => "Non se pode eliminar o usuario", -"Language changed" => "O idioma mudou", +"Unable to delete group" => "Non Ê posÃbel eliminar o grupo.", +"Authentication error" => "Produciuse un erro de autenticaciÃŗn", +"Unable to delete user" => "Non Ê posÃbel eliminar o usuario", +"Language changed" => "O idioma cambiou", "Admins can't remove themself from the admin group" => "Os administradores non se pode eliminar a si mesmos do grupo admin", -"Unable to add user to group %s" => "Non se puido engadir o usuario ao grupo %s", -"Unable to remove user from group %s" => "Non se puido eliminar o usuario do grupo %s", +"Unable to add user to group %s" => "Non Ê posÃbel engadir o usuario ao grupo %s", +"Unable to remove user from group %s" => "Non Ê posÃbel eliminar o usuario do grupo %s", "Disable" => "Desactivar", "Enable" => "Activar", "Saving..." => "Gardando...", "__language_name__" => "Galego", -"Add your App" => "Engade o teu aplicativo", +"Add your App" => "Engada o seu aplicativo", "More Apps" => "MÃĄis aplicativos", -"Select an App" => "Escolla un Aplicativo", -"See application page at apps.owncloud.com" => "Vexa a pÃĄxina do aplicativo en apps.owncloud.com", +"Select an App" => "Escolla un aplicativo", +"See application page at apps.owncloud.com" => "Consulte a pÃĄxina do aplicativo en apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por<span class=\"author\"></span>", -"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Tes usados <strong>%s</strong> do total dispoÃąÃbel de <strong>%s</strong>", +"User Documentation" => "DocumentaciÃŗn do usuario", +"Administrator Documentation" => "DocumentaciÃŗn do administrador", +"Online Documentation" => "DocumentaciÃŗn na Rede", +"Forum" => "Foro", +"Bugtracker" => "Seguemento de fallos", +"Commercial Support" => "Asistencia comercial", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Te en uso <strong>%s</strong> do total dispoÃąÃbel de <strong>%s</strong>", "Clients" => "Clientes", +"Download Desktop Clients" => "Descargar clientes para escritorio", +"Download Android Client" => "Descargar clientes para Android", +"Download iOS Client" => "Descargar clientes ra iOS", "Password" => "Contrasinal", "Your password was changed" => "O seu contrasinal foi cambiado", -"Unable to change your password" => "Incapaz de trocar o seu contrasinal", +"Unable to change your password" => "Non Ê posÃbel cambiar o seu contrasinal", "Current password" => "Contrasinal actual", "New password" => "Novo contrasinal", "show" => "amosar", -"Change password" => "Mudar contrasinal", -"Email" => "Correo electrÃŗnico", -"Your email address" => "O seu enderezo de correo electrÃŗnico", -"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo electrÃŗnico para habilitar a recuperaciÃŗn do contrasinal", +"Change password" => "Cambiar o contrasinal", +"Email" => "Correo", +"Your email address" => "O seu enderezo de correo", +"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar a recuperaciÃŗn do contrasinal", "Language" => "Idioma", "Help translate" => "Axude na traduciÃŗn", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros", +"Version" => "VersiÃŗn", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desenvolvido pola <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">cÃŗdigo fonte</a> estÃĄ baixo a licenza <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Name" => "Nome", "Groups" => "Grupos", "Create" => "Crear", +"Default Storage" => "Almacenamento predeterminado", +"Unlimited" => "Sen lÃmites", "Other" => "Outro", "Group Admin" => "Grupo Admin", -"Delete" => "Borrar" +"Storage" => "Almacenamento", +"Default" => "Predeterminado", +"Delete" => "Eliminar" ); diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 29c38827566..4b1efe35f67 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -53,7 +53,11 @@ "Name" => "åå", "Groups" => "ã°ãĢãŧã", "Create" => "äŊæ", +"Default Storage" => "ãããŠãĢããšããŦãŧã¸", +"Unlimited" => "įĄåļé", "Other" => "ããŽäģ", "Group Admin" => "ã°ãĢãŧãįŽĄįč
", +"Storage" => "ãšããŦãŧã¸", +"Default" => "ãããŠãĢã", "Delete" => "åé¤" ); diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 1cfa991464f..32764a9cf36 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -53,7 +53,11 @@ "Name" => "Nome", "Groups" => "Grupos", "Create" => "Criar", +"Default Storage" => "Armazenamento PadrÃŖo", +"Unlimited" => "Ilimitado", "Other" => "Outro", "Group Admin" => "Grupo Administrador", +"Storage" => "Armazenamento", +"Default" => "PadrÃŖo", "Delete" => "Apagar" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index ce12b4e3e22..88dc1dddba9 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -23,8 +23,17 @@ "Select an App" => "Izberite program", "See application page at apps.owncloud.com" => "ObiÅĄÄite spletno stran programa na apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-z dovoljenjem s strani <span class=\"author\"></span>", +"User Documentation" => "UporabniÅĄka dokumentacija", +"Administrator Documentation" => "Administratorjeva dokumentacija", +"Online Documentation" => "Spletna dokumentacija", +"Forum" => "Forum", +"Bugtracker" => "Sistem za sledenje napakam", +"Commercial Support" => "Komercialna podpora", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Uporabljate <strong>%s</strong> od razpoloÅžljivih <strong>%s</strong>", "Clients" => "Stranka", +"Download Desktop Clients" => "Prenesi namizne odjemalce", +"Download Android Client" => "Prenesi Android odjemalec", +"Download iOS Client" => "Prenesi iOS odjemalec", "Password" => "Geslo", "Your password was changed" => "VaÅĄe geslo je spremenjeno", "Unable to change your password" => "Gesla ni mogoÄe spremeniti.", @@ -37,11 +46,18 @@ "Fill in an email address to enable password recovery" => "VpiÅĄite vaÅĄ elektronski naslov in s tem omogoÄite obnovitev gesla", "Language" => "Jezik", "Help translate" => "Pomagajte pri prevajanju", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Uporabite ta naslov za povezavo do ownCloud v vaÅĄem upravljalniku datotek.", +"Version" => "RazliÄica", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Programski paket razvija <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnost ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je objavljena pod pogoji dovoljenja <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"SploÅĄno javno dovoljenje Affero\">AGPL</abbr></a>.", "Name" => "Ime", "Groups" => "Skupine", "Create" => "Ustvari", +"Default Storage" => "Privzeta shramba", +"Unlimited" => "Neomejeno", "Other" => "Drugo", "Group Admin" => "Skrbnik skupine", +"Storage" => "Shramba", +"Default" => "Privzeto", "Delete" => "IzbriÅĄi" ); diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 38e2af8a51a..179ce9c5405 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -15,7 +15,7 @@ <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>" <?php if ( isset( $app['ocs_id'] ) ) { echo "data-id-ocs=\"{$app['ocs_id']}\""; } ?> data-type="<?php echo $app['internal'] ? 'internal' : 'external' ?>" data-installed="1"> <a class="app<?php if(!$app['internal']) echo ' externalapp' ?>" href="?appid=<?php echo $app['id'] ?>"><?php echo htmlentities($app['name']) ?></a> - <script type="application/javascript"> + <script> appData_<?php echo $app['id'] ?>=<?php OC_JSON::encodedPrint($app, false) ?>; </script> <?php if(!$app['internal']) echo '<small class="externalapp list">3rd party</small>' ?> |