Merge branch 'master' into fix_minor_files_annoyances

Conflicts:
	apps/files/js/files.js
This commit is contained in:
Thomas Mueller 2013-01-06 22:46:40 +01:00
commit 9671ace32e
196 changed files with 7238 additions and 3876 deletions

View File

@ -30,11 +30,8 @@ OCP\User::checkAdminUser();
$htaccessWorking=(getenv('htaccessWorking')=='true'); $htaccessWorking=(getenv('htaccessWorking')=='true');
$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize')); $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 = 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)); $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($_POST && OC_Util::isCallRegistered()) {
if(isset($_POST['maxUploadSize'])) { if(isset($_POST['maxUploadSize'])) {
if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) { 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 = new OCP\Template( 'files', 'admin' );
$tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable ); $tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable );
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize); $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( 'allowZipDownload', $allowZipDownload);
$tmpl->assign( 'maxZipInputSize', $maxZipInputSize); $tmpl->assign( 'maxZipInputSize', $maxZipInputSize);
return $tmpl->fetchPage(); return $tmpl->fetchPage();

View File

@ -12,7 +12,7 @@ $file = stripslashes($_GET["file"]);
$newname = stripslashes($_GET["newname"]); $newname = stripslashes($_GET["newname"]);
// Delete // Delete
if( OC_Files::move( $dir, $file, $dir, $newname )) { if( $newname !== '.' and OC_Files::move( $dir, $file, $dir, $newname )) {
OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname ))); OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname )));
} }
else{ else{

View File

@ -8,14 +8,15 @@ OCP\JSON::setContentTypeHeader('text/plain');
OCP\JSON::checkLoggedIn(); OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck(); OCP\JSON::callCheck();
$l=OC_L10N::get('files');
if (!isset($_FILES['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(); exit();
} }
foreach ($_FILES['files']['error'] as $error) { foreach ($_FILES['files']['error'] as $error) {
if ($error != 0) { if ($error != 0) {
$l=OC_L10N::get('files');
$errors = array( $errors = array(
UPLOAD_ERR_OK=>$l->t('There is no error, the file uploaded with success'), 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: ') 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; $totalSize+=$size;
} }
if($totalSize>OC_Filesystem::free_space($dir)) { 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(); exit();
} }
@ -65,7 +66,7 @@ if(strpos($dir, '..') === false) {
OCP\JSON::encodedPrint($result); OCP\JSON::encodedPrint($result);
exit(); exit();
} else { } 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 )));

View File

@ -149,7 +149,7 @@ var FileList={
event.stopPropagation(); event.stopPropagation();
event.preventDefault(); event.preventDefault();
var newname=input.val(); var newname=input.val();
if (Files.containsInvalidCharacters(newname)) { if (!Files.isFileNameValid(newname)) {
return false; return false;
} else if (newname.length == 0) { } else if (newname.length == 0) {
$('#notification').text(t('files', "Name cannot be empty.")); $('#notification').text(t('files', "Name cannot be empty."));

View File

@ -26,17 +26,29 @@ Files={
}); });
procesSelection(); procesSelection();
}, },
containsInvalidCharacters:function (name) { isFileNameValid:function (name) {
if (name === '.') {
$('#notification').text(t('files', "'.' is an invalid file name."));
$('#notification').fadeIn();
return false;
}
if (name.length == 0) {
$('#notification').text(t('files', "File name cannot be empty."));
$('#notification').fadeIn();
return false;
}
// check for invalid characters
var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*']; var invalid_characters = ['\\', '/', '<', '>', ':', '"', '|', '?', '*'];
for (var i = 0; i < invalid_characters.length; i++) { for (var i = 0; i < invalid_characters.length; i++) {
if (name.indexOf(invalid_characters[i]) != -1) { if (name.indexOf(invalid_characters[i]) != -1) {
$('#notification').text(t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.")); $('#notification').text(t('files', "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."));
$('#notification').fadeIn(); $('#notification').fadeIn();
return true; return false;
} }
} }
$('#notification').fadeOut(); $('#notification').fadeOut();
return false; return true;
} }
}; };
$(document).ready(function() { $(document).ready(function() {
@ -514,7 +526,7 @@ $(document).ready(function() {
event.stopPropagation(); event.stopPropagation();
event.preventDefault(); event.preventDefault();
var newname=input.val(); var newname=input.val();
if(type != 'web' && Files.containsInvalidCharacters(newname)){ if(type != 'web' && !Files.isFileNameValid(newname)){
return false; return false;
} else if (newname.length == 0) { } else if (newname.length == 0) {
if(type == 'web') { if(type == 'web') {

46
apps/files/l10n/bn_BD.php Normal file
View File

@ -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" => "বর্তমান স্ক্যানিং"
);

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "There is no error, the file uploaded with success" => "El fitxer s'ha pujat correctament",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Larxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Larxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:",
"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", "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", "No file was uploaded" => "El fitxer no s'ha pujat",
"Missing a temporary folder" => "S'ha perdut un fitxer temporal", "Missing a temporary folder" => "S'ha perdut un fitxer temporal",
"Failed to write to disk" => "Ha fallat en escriure al disc", "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", "Files" => "Fitxers",
"Unshare" => "Deixa de compartir", "Unshare" => "Deixa de compartir",
"Delete" => "Suprimeix", "Delete" => "Suprimeix",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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ě", "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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.", "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 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", "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.", "No file was uploaded" => "Es wurde keine Datei hochgeladen.",
"Missing a temporary folder" => "Temporärer Ordner fehlt.", "Missing a temporary folder" => "Temporärer Ordner fehlt.",
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
"Not enough space available" => "Nicht genug Speicherplatz verfügbar",
"Invalid directory." => "Ungültiges Verzeichnis.",
"Files" => "Dateien", "Files" => "Dateien",
"Unshare" => "Nicht mehr freigeben", "Unshare" => "Nicht mehr freigeben",
"Delete" => "Löschen", "Delete" => "Löschen",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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.", "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 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", "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.", "No file was uploaded" => "Es wurde keine Datei hochgeladen.",
"Missing a temporary folder" => "Der temporäre Ordner fehlt.", "Missing a temporary folder" => "Der temporäre Ordner fehlt.",
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
"Not enough space available" => "Nicht genug Speicher verfügbar",
"Invalid directory." => "Ungültiges Verzeichnis.",
"Files" => "Dateien", "Files" => "Dateien",
"Unshare" => "Nicht mehr freigeben", "Unshare" => "Nicht mehr freigeben",
"Delete" => "Löschen", "Delete" => "Löschen",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα",
"There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς", "There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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", "No file was uploaded" => "No se ha subido ningún archivo",
"Missing a temporary folder" => "Falta un directorio temporal", "Missing a temporary folder" => "Falta un directorio temporal",
"Failed to write to disk" => "La escritura en disco ha fallado", "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", "Files" => "Archivos",
"Unshare" => "Dejar de compartir", "Unshare" => "Dejar de compartir",
"Delete" => "Eliminar", "Delete" => "Eliminar",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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", "No file was uploaded" => "El archivo no fue subido",
"Missing a temporary folder" => "Falta un directorio temporal", "Missing a temporary folder" => "Falta un directorio temporal",
"Failed to write to disk" => "Error al escribir en el disco", "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", "Files" => "Archivos",
"Unshare" => "Dejar de compartir", "Unshare" => "Dejar de compartir",
"Delete" => "Borrar", "Delete" => "Borrar",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "The uploaded file was only partially uploaded" => "Fail laeti üles ainult osaliselt",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس",
"There is no error, the file uploaded with success" => "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد", "There is no error, the file uploaded with success" => "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE", "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" => "مقدار کمی از فایل بارگذاری شده", "The uploaded file was only partially uploaded" => "مقدار کمی از فایل بارگذاری شده",

View File

@ -1,10 +1,13 @@
<?php $TRANSLATIONS = array( <?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", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan",
"The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain", "The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain",
"No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty", "No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty",
"Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa", "Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa",
"Failed to write to disk" => "Levylle kirjoitus epäonnistui", "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", "Files" => "Tiedostot",
"Unshare" => "Peru jakaminen", "Unshare" => "Peru jakaminen",
"Delete" => "Poista", "Delete" => "Poista",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été téléversé avec succès",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:",
"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", "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", "replace" => "remplacer",
"suggest name" => "Suggérer un nom", "suggest name" => "Suggérer un nom",
"cancel" => "annuler", "cancel" => "annuler",
"replaced {new_name}" => "{new_name} a été replacé", "replaced {new_name}" => "{new_name} a été remplacé",
"undo" => "annuler", "undo" => "annuler",
"replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}",
"unshared {files}" => "Fichiers non partagés : {files}", "unshared {files}" => "Fichiers non partagés : {files}",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.",
"There is no error, the file uploaded with success" => "לא אירעה תקלה, הקבצים הועלו בהצלחה", "There is no error, the file uploaded with success" => "לא אירעה תקלה, הקבצים הועלו בהצלחה",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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.", "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.",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "There is no error, the file uploaded with success" => "Non ci sono errori, file caricato con successo",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:",
"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", "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", "No file was uploaded" => "Nessun file è stato caricato",
"Missing a temporary folder" => "Cartella temporanea mancante", "Missing a temporary folder" => "Cartella temporanea mancante",
"Failed to write to disk" => "Scrittura su disco non riuscita", "Failed to write to disk" => "Scrittura su disco non riuscita",
"Not enough space available" => "Spazio disponibile insufficiente",
"Invalid directory." => "Cartella non valida.",
"Files" => "File", "Files" => "File",
"Unshare" => "Rimuovi condivisione", "Unshare" => "Rimuovi condivisione",
"Delete" => "Elimina", "Delete" => "Elimina",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー",
"There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました", "There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다",
"There is no error, the file uploaded with success" => "업로드에 성공하였습니다.", "There is no error, the file uploaded with success" => "업로드에 성공하였습니다.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "Ниту еден фајл не се вчита. Непозната грешка",
"There is no error, the file uploaded with success" => "Нема грешка, датотеката беше подигната успешно", "There is no error, the file uploaded with success" => "Нема грешка, датотеката беше подигната успешно",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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.", "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 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. ", "The uploaded file was only partially uploaded" => "Sebahagian daripada fail telah dimuat naik. ",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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.", "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 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", "The uploaded file was only partially uploaded" => "Filopplastningen ble bare delvis gjennomført",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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.", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "There is no error, the file uploaded with success" => "Sem erro, ficheiro enviado com sucesso",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize",
"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", "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", "No file was uploaded" => "Não foi enviado nenhum ficheiro",
"Missing a temporary folder" => "Falta uma pasta temporária", "Missing a temporary folder" => "Falta uma pasta temporária",
"Failed to write to disk" => "Falhou a escrita no disco", "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", "Files" => "Ficheiros",
"Unshare" => "Deixar de partilhar", "Unshare" => "Deixar de partilhar",
"Delete" => "Apagar", "Delete" => "Apagar",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
"There is no error, the file uploaded with success" => "Файл успешно загружен", "There is no error, the file uploaded with success" => "Файл успешно загружен",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
"There is no error, the file uploaded with success" => "Ошибка отсутствует, файл загружен успешно.", "There is no error, the file uploaded with success" => "Ошибка отсутствует, файл загружен успешно.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්",
"There is no error, the file uploaded with success" => "නිවැරදි ව ගොනුව උඩුගත කෙරිනි", "There is no error, the file uploaded with success" => "නිවැරදි ව ගොනුව උඩුගත කෙරිනි",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය",
"The uploaded file was only partially uploaded" => "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය", "The uploaded file was only partially uploaded" => "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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ý", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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.", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு",
"There is no error, the file uploaded with success" => "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது", "There is no error, the file uploaded with success" => "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது",
"The uploaded file was only partially uploaded" => "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது", "The uploaded file was only partially uploaded" => "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ",
"There is no error, the file uploaded with success" => "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", "There is no error, the file uploaded with success" => "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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ııldı.", "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ıı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ııyor", "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ııyor",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка",
"There is no error, the file uploaded with success" => "Файл успішно вивантажено без помилок.", "There is no error, the file uploaded with success" => "Файл успішно вивантажено без помилок.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: ", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: ",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?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", "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 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", "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",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "没有上传文件。未知错误",
"There is no error, the file uploaded with success" => "没有任何错误,文件上传成功了", "There is no error, the file uploaded with success" => "没有任何错误,文件上传成功了",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了HTML表单指定的MAX_FILE_SIZE", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了HTML表单指定的MAX_FILE_SIZE",
"The uploaded file was only partially uploaded" => "文件只有部分被上传", "The uploaded file was only partially uploaded" => "文件只有部分被上传",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "没有文件被上传。未知错误",
"There is no error, the file uploaded with success" => "没有发生错误,文件上传成功。", "There is no error, the file uploaded with success" => "没有发生错误,文件上传成功。",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传文件大小已超过php.ini中upload_max_filesize所规定的值", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传文件大小已超过php.ini中upload_max_filesize所规定的值",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE",

View File

@ -1,4 +1,5 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"No file was uploaded. Unknown error" => "沒有檔案被上傳. 未知的錯誤.",
"There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功", "There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制",
"The uploaded file was only partially uploaded" => "只有部分檔案被上傳", "The uploaded file was only partially uploaded" => "只有部分檔案被上傳",

View File

@ -6,7 +6,10 @@
<?php if($_['uploadChangable']):?> <?php if($_['uploadChangable']):?>
<label for="maxUploadSize"><?php echo $l->t( 'Maximum upload size' ); ?> </label> <label for="maxUploadSize"><?php echo $l->t( 'Maximum upload size' ); ?> </label>
<input name='maxUploadSize' id="maxUploadSize" value='<?php echo $_['uploadMaxFilesize'] ?>'/> <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;?> <?php endif;?>
<input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1" <input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1"
title="<?php echo $l->t( 'Needed for multi-file and folder downloads.' ); ?>" title="<?php echo $l->t( 'Needed for multi-file and folder downloads.' ); ?>"

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Backend" => "প্রশাসক",
"Groups" => "গোষ্ঠী",
"Users" => "ব্যবহারকারিবৃন্দ",
"Delete" => "মুছে ফেল"
);

View File

@ -6,4 +6,4 @@ OC::$CLASSPATH['OC_Filestorage_Shared'] = "apps/files_sharing/lib/sharedstorage.
OCP\Util::connectHook('OC_Filesystem', 'setup', 'OC_Filestorage_Shared', 'setup'); OCP\Util::connectHook('OC_Filesystem', 'setup', 'OC_Filestorage_Shared', 'setup');
OCP\Share::registerBackend('file', 'OC_Share_Backend_File'); OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file'); OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');
OCP\Util::addScript('files_sharing', 'share'); OCP\Util::addScript('files_sharing', 'share');

View File

@ -0,0 +1,6 @@
<?php $TRANSLATIONS = array(
"Password" => "কূটশব্দ",
"Submit" => "পাঠাও",
"Download" => "ডাউনলোড",
"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Enable" => "সক্রিয়"
);

View File

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

View File

@ -1,4 +1,6 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>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", "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://", "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", "Base DN" => "DN base",

View File

@ -78,6 +78,9 @@ $CONFIG = array(
/* Host to use for sending mail, depends on mail_smtpmode if this is used */ /* Host to use for sending mail, depends on mail_smtpmode if this is used */
"mail_smtphost" => "127.0.0.1", "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 /* authentication needed to send mail, depends on mail_smtpmode if this is used
* (false = disable authentication) * (false = disable authentication)
*/ */
@ -112,6 +115,9 @@ $CONFIG = array(
*/ */
// "datadirectory" => "", // "datadirectory" => "",
/* Enable maintenance mode to disable ownCloud */
"maintenance" => false,
"apps_paths" => array( "apps_paths" => array(
/* Set an array of path for your apps directories /* Set an array of path for your apps directories

67
core/ajax/update.php Normal file
View File

@ -0,0 +1,67 @@
<?php
set_time_limit(0);
$RUNTIME_NOAPPS = true;
require_once '../../lib/base.php';
if (OC::checkUpgrade(false)) {
$updateEventSource = new OC_EventSource();
$watcher = new UpdateWatcher($updateEventSource);
OC_Hook::connect('update', 'success', $watcher, 'success');
OC_Hook::connect('update', 'error', $watcher, 'error');
OC_Hook::connect('update', 'error', $watcher, 'failure');
$watcher->success('Turned on maintenance mode');
try {
$result = OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml');
$watcher->success('Updated database');
} catch (Exception $exception) {
$watcher->failure($exception->getMessage());
}
$minimizerCSS = new OC_Minimizer_CSS();
$minimizerCSS->clearCache();
$minimizerJS = new OC_Minimizer_JS();
$minimizerJS->clearCache();
OC_Config::setValue('version', implode('.', OC_Util::getVersion()));
OC_App::checkAppsRequirements();
// load all apps to also upgrade enabled apps
OC_App::loadApps();
OC_Config::setValue('maintenance', false);
$watcher->success('Turned off maintenance mode');
$watcher->done();
}
class UpdateWatcher {
/**
* @var \OC_EventSource $eventSource;
*/
private $eventSource;
public function __construct($eventSource) {
$this->eventSource = $eventSource;
}
public function success($message) {
OC_Util::obEnd();
$this->eventSource->send('success', $message);
ob_start();
}
public function error($message) {
OC_Util::obEnd();
$this->eventSource->send('error', $message);
ob_start();
}
public function failure($message) {
OC_Util::obEnd();
$this->eventSource->send('failure', $message);
$this->eventSource->close();
die();
}
public function done() {
OC_Util::obEnd();
$this->eventSource->send('done', '');
$this->eventSource->close();
}
}

View File

@ -214,7 +214,8 @@ div.jp-play-bar, div.jp-seek-bar { padding:0; }
.pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; } .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; }
.pager li { display:inline-block; } .pager li { display:inline-block; }
li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; color:#FF3B3B; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; } li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; }
.error { color:#FF3B3B; }
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; }
.hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777777; padding-left:25px; background-position:0 0.3em;} .hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777777; padding-left:25px; background-position:0 0.3em;}
.separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; } .separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; }

View File

@ -3,14 +3,15 @@
* Add * Add
* define('DEBUG', true); * define('DEBUG', true);
* To the end of config/config.php to enable debug mode. * 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) { if (!window.console) {
window.console = {}; window.console = {};
} }
var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert']; var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert'];
for (var i = 0; i < methods.length; i++) { 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 * @param text the string to translate
* @return string * @return string
*/ */
function t(app,text, vars){ function t(app,text, vars){
if( !( t.cache[app] )){ if( !( t.cache[app] )){
$.ajax(OC.filePath('core','ajax','translations.php'),{ $.ajax(OC.filePath('core','ajax','translations.php'),{

121
core/l10n/bn_BD.php Normal file
View File

@ -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" => "যাচাই কর"
);

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?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. ", "Category type not provided." => "Tipo de categoría no provisto. ",
"No category to add?" => "¿Ninguna categoría para añadir?", "No category to add?" => "¿Ninguna categoría para añadir?",
"This category already exists: " => "Esta categoría ya existe: ", "This category already exists: " => "Esta categoría ya existe: ",
@ -39,6 +43,8 @@
"Share with link" => "Compartir con link", "Share with link" => "Compartir con link",
"Password protect" => "Proteger con contraseña ", "Password protect" => "Proteger con contraseña ",
"Password" => "Contraseña", "Password" => "Contraseña",
"Email link to person" => "Enviar el link por e-mail.",
"Send" => "Enviar",
"Set expiration date" => "Asignar fecha de vencimiento", "Set expiration date" => "Asignar fecha de vencimiento",
"Expiration date" => "Fecha de vencimiento", "Expiration date" => "Fecha de vencimiento",
"Share via email:" => "compartido a través de e-mail:", "Share via email:" => "compartido a través de e-mail:",
@ -55,6 +61,8 @@
"Password protected" => "Protegido por contraseña", "Password protected" => "Protegido por contraseña",
"Error unsetting expiration date" => "Error al remover la fecha de caducidad", "Error unsetting expiration date" => "Error al remover la fecha de caducidad",
"Error setting expiration date" => "Error al asignar fecha de vencimiento", "Error setting expiration date" => "Error al asignar fecha de vencimiento",
"Sending ..." => "Enviando...",
"Email sent" => "Email enviado",
"ownCloud password reset" => "Restablecer contraseña de ownCloud", "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}", "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", "You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña",

View File

@ -59,7 +59,7 @@
"delete" => "supprimer", "delete" => "supprimer",
"share" => "partager", "share" => "partager",
"Password protected" => "Protégé par un mot de passe", "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", "Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration",
"Sending ..." => "En cours d'envoi ...", "Sending ..." => "En cours d'envoi ...",
"Email sent" => "Email envoyé", "Email sent" => "Email envoyé",
@ -83,7 +83,7 @@
"Cloud not found" => "Introuvable", "Cloud not found" => "Introuvable",
"Edit categories" => "Modifier les catégories", "Edit categories" => "Modifier les catégories",
"Add" => "Ajouter", "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", "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.", "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.", "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.",

View File

@ -45,8 +45,6 @@ class OC_Core_LostPassword_Controller {
$l = OC_L10N::get('core'); $l = OC_L10N::get('core');
$from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply');
OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud');
echo('Mailsent');
self::displayLostPasswordPage(false, true); self::displayLostPasswordPage(false, true);
} else { } else {
self::displayLostPasswordPage(true, false); self::displayLostPasswordPage(true, false);

31
core/templates/update.php Normal file
View File

@ -0,0 +1,31 @@
<ul>
<li class='update'>
<?php echo $l->t('Updating ownCloud to version %s, this may take a while.', array($_['version'])); ?><br /><br />
</li>
</ul>
<script>
$(document).ready(function () {
OC.EventSource.requesttoken = oc_requesttoken;
var updateEventSource = new OC.EventSource(OC.webroot+'/core/ajax/update.php');
updateEventSource.listen('success', function(message) {
$('<span>').append(message).append('<br />').appendTo($('.update'));
});
updateEventSource.listen('error', function(message) {
$('<span>').addClass('error').append(message).append('<br />').appendTo($('.update'));
});
updateEventSource.listen('failure', function(message) {
$('<span>').addClass('error').append(message).append('<br />').appendTo($('.update'));
$('<span>')
.addClass('error bold')
.append('<br />')
.append(t('core', 'The update was unsuccessful. Please report this issue to the <a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.'))
.appendTo($('.update'));
});
updateEventSource.listen('done', function(message) {
$('<span>').addClass('bold').append('<br />').append(t('core', 'The update was successful. Redirecting you to ownCloud now.')).appendTo($('.update'));
setTimeout(function () {
window.location.href = OC.webroot;
}, 3000);
});
});
</script>

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -18,46 +18,58 @@ msgstr ""
"Language: ar\n" "Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: ajax/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" msgid "There is no error, the file uploaded with success"
msgstr "تم ترفيع الملفات بنجاح." msgstr "تم ترفيع الملفات بنجاح."
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr ""
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML."
#: ajax/upload.php:25 #: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded" msgid "The uploaded file was only partially uploaded"
msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "لم يتم ترفيع أي من الملفات" msgstr "لم يتم ترفيع أي من الملفات"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "المجلد المؤقت غير موجود" msgstr "المجلد المؤقت غير موجود"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "" msgstr ""
#: ajax/upload.php:45
msgid "Not enough space available"
msgstr ""
#: ajax/upload.php:69
msgid "Invalid directory."
msgstr ""
#: appinfo/app.php:10 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "الملفات" 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" msgid "Unshare"
msgstr "إلغاء مشاركة" 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" msgid "Delete"
msgstr "محذوف" msgstr "محذوف"
@ -65,39 +77,39 @@ msgstr "محذوف"
msgid "Rename" msgid "Rename"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "" msgstr ""
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "" msgstr ""
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "" 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" msgid "undo"
msgstr "" msgstr ""
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "" msgstr ""
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "" msgstr ""
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "" msgstr ""
@ -107,80 +119,80 @@ msgid ""
"allowed." "allowed."
msgstr "" msgstr ""
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "" msgstr ""
#: js/files.js:218 #: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes" msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "" msgstr ""
#: js/files.js:218 #: js/files.js:212
msgid "Upload Error" msgid "Upload Error"
msgstr "" msgstr ""
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "إغلق" 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" msgid "Pending"
msgstr "" msgstr ""
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "" 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" msgid "{count} files uploading"
msgstr "" msgstr ""
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "" msgstr ""
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "" msgstr ""
#: js/files.js:523 #: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "" msgstr ""
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "" msgstr ""
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "" msgstr ""
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "الاسم" msgstr "الاسم"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "حجم" msgstr "حجم"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "معدل" msgstr "معدل"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "" msgstr ""
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "" msgstr ""
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "" msgstr ""
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "" msgstr ""
@ -192,27 +204,27 @@ msgstr ""
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها" msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "" msgstr ""
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "" msgstr ""
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "" msgstr ""
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "" msgstr ""
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "" msgstr ""
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "حفظ" msgstr "حفظ"
@ -240,28 +252,28 @@ msgstr "إرفع"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "" msgstr ""
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "تحميل" msgstr "تحميل"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "حجم الترفيع أعلى من المسموح" msgstr "حجم الترفيع أعلى من المسموح"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم."
#: templates/index.php:110 #: templates/index.php:111
msgid "Files are being scanned, please wait." msgid "Files are being scanned, please wait."
msgstr "" msgstr ""
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "" msgstr ""

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,46 +19,58 @@ msgstr ""
"Language: bg_BG\n" "Language: bg_BG\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/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" msgid "There is no error, the file uploaded with success"
msgstr "Файлът е качен успешно" msgstr "Файлът е качен успешно"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr ""
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата."
#: ajax/upload.php:25 #: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded" msgid "The uploaded file was only partially uploaded"
msgstr "Файлът е качен частично" msgstr "Файлът е качен частично"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Фахлът не бе качен" msgstr "Фахлът не бе качен"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Липсва временната папка" msgstr "Липсва временната папка"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Грешка при запис на диска" msgstr "Грешка при запис на диска"
#: ajax/upload.php:45
msgid "Not enough space available"
msgstr ""
#: ajax/upload.php:69
msgid "Invalid directory."
msgstr ""
#: appinfo/app.php:10 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Файлове" 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" msgid "Unshare"
msgstr "" 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" msgid "Delete"
msgstr "Изтриване" msgstr "Изтриване"
@ -66,39 +78,39 @@ msgstr "Изтриване"
msgid "Rename" msgid "Rename"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "" msgstr ""
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "" msgstr ""
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "" 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" msgid "undo"
msgstr "" msgstr ""
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "" msgstr ""
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "" msgstr ""
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "" msgstr ""
@ -108,80 +120,80 @@ msgid ""
"allowed." "allowed."
msgstr "" msgstr ""
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "" msgstr ""
#: js/files.js:218 #: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes" msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "" msgstr ""
#: js/files.js:218 #: js/files.js:212
msgid "Upload Error" msgid "Upload Error"
msgstr "Грешка при качване" msgstr "Грешка при качване"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "" 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" msgid "Pending"
msgstr "" msgstr ""
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "" 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" msgid "{count} files uploading"
msgstr "" msgstr ""
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Качването е отменено." msgstr "Качването е отменено."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "" msgstr ""
#: js/files.js:523 #: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "" msgstr ""
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "" msgstr ""
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "" msgstr ""
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Име" msgstr "Име"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Размер" msgstr "Размер"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Променено" msgstr "Променено"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "" msgstr ""
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "" msgstr ""
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "" msgstr ""
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "" msgstr ""
@ -193,27 +205,27 @@ msgstr ""
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Макс. размер за качване" msgstr "Макс. размер за качване"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "" msgstr ""
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "" msgstr ""
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "" msgstr ""
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 означава без ограничение" msgstr "0 означава без ограничение"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "" msgstr ""
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Запис" msgstr "Запис"
@ -241,28 +253,28 @@ msgstr "Качване"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Отказване на качването" msgstr "Отказване на качването"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Няма нищо, качете нещо!" msgstr "Няма нищо, качете нещо!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Изтегляне" msgstr "Изтегляне"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Файлът е прекалено голям" msgstr "Файлът е прекалено голям"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра."
#: templates/index.php:110 #: templates/index.php:111
msgid "Files are being scanned, please wait." msgid "Files are being scanned, please wait."
msgstr "Файловете се претърсват, изчакайте." msgstr "Файловете се претърсват, изчакайте."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "" msgstr ""

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Shubhra Paul <paul_shubhra@yahoo.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-02 00:04+0100\n" "POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2011-07-25 16:05+0000\n" "PO-Revision-Date: 2013-01-02 09:32+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -20,12 +21,12 @@ msgstr ""
#: ajax/share.php:84 #: ajax/share.php:84
#, php-format #, php-format
msgid "User %s shared a file with you" msgid "User %s shared a file with you"
msgstr "" msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন"
#: ajax/share.php:86 #: ajax/share.php:86
#, php-format #, php-format
msgid "User %s shared a folder with you" msgid "User %s shared a folder with you"
msgstr "" msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন"
#: ajax/share.php:88 #: ajax/share.php:88
#, php-format #, php-format
@ -43,21 +44,21 @@ msgstr ""
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
msgstr "" msgstr "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।"
#: ajax/vcategories/add.php:30 #: ajax/vcategories/add.php:30
msgid "No category to add?" msgid "No category to add?"
msgstr "" msgstr "যোগ করার মত কোন ক্যাটেগরি নেই ?"
#: ajax/vcategories/add.php:37 #: ajax/vcategories/add.php:37
msgid "This category already exists: " msgid "This category already exists: "
msgstr "" msgstr "এই ক্যাটেগরিটি বিদ্যমানঃ"
#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27
#: ajax/vcategories/favorites.php:24 #: ajax/vcategories/favorites.php:24
#: ajax/vcategories/removeFromFavorites.php:26 #: ajax/vcategories/removeFromFavorites.php:26
msgid "Object type not provided." msgid "Object type not provided."
msgstr "" msgstr "অবজেক্টের ধরণটি প্রদান করা হয় নি।"
#: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/addToFavorites.php:30
#: ajax/vcategories/removeFromFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30
@ -68,123 +69,123 @@ msgstr ""
#: ajax/vcategories/addToFavorites.php:35 #: ajax/vcategories/addToFavorites.php:35
#, php-format #, php-format
msgid "Error adding %s to favorites." msgid "Error adding %s to favorites."
msgstr "" msgstr "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।"
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion." msgid "No categories selected for deletion."
msgstr "" msgstr "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।"
#: ajax/vcategories/removeFromFavorites.php:35 #: ajax/vcategories/removeFromFavorites.php:35
#, php-format #, php-format
msgid "Error removing %s from favorites." msgid "Error removing %s from favorites."
msgstr "" msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।"
#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings" msgid "Settings"
msgstr "" msgstr "নিয়ামকসমূহ"
#: js/js.js:704 #: js/js.js:704
msgid "seconds ago" msgid "seconds ago"
msgstr "" msgstr "সেকেন্ড পূর্বে"
#: js/js.js:705 #: js/js.js:705
msgid "1 minute ago" msgid "1 minute ago"
msgstr "" msgstr "1 মিনিট পূর্বে"
#: js/js.js:706 #: js/js.js:706
msgid "{minutes} minutes ago" msgid "{minutes} minutes ago"
msgstr "" msgstr "{minutes} মিনিট পূর্বে"
#: js/js.js:707 #: js/js.js:707
msgid "1 hour ago" msgid "1 hour ago"
msgstr "" msgstr "1 ঘন্টা পূর্বে"
#: js/js.js:708 #: js/js.js:708
msgid "{hours} hours ago" msgid "{hours} hours ago"
msgstr "" msgstr "{hours} ঘন্টা পূর্বে"
#: js/js.js:709 #: js/js.js:709
msgid "today" msgid "today"
msgstr "" msgstr "আজ"
#: js/js.js:710 #: js/js.js:710
msgid "yesterday" msgid "yesterday"
msgstr "" msgstr "গতকাল"
#: js/js.js:711 #: js/js.js:711
msgid "{days} days ago" msgid "{days} days ago"
msgstr "" msgstr "{days} দিন পূর্বে"
#: js/js.js:712 #: js/js.js:712
msgid "last month" msgid "last month"
msgstr "" msgstr "গতমাস"
#: js/js.js:713 #: js/js.js:713
msgid "{months} months ago" msgid "{months} months ago"
msgstr "" msgstr "{months} মাস পূর্বে"
#: js/js.js:714 #: js/js.js:714
msgid "months ago" msgid "months ago"
msgstr "" msgstr "মাস পূর্বে"
#: js/js.js:715 #: js/js.js:715
msgid "last year" msgid "last year"
msgstr "" msgstr "গত বছর"
#: js/js.js:716 #: js/js.js:716
msgid "years ago" msgid "years ago"
msgstr "" msgstr "বছর পূর্বে"
#: js/oc-dialogs.js:126 #: js/oc-dialogs.js:126
msgid "Choose" msgid "Choose"
msgstr "" msgstr "নির্বাচন"
#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 #: js/oc-dialogs.js:146 js/oc-dialogs.js:166
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr "বাতিল"
#: js/oc-dialogs.js:162 #: js/oc-dialogs.js:162
msgid "No" msgid "No"
msgstr "" msgstr "না"
#: js/oc-dialogs.js:163 #: js/oc-dialogs.js:163
msgid "Yes" msgid "Yes"
msgstr "" msgstr "হ্যাঁ"
#: js/oc-dialogs.js:180 #: js/oc-dialogs.js:180
msgid "Ok" msgid "Ok"
msgstr "" msgstr "তথাস্তু"
#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102
#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162
msgid "The object type is not specified." msgid "The object type is not specified."
msgstr "" msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।"
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
#: js/share.js:566 #: js/share.js:566
msgid "Error" msgid "Error"
msgstr "" msgstr "সমস্যা"
#: js/oc-vcategories.js:179 #: js/oc-vcategories.js:179
msgid "The app name is not specified." msgid "The app name is not specified."
msgstr "" msgstr "অ্যাপের নামটি সুনির্দিষ্ট নয়।"
#: js/oc-vcategories.js:194 #: js/oc-vcategories.js:194
msgid "The required file {file} is not installed!" msgid "The required file {file} is not installed!"
msgstr "" msgstr "আবশ্যিক {file} টি সংস্থাপিত নেই !"
#: js/share.js:124 js/share.js:594 #: js/share.js:124 js/share.js:594
msgid "Error while sharing" msgid "Error while sharing"
msgstr "" msgstr "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে"
#: js/share.js:135 #: js/share.js:135
msgid "Error while unsharing" msgid "Error while unsharing"
msgstr "" msgstr "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে"
#: js/share.js:142 #: js/share.js:142
msgid "Error while changing permissions" msgid "Error while changing permissions"
msgstr "" msgstr "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে"
#: js/share.js:151 #: js/share.js:151
msgid "Shared with you and the group {group} by {owner}" msgid "Shared with you and the group {group} by {owner}"
@ -196,48 +197,48 @@ msgstr ""
#: js/share.js:158 #: js/share.js:158
msgid "Share with" msgid "Share with"
msgstr "" msgstr "যাদের সাথে ভাগাভাগি করবে"
#: js/share.js:163 #: js/share.js:163
msgid "Share with link" msgid "Share with link"
msgstr "" msgstr "লিংক সহযোগে ভাগাভাগি"
#: js/share.js:166 #: js/share.js:166
msgid "Password protect" msgid "Password protect"
msgstr "" msgstr "কূটশব্দদ্বারা সুরক্ষিত"
#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: js/share.js:168 templates/installation.php:44 templates/login.php:35
#: templates/verify.php:13 #: templates/verify.php:13
msgid "Password" msgid "Password"
msgstr "" msgstr "কূটশব্দ"
#: js/share.js:172 #: js/share.js:172
msgid "Email link to person" msgid "Email link to person"
msgstr "" msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর"
#: js/share.js:173 #: js/share.js:173
msgid "Send" msgid "Send"
msgstr "" msgstr "পাঠাও"
#: js/share.js:177 #: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
msgstr "" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন"
#: js/share.js:178 #: js/share.js:178
msgid "Expiration date" msgid "Expiration date"
msgstr "" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ"
#: js/share.js:210 #: js/share.js:210
msgid "Share via email:" msgid "Share via email:"
msgstr "" msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ"
#: js/share.js:212 #: js/share.js:212
msgid "No people found" msgid "No people found"
msgstr "" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না"
#: js/share.js:239 #: js/share.js:239
msgid "Resharing is not allowed" msgid "Resharing is not allowed"
msgstr "" msgstr "পূনরায় ভাগাভাগি করার অনুমতি নেই"
#: js/share.js:275 #: js/share.js:275
msgid "Shared in {item} with {user}" msgid "Shared in {item} with {user}"
@ -245,136 +246,136 @@ msgstr ""
#: js/share.js:296 #: js/share.js:296
msgid "Unshare" msgid "Unshare"
msgstr "" msgstr "ভাগাভাগি বাতিল"
#: js/share.js:308 #: js/share.js:308
msgid "can edit" msgid "can edit"
msgstr "" msgstr "সম্পাদনা করতে পারবে"
#: js/share.js:310 #: js/share.js:310
msgid "access control" msgid "access control"
msgstr "" msgstr "অধিগম্যতার নিয়ন্ত্রণ"
#: js/share.js:313 #: js/share.js:313
msgid "create" msgid "create"
msgstr "" msgstr "তৈরি কর"
#: js/share.js:316 #: js/share.js:316
msgid "update" msgid "update"
msgstr "" msgstr "পরিবর্ধন কর"
#: js/share.js:319 #: js/share.js:319
msgid "delete" msgid "delete"
msgstr "" msgstr "মুছে ফেল"
#: js/share.js:322 #: js/share.js:322
msgid "share" msgid "share"
msgstr "" msgstr "ভাগাভাগি কর"
#: js/share.js:356 js/share.js:541 #: js/share.js:356 js/share.js:541
msgid "Password protected" msgid "Password protected"
msgstr "" msgstr "কূটশব্দদ্বারা সুরক্ষিত"
#: js/share.js:554 #: js/share.js:554
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা"
#: js/share.js:566 #: js/share.js:566
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা"
#: js/share.js:581 #: js/share.js:581
msgid "Sending ..." msgid "Sending ..."
msgstr "" msgstr "পাঠানো হচ্ছে......"
#: js/share.js:592 #: js/share.js:592
msgid "Email sent" msgid "Email sent"
msgstr "" msgstr "ই-মেইল পাঠানো হয়েছে"
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
msgstr "" msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ"
#: lostpassword/templates/email.php:2 #: lostpassword/templates/email.php:2
msgid "Use the following link to reset your password: {link}" msgid "Use the following link to reset your password: {link}"
msgstr "" msgstr "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}"
#: lostpassword/templates/lostpassword.php:3 #: lostpassword/templates/lostpassword.php:3
msgid "You will receive a link to reset your password via Email." msgid "You will receive a link to reset your password via Email."
msgstr "" msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।"
#: lostpassword/templates/lostpassword.php:5 #: lostpassword/templates/lostpassword.php:5
msgid "Reset email send." msgid "Reset email send."
msgstr "" msgstr "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।"
#: lostpassword/templates/lostpassword.php:8 #: lostpassword/templates/lostpassword.php:8
msgid "Request failed!" msgid "Request failed!"
msgstr "" msgstr "অনুরোধ ব্যর্থ !"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
#: templates/login.php:28 #: templates/login.php:28
msgid "Username" msgid "Username"
msgstr "" msgstr "ব্যবহারকারি"
#: lostpassword/templates/lostpassword.php:14 #: lostpassword/templates/lostpassword.php:14
msgid "Request reset" msgid "Request reset"
msgstr "" msgstr "পূনঃনির্ধারণের জন্য অনুরোধ"
#: lostpassword/templates/resetpassword.php:4 #: lostpassword/templates/resetpassword.php:4
msgid "Your password was reset" msgid "Your password was reset"
msgstr "" msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে"
#: lostpassword/templates/resetpassword.php:5 #: lostpassword/templates/resetpassword.php:5
msgid "To login page" msgid "To login page"
msgstr "" msgstr "প্রবেশ পাতায়"
#: lostpassword/templates/resetpassword.php:8 #: lostpassword/templates/resetpassword.php:8
msgid "New password" msgid "New password"
msgstr "" msgstr "নতুন কূটশব্দ"
#: lostpassword/templates/resetpassword.php:11 #: lostpassword/templates/resetpassword.php:11
msgid "Reset password" msgid "Reset password"
msgstr "" msgstr "কূটশব্দ পূনঃনির্ধারণ"
#: strings.php:5 #: strings.php:5
msgid "Personal" msgid "Personal"
msgstr "" msgstr "ব্যক্তিগত"
#: strings.php:6 #: strings.php:6
msgid "Users" msgid "Users"
msgstr "" msgstr "ব্যবহারকারিবৃন্দ"
#: strings.php:7 #: strings.php:7
msgid "Apps" msgid "Apps"
msgstr "" msgstr "অ্যাপস"
#: strings.php:8 #: strings.php:8
msgid "Admin" msgid "Admin"
msgstr "" msgstr "প্রশাসক"
#: strings.php:9 #: strings.php:9
msgid "Help" msgid "Help"
msgstr "" msgstr "সহায়িকা"
#: templates/403.php:12 #: templates/403.php:12
msgid "Access forbidden" msgid "Access forbidden"
msgstr "" msgstr "অধিগমনের অনুমতি নেই"
#: templates/404.php:12 #: templates/404.php:12
msgid "Cloud not found" msgid "Cloud not found"
msgstr "" msgstr "ক্লাউড খুঁজে পাওয়া গেল না"
#: templates/edit_categories_dialog.php:4 #: templates/edit_categories_dialog.php:4
msgid "Edit categories" msgid "Edit categories"
msgstr "" msgstr "ক্যাটেগরি সম্পাদনা"
#: templates/edit_categories_dialog.php:16 #: templates/edit_categories_dialog.php:16
msgid "Add" msgid "Add"
msgstr "" msgstr "যোগ কর"
#: templates/installation.php:23 templates/installation.php:31 #: templates/installation.php:23 templates/installation.php:31
msgid "Security Warning" msgid "Security Warning"
msgstr "" msgstr "নিরাপত্তাজনিত সতর্কতা"
#: templates/installation.php:24 #: templates/installation.php:24
msgid "" msgid ""
@ -399,132 +400,132 @@ msgstr ""
#: templates/installation.php:36 #: templates/installation.php:36
msgid "Create an <strong>admin account</strong>" msgid "Create an <strong>admin account</strong>"
msgstr "" msgstr "<strong>প্রশাসক একাউন্ট</strong> তৈরি কর"
#: templates/installation.php:50 #: templates/installation.php:50
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr "সুচারু"
#: templates/installation.php:52 #: templates/installation.php:52
msgid "Data folder" msgid "Data folder"
msgstr "" msgstr "ডাটা ফোল্ডার"
#: templates/installation.php:59 #: templates/installation.php:59
msgid "Configure the database" msgid "Configure the database"
msgstr "" msgstr "ডাটাবেজ কনফিগার কর"
#: templates/installation.php:64 templates/installation.php:75 #: templates/installation.php:64 templates/installation.php:75
#: templates/installation.php:85 templates/installation.php:95 #: templates/installation.php:85 templates/installation.php:95
msgid "will be used" msgid "will be used"
msgstr "" msgstr "ব্যবহৃত হবে"
#: templates/installation.php:107 #: templates/installation.php:107
msgid "Database user" msgid "Database user"
msgstr "" msgstr "ডাটাবেজ ব্যবহারকারি"
#: templates/installation.php:111 #: templates/installation.php:111
msgid "Database password" msgid "Database password"
msgstr "" msgstr "ডাটাবেজ কূটশব্দ"
#: templates/installation.php:115 #: templates/installation.php:115
msgid "Database name" msgid "Database name"
msgstr "" msgstr "ডাটাবেজের নাম"
#: templates/installation.php:123 #: templates/installation.php:123
msgid "Database tablespace" msgid "Database tablespace"
msgstr "" msgstr "ডাটাবেজ টেবিলস্পেস"
#: templates/installation.php:129 #: templates/installation.php:129
msgid "Database host" msgid "Database host"
msgstr "" msgstr "ডাটাবেজ হোস্ট"
#: templates/installation.php:134 #: templates/installation.php:134
msgid "Finish setup" msgid "Finish setup"
msgstr "" msgstr "সেট-আপ সুসম্পন্ন কর"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr "রবিবার"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Monday" msgid "Monday"
msgstr "" msgstr "সোমবার"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Tuesday" msgid "Tuesday"
msgstr "" msgstr "মঙ্গলবার"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Wednesday" msgid "Wednesday"
msgstr "" msgstr "বুধবার"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Thursday" msgid "Thursday"
msgstr "" msgstr "বৃহষ্পতিবার"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Friday" msgid "Friday"
msgstr "" msgstr "শুক্রবার"
#: templates/layout.guest.php:16 templates/layout.user.php:17 #: templates/layout.guest.php:16 templates/layout.user.php:17
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr "শনিবার"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "January" msgid "January"
msgstr "" msgstr "জানুয়ারি"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "February" msgid "February"
msgstr "" msgstr "ফেব্রুয়ারি"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "March" msgid "March"
msgstr "" msgstr "মার্চ"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "April" msgid "April"
msgstr "" msgstr "এপ্রিল"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "May" msgid "May"
msgstr "" msgstr "মে"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "June" msgid "June"
msgstr "" msgstr "জুন"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "July" msgid "July"
msgstr "" msgstr "জুলাই"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "August" msgid "August"
msgstr "" msgstr "অগাস্ট"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "September" msgid "September"
msgstr "" msgstr "সেপ্টেম্বর"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "October" msgid "October"
msgstr "" msgstr "অক্টোবর"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "November" msgid "November"
msgstr "" msgstr "নভেম্বর"
#: templates/layout.guest.php:17 templates/layout.user.php:18 #: templates/layout.guest.php:17 templates/layout.user.php:18
msgid "December" msgid "December"
msgstr "" msgstr "ডিসেম্বর"
#: templates/layout.guest.php:42 #: templates/layout.guest.php:42
msgid "web services under your control" msgid "web services under your control"
msgstr "" msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"
#: templates/layout.user.php:45 #: templates/layout.user.php:45
msgid "Log out" msgid "Log out"
msgstr "" msgstr "প্রস্থান"
#: templates/login.php:10 #: templates/login.php:10
msgid "Automatic logon rejected!" msgid "Automatic logon rejected!"
@ -542,31 +543,31 @@ msgstr ""
#: templates/login.php:19 #: templates/login.php:19
msgid "Lost your password?" msgid "Lost your password?"
msgstr "" msgstr "আপনার কূটশব্দটি হারিয়েছেন ?"
#: templates/login.php:39 #: templates/login.php:39
msgid "remember" msgid "remember"
msgstr "" msgstr "মনে রাখ"
#: templates/login.php:41 #: templates/login.php:41
msgid "Log in" msgid "Log in"
msgstr "" msgstr "প্রবেশ"
#: templates/logout.php:1 #: templates/logout.php:1
msgid "You are logged out." msgid "You are logged out."
msgstr "" msgstr "আপনি প্রস্থান করেছেন"
#: templates/part.pagenavi.php:3 #: templates/part.pagenavi.php:3
msgid "prev" msgid "prev"
msgstr "" msgstr "পূর্ববর্তী"
#: templates/part.pagenavi.php:20 #: templates/part.pagenavi.php:20
msgid "next" msgid "next"
msgstr "" msgstr "পরবর্তী"
#: templates/verify.php:5 #: templates/verify.php:5
msgid "Security Warning!" msgid "Security Warning!"
msgstr "" msgstr "নিরাপত্তাবিষয়ক সতর্কবাণী"
#: templates/verify.php:6 #: templates/verify.php:6
msgid "" msgid ""
@ -576,4 +577,4 @@ msgstr ""
#: templates/verify.php:16 #: templates/verify.php:16
msgid "Verify" msgid "Verify"
msgstr "" msgstr "যাচাই কর"

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Shubhra Paul <paul_shubhra@yahoo.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-02 00:04+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2011-08-13 02:19+0000\n" "PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -17,88 +18,100 @@ msgstr ""
"Language: bn_BD\n" "Language: bn_BD\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/upload.php:20 #: ajax/upload.php:14
msgid "There is no error, the file uploaded with success" msgid "No file was uploaded. Unknown error"
msgstr "" msgstr ""
#: ajax/upload.php:21 #: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে"
#: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr ""
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "" msgstr ""
#: ajax/upload.php:25
msgid "The uploaded file was only partially uploaded"
msgstr ""
#: ajax/upload.php:26 #: ajax/upload.php:26
msgid "No file was uploaded" msgid "The uploaded file was only partially uploaded"
msgstr "" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে"
#: ajax/upload.php:27 #: ajax/upload.php:27
msgid "Missing a temporary folder" msgid "No file was uploaded"
msgstr "" msgstr "কোন ফাইল আপলোড করা হয় নি"
#: ajax/upload.php:28 #: ajax/upload.php:28
msgid "Missing a temporary folder"
msgstr "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে "
#: ajax/upload.php:29
msgid "Failed to write to disk" 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 "" msgstr ""
#: appinfo/app.php:10 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "" msgstr "ফাইল"
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 #: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
msgid "Unshare" msgid "Unshare"
msgstr "" msgstr "ভাগাভাগি বাতিল"
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 #: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
msgid "Delete" msgid "Delete"
msgstr "" msgstr "মুছে ফেল"
#: js/fileactions.js:181 #: js/fileactions.js:181
msgid "Rename" msgid "Rename"
msgstr "" msgstr "পূনঃনামকরণ"
#: js/filelist.js:199 js/filelist.js:201 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "" msgstr "{new_name} টি বিদ্যমান"
#: js/filelist.js:199 js/filelist.js:201 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "" msgstr "প্রতিস্থাপন"
#: js/filelist.js:199 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "" msgstr "নাম সুপারিশ কর"
#: js/filelist.js:199 js/filelist.js:201 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "" msgstr "বাতিল"
#: js/filelist.js:248 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "" msgstr "{new_name} প্রতিস্থাপন করা হয়েছে"
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 #: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
msgid "undo" msgid "undo"
msgstr "" msgstr "ক্রিয়া প্রত্যাহার"
#: js/filelist.js:250 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে"
#: js/filelist.js:282 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "" msgstr "{files} ভাগাভাগি বাতিল কর"
#: js/filelist.js:284 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "" msgstr "{files} মুছে ফেলা হয়েছে"
#: js/files.js:33 #: js/files.js:33
msgid "" msgid ""
@ -116,7 +129,7 @@ msgstr ""
#: js/files.js:212 #: js/files.js:212
msgid "Upload Error" msgid "Upload Error"
msgstr "" msgstr "আপলোড করতে সমস্যা"
#: js/files.js:229 #: js/files.js:229
msgid "Close" msgid "Close"
@ -124,11 +137,11 @@ msgstr ""
#: js/files.js:248 js/files.js:362 js/files.js:392 #: js/files.js:248 js/files.js:362 js/files.js:392
msgid "Pending" msgid "Pending"
msgstr "" msgstr "মুলতুবি"
#: js/files.js:268 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "" msgstr "১ টি ফাইল আপলোড করা হচ্ছে"
#: js/files.js:271 js/files.js:325 js/files.js:340 #: js/files.js:271 js/files.js:325 js/files.js:340
msgid "{count} files uploading" msgid "{count} files uploading"
@ -136,7 +149,7 @@ msgstr ""
#: js/files.js:343 js/files.js:376 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "" msgstr "আপলোড বাতিল করা হয়েছে ।"
#: js/files.js:445 #: js/files.js:445
msgid "" msgid ""
@ -153,19 +166,19 @@ msgstr ""
#: js/files.js:707 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "" msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে"
#: js/files.js:780 templates/index.php:66 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "" msgstr "নাম"
#: js/files.js:781 templates/index.php:77 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "" msgstr "আকার"
#: js/files.js:782 templates/index.php:79 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "" msgstr "পরিবর্তিত"
#: js/files.js:801 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
@ -185,47 +198,47 @@ msgstr ""
#: templates/admin.php:5 #: templates/admin.php:5
msgid "File handling" msgid "File handling"
msgstr "" msgstr "ফাইল হ্যান্ডলিং"
#: templates/admin.php:7 #: templates/admin.php:7
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "" msgstr "আপলোডের সর্বোচ্চ আকার"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "" msgstr "সম্ভাব্য সর্বোচ্চঃ"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "" msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।"
#: templates/admin.php:14
msgid "Enable ZIP-download"
msgstr ""
#: templates/admin.php:17 #: templates/admin.php:17
msgid "Enable ZIP-download"
msgstr "জিপ ডাউনলোড সক্রিয় কর"
#: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "" msgstr " এর অর্থ হলো অসীম"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "" msgstr "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "" msgstr "সংরক্ষণ কর"
#: templates/index.php:7 #: templates/index.php:7
msgid "New" msgid "New"
msgstr "" msgstr "নতুন"
#: templates/index.php:10 #: templates/index.php:10
msgid "Text file" msgid "Text file"
msgstr "" msgstr "টেক্সট ফাইল"
#: templates/index.php:12 #: templates/index.php:12
msgid "Folder" msgid "Folder"
msgstr "" msgstr "ফোল্ডার"
#: templates/index.php:14 #: templates/index.php:14
msgid "From link" msgid "From link"
@ -233,23 +246,23 @@ msgstr ""
#: templates/index.php:35 #: templates/index.php:35
msgid "Upload" msgid "Upload"
msgstr "" msgstr "আপলোড"
#: templates/index.php:43 #: templates/index.php:43
msgid "Cancel upload" msgid "Cancel upload"
msgstr "" msgstr "আপলোড বাতিল কর"
#: templates/index.php:58 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "" msgstr "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !"
#: templates/index.php:72 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "" msgstr "ডাউনলোড"
#: templates/index.php:104 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "" msgstr "আপলোডের আকার অনেক বড়"
#: templates/index.php:106 #: templates/index.php:106
msgid "" msgid ""
@ -259,8 +272,8 @@ msgstr ""
#: templates/index.php:111 #: templates/index.php:111
msgid "Files are being scanned, please wait." msgid "Files are being scanned, please wait."
msgstr "" msgstr "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।"
#: templates/index.php:114 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "" msgstr "বর্তমান স্ক্যানিং"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-02 00:04+0100\n" "POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2012-08-12 22:34+0000\n" "PO-Revision-Date: 2012-08-12 22:34+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
@ -64,7 +64,7 @@ msgstr ""
#: templates/settings.php:9 #: templates/settings.php:9
msgid "Backend" msgid "Backend"
msgstr "" msgstr "প্রশাসক"
#: templates/settings.php:10 #: templates/settings.php:10
msgid "Configuration" msgid "Configuration"
@ -92,16 +92,16 @@ msgstr ""
#: templates/settings.php:87 #: templates/settings.php:87
msgid "Groups" msgid "Groups"
msgstr "" msgstr "গোষ্ঠী"
#: templates/settings.php:95 #: templates/settings.php:95
msgid "Users" msgid "Users"
msgstr "" msgstr "ব্যবহারকারিবৃন্দ"
#: templates/settings.php:108 templates/settings.php:109 #: templates/settings.php:108 templates/settings.php:109
#: templates/settings.php:144 templates/settings.php:145 #: templates/settings.php:144 templates/settings.php:145
msgid "Delete" msgid "Delete"
msgstr "" msgstr "মুছে ফেল"
#: templates/settings.php:124 #: templates/settings.php:124
msgid "Enable User External Storage" msgid "Enable User External Storage"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-02 00:04+0100\n" "POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2012-08-12 22:35+0000\n" "PO-Revision-Date: 2012-08-12 22:35+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
@ -19,11 +19,11 @@ msgstr ""
#: templates/authenticate.php:4 #: templates/authenticate.php:4
msgid "Password" msgid "Password"
msgstr "" msgstr "কূটশব্দ"
#: templates/authenticate.php:6 #: templates/authenticate.php:6
msgid "Submit" msgid "Submit"
msgstr "" msgstr "পাঠাও"
#: templates/public.php:17 #: templates/public.php:17
#, php-format #, php-format
@ -37,7 +37,7 @@ msgstr ""
#: templates/public.php:22 templates/public.php:38 #: templates/public.php:22 templates/public.php:38
msgid "Download" msgid "Download"
msgstr "" msgstr "ডাউনলোড"
#: templates/public.php:37 #: templates/public.php:37
msgid "No preview available for" msgid "No preview available for"
@ -45,4 +45,4 @@ msgstr ""
#: templates/public.php:43 #: templates/public.php:43
msgid "web services under your control" msgid "web services under your control"
msgstr "" msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-02 00:04+0100\n" "POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2012-08-12 22:37+0000\n" "PO-Revision-Date: 2012-08-12 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
@ -39,4 +39,4 @@ msgstr ""
#: templates/settings.php:4 #: templates/settings.php:4
msgid "Enable" msgid "Enable"
msgstr "" msgstr "সক্রিয়"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-02 00:04+0100\n" "POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2012-07-27 22:23+0000\n" "PO-Revision-Date: 2012-07-27 22:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
@ -19,27 +19,27 @@ msgstr ""
#: app.php:287 #: app.php:287
msgid "Help" msgid "Help"
msgstr "" msgstr "সহায়িকা"
#: app.php:294 #: app.php:294
msgid "Personal" msgid "Personal"
msgstr "" msgstr "ব্যক্তিগত"
#: app.php:299 #: app.php:299
msgid "Settings" msgid "Settings"
msgstr "" msgstr "নিয়ামকসমূহ"
#: app.php:304 #: app.php:304
msgid "Users" msgid "Users"
msgstr "" msgstr "ব্যবহারকারিবৃন্দ"
#: app.php:311 #: app.php:311
msgid "Apps" msgid "Apps"
msgstr "" msgstr "অ্যাপস"
#: app.php:313 #: app.php:313
msgid "Admin" msgid "Admin"
msgstr "" msgstr "প্রশাসক"
#: files.php:365 #: files.php:365
msgid "ZIP download is turned off." msgid "ZIP download is turned off."
@ -63,7 +63,7 @@ msgstr ""
#: json.php:39 json.php:64 json.php:77 json.php:89 #: json.php:39 json.php:64 json.php:77 json.php:89
msgid "Authentication error" msgid "Authentication error"
msgstr "" msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে"
#: json.php:51 #: json.php:51
msgid "Token expired. Please reload page." msgid "Token expired. Please reload page."
@ -71,7 +71,7 @@ msgstr ""
#: search/provider/file.php:17 search/provider/file.php:35 #: search/provider/file.php:17 search/provider/file.php:35
msgid "Files" msgid "Files"
msgstr "" msgstr "ফাইল"
#: search/provider/file.php:26 search/provider/file.php:33 #: search/provider/file.php:26 search/provider/file.php:33
msgid "Text" msgid "Text"
@ -83,11 +83,11 @@ msgstr ""
#: template.php:103 #: template.php:103
msgid "seconds ago" msgid "seconds ago"
msgstr "" msgstr "সেকেন্ড পূর্বে"
#: template.php:104 #: template.php:104
msgid "1 minute ago" msgid "1 minute ago"
msgstr "" msgstr "1 মিনিট পূর্বে"
#: template.php:105 #: template.php:105
#, php-format #, php-format
@ -96,7 +96,7 @@ msgstr ""
#: template.php:106 #: template.php:106
msgid "1 hour ago" msgid "1 hour ago"
msgstr "" msgstr "1 ঘন্টা পূর্বে"
#: template.php:107 #: template.php:107
#, php-format #, php-format
@ -105,11 +105,11 @@ msgstr ""
#: template.php:108 #: template.php:108
msgid "today" msgid "today"
msgstr "" msgstr "আজ"
#: template.php:109 #: template.php:109
msgid "yesterday" msgid "yesterday"
msgstr "" msgstr "গতকাল"
#: template.php:110 #: template.php:110
#, php-format #, php-format
@ -118,7 +118,7 @@ msgstr ""
#: template.php:111 #: template.php:111
msgid "last month" msgid "last month"
msgstr "" msgstr "গতমাস"
#: template.php:112 #: template.php:112
#, php-format #, php-format
@ -127,11 +127,11 @@ msgstr ""
#: template.php:113 #: template.php:113
msgid "last year" msgid "last year"
msgstr "" msgstr "গত বছর"
#: template.php:114 #: template.php:114
msgid "years ago" msgid "years ago"
msgstr "" msgstr "বছর পূর্বে"
#: updater.php:75 #: updater.php:75
#, php-format #, php-format

View File

@ -3,13 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Shubhra Paul <paul_shubhra@yahoo.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-02 00:04+0100\n" "POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2011-07-25 16:05+0000\n" "PO-Revision-Date: 2013-01-02 09:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -19,51 +20,51 @@ msgstr ""
#: ajax/apps/ocs.php:20 #: ajax/apps/ocs.php:20
msgid "Unable to load list from App Store" msgid "Unable to load list from App Store"
msgstr "" msgstr "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না"
#: ajax/creategroup.php:10 #: ajax/creategroup.php:10
msgid "Group already exists" msgid "Group already exists"
msgstr "" msgstr "গোষ্ঠীটি বিদ্যমান"
#: ajax/creategroup.php:19 #: ajax/creategroup.php:19
msgid "Unable to add group" msgid "Unable to add group"
msgstr "" msgstr "গোষ্ঠী যোগ করতে পারা গেল না"
#: ajax/enableapp.php:12 #: ajax/enableapp.php:12
msgid "Could not enable app. " msgid "Could not enable app. "
msgstr "" msgstr "অ্যাপ সক্রিয় করা সম্ভব হলো না"
#: ajax/lostpassword.php:12 #: ajax/lostpassword.php:12
msgid "Email saved" msgid "Email saved"
msgstr "" msgstr "ই-মেইল সংরক্ষণ করা হয়েছে"
#: ajax/lostpassword.php:14 #: ajax/lostpassword.php:14
msgid "Invalid email" msgid "Invalid email"
msgstr "" msgstr "ই-মেইলটি সঠিক নয়"
#: ajax/openid.php:13 #: ajax/openid.php:13
msgid "OpenID Changed" msgid "OpenID Changed"
msgstr "" msgstr "OpenID পরিবর্তন করা হয়েছে"
#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 #: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20
msgid "Invalid request" msgid "Invalid request"
msgstr "" msgstr "অননুমোদিত অনুরোধ"
#: ajax/removegroup.php:13 #: ajax/removegroup.php:13
msgid "Unable to delete group" msgid "Unable to delete group"
msgstr "" msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না"
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
msgid "Authentication error" msgid "Authentication error"
msgstr "" msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে"
#: ajax/removeuser.php:24 #: ajax/removeuser.php:24
msgid "Unable to delete user" msgid "Unable to delete user"
msgstr "" msgstr "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না"
#: ajax/setlanguage.php:15 #: ajax/setlanguage.php:15
msgid "Language changed" msgid "Language changed"
msgstr "" msgstr "ভাষা পরিবর্তন করা হয়েছে"
#: ajax/togglegroups.php:12 #: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group" msgid "Admins can't remove themself from the admin group"
@ -81,39 +82,39 @@ msgstr ""
#: js/apps.js:28 js/apps.js:67 #: js/apps.js:28 js/apps.js:67
msgid "Disable" msgid "Disable"
msgstr "" msgstr "নিষ্ক্রিয়"
#: js/apps.js:28 js/apps.js:55 #: js/apps.js:28 js/apps.js:55
msgid "Enable" msgid "Enable"
msgstr "" msgstr "সক্রিয়"
#: js/personal.js:69 #: js/personal.js:69
msgid "Saving..." msgid "Saving..."
msgstr "" msgstr "সংরক্ষণ করা হচ্ছে...."
#: personal.php:42 personal.php:43 #: personal.php:42 personal.php:43
msgid "__language_name__" msgid "__language_name__"
msgstr "" msgstr "_ভাষার_নাম_"
#: templates/apps.php:10 #: templates/apps.php:10
msgid "Add your App" msgid "Add your App"
msgstr "" msgstr "আপনার অ্যাপটি যোগ করুন"
#: templates/apps.php:11 #: templates/apps.php:11
msgid "More Apps" msgid "More Apps"
msgstr "" msgstr "আরও অ্যাপ"
#: templates/apps.php:27 #: templates/apps.php:27
msgid "Select an App" msgid "Select an App"
msgstr "" msgstr "অ্যাপ নির্বাচন করুন"
#: templates/apps.php:31 #: templates/apps.php:31
msgid "See application page at apps.owncloud.com" msgid "See application page at apps.owncloud.com"
msgstr "" msgstr "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com"
#: templates/apps.php:32 #: templates/apps.php:32
msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
msgstr "" msgstr "<span class=\"licence\"></span>-লাইসেন্স করিয়েছেন <span class=\"author\"></span>"
#: templates/help.php:3 #: templates/help.php:3
msgid "User Documentation" msgid "User Documentation"
@ -129,15 +130,15 @@ msgstr ""
#: templates/help.php:7 #: templates/help.php:7
msgid "Forum" msgid "Forum"
msgstr "" msgstr "ফোরাম"
#: templates/help.php:9 #: templates/help.php:9
msgid "Bugtracker" msgid "Bugtracker"
msgstr "" msgstr "বাগট্র্যাকার"
#: templates/help.php:11 #: templates/help.php:11
msgid "Commercial Support" msgid "Commercial Support"
msgstr "" msgstr "বাণিজ্যিক সাপোর্ট"
#: templates/personal.php:8 #: templates/personal.php:8
#, php-format #, php-format
@ -146,11 +147,11 @@ msgstr ""
#: templates/personal.php:12 #: templates/personal.php:12
msgid "Clients" msgid "Clients"
msgstr "" msgstr "ক্লায়েন্ট"
#: templates/personal.php:13 #: templates/personal.php:13
msgid "Download Desktop Clients" msgid "Download Desktop Clients"
msgstr "" msgstr "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন"
#: templates/personal.php:14 #: templates/personal.php:14
msgid "Download Android Client" msgid "Download Android Client"
@ -162,39 +163,39 @@ msgstr ""
#: templates/personal.php:21 templates/users.php:23 templates/users.php:82 #: templates/personal.php:21 templates/users.php:23 templates/users.php:82
msgid "Password" msgid "Password"
msgstr "" msgstr "কূটশব্দ"
#: templates/personal.php:22 #: templates/personal.php:22
msgid "Your password was changed" msgid "Your password was changed"
msgstr "" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে"
#: templates/personal.php:23 #: templates/personal.php:23
msgid "Unable to change your password" msgid "Unable to change your password"
msgstr "" msgstr "কূটশব্দ পরিবর্তন করা সম্ভব হলো না"
#: templates/personal.php:24 #: templates/personal.php:24
msgid "Current password" msgid "Current password"
msgstr "" msgstr "বর্তমান কূটশব্দ"
#: templates/personal.php:25 #: templates/personal.php:25
msgid "New password" msgid "New password"
msgstr "" msgstr "নতুন কূটশব্দ"
#: templates/personal.php:26 #: templates/personal.php:26
msgid "show" msgid "show"
msgstr "" msgstr "প্রদর্শন"
#: templates/personal.php:27 #: templates/personal.php:27
msgid "Change password" msgid "Change password"
msgstr "" msgstr "কূটশব্দ পরিবর্তন কর"
#: templates/personal.php:33 #: templates/personal.php:33
msgid "Email" msgid "Email"
msgstr "" msgstr "ই-মেইল"
#: templates/personal.php:34 #: templates/personal.php:34
msgid "Your email address" msgid "Your email address"
msgstr "" msgstr "আপনার ই-মেইল ঠিকানা"
#: templates/personal.php:35 #: templates/personal.php:35
msgid "Fill in an email address to enable password recovery" msgid "Fill in an email address to enable password recovery"
@ -202,11 +203,11 @@ msgstr ""
#: templates/personal.php:41 templates/personal.php:42 #: templates/personal.php:41 templates/personal.php:42
msgid "Language" msgid "Language"
msgstr "" msgstr "ভাষা"
#: templates/personal.php:47 #: templates/personal.php:47
msgid "Help translate" msgid "Help translate"
msgstr "" msgstr "অনুবাদ করতে সাহায্য করুন"
#: templates/personal.php:52 #: templates/personal.php:52
msgid "WebDAV" msgid "WebDAV"
@ -228,19 +229,19 @@ msgid ""
"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
"target=\"_blank\"><abbr title=\"Affero General Public " "target=\"_blank\"><abbr title=\"Affero General Public "
"License\">AGPL</abbr></a>." "License\">AGPL</abbr></a>."
msgstr "" 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 #: templates/users.php:21 templates/users.php:81
msgid "Name" msgid "Name"
msgstr "" msgstr "নাম"
#: templates/users.php:26 templates/users.php:83 templates/users.php:103 #: templates/users.php:26 templates/users.php:83 templates/users.php:103
msgid "Groups" msgid "Groups"
msgstr "" msgstr "গোষ্ঠী"
#: templates/users.php:32 #: templates/users.php:32
msgid "Create" msgid "Create"
msgstr "" msgstr "তৈরি কর"
#: templates/users.php:35 #: templates/users.php:35
msgid "Default Storage" msgid "Default Storage"
@ -252,11 +253,11 @@ msgstr ""
#: templates/users.php:60 templates/users.php:153 #: templates/users.php:60 templates/users.php:153
msgid "Other" msgid "Other"
msgstr "" msgstr "অন্যান্য"
#: templates/users.php:85 templates/users.php:117 #: templates/users.php:85 templates/users.php:117
msgid "Group Admin" msgid "Group Admin"
msgstr "" msgstr "গোষ্ঠী প্রশাসন"
#: templates/users.php:87 #: templates/users.php:87
msgid "Storage" msgid "Storage"
@ -268,4 +269,4 @@ msgstr ""
#: templates/users.php:161 #: templates/users.php:161
msgid "Delete" msgid "Delete"
msgstr "" msgstr "মুছে ফেল"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-02 00:04+0100\n" "POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2012-08-12 22:45+0000\n" "PO-Revision-Date: 2012-08-12 22:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
@ -60,7 +60,7 @@ msgstr ""
#: templates/settings.php:18 #: templates/settings.php:18
msgid "Password" msgid "Password"
msgstr "" msgstr "কূটশব্দ"
#: templates/settings.php:18 #: templates/settings.php:18
msgid "For anonymous access, leave DN and Password empty." msgid "For anonymous access, leave DN and Password empty."
@ -180,4 +180,4 @@ msgstr ""
#: templates/settings.php:39 #: templates/settings.php:39
msgid "Help" msgid "Help"
msgstr "" msgstr "সহায়িকা"

View File

@ -8,13 +8,14 @@
# <josep_tomas@hotmail.com>, 2012. # <josep_tomas@hotmail.com>, 2012.
# Josep Tomàs <jtomas.binsoft@gmail.com>, 2012. # Josep Tomàs <jtomas.binsoft@gmail.com>, 2012.
# <rcalvoi@yahoo.com>, 2011-2012. # <rcalvoi@yahoo.com>, 2011-2012.
# <sacoo2@hotmail.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-02 00:02+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-01 16:57+0000\n" "PO-Revision-Date: 2013-01-04 14:32+0000\n"
"Last-Translator: Josep Tomàs <jtomas.binsoft@gmail.com>\n" "Last-Translator: aseques <sacoo2@hotmail.com>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,46 +23,58 @@ msgstr ""
"Language: ca\n" "Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "El fitxer s'ha pujat correctament" msgstr "El fitxer s'ha pujat correctament"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Larxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" msgstr "Larxiu 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 "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML" 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" msgid "The uploaded file was only partially uploaded"
msgstr "El fitxer només s'ha pujat parcialment" msgstr "El fitxer només s'ha pujat parcialment"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "El fitxer no s'ha pujat" msgstr "El fitxer no s'ha pujat"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "S'ha perdut un fitxer temporal" msgstr "S'ha perdut un fitxer temporal"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Ha fallat en escriure al disc" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Fitxers" 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" msgid "Unshare"
msgstr "Deixa de compartir" 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" msgid "Delete"
msgstr "Suprimeix" msgstr "Suprimeix"
@ -69,39 +82,39 @@ msgstr "Suprimeix"
msgid "Rename" msgid "Rename"
msgstr "Reanomena" msgstr "Reanomena"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} ja existeix" msgstr "{new_name} ja existeix"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "substitueix" msgstr "substitueix"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "sugereix un nom" msgstr "sugereix un nom"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "cancel·la" msgstr "cancel·la"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "s'ha substituït {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" msgid "undo"
msgstr "desfés" msgstr "desfés"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "s'ha substituït {old_name} per {new_name}" msgstr "s'ha substituït {old_name} per {new_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "no compartits {files}" msgstr "no compartits {files}"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "eliminats {files}" msgstr "eliminats {files}"
@ -111,80 +124,80 @@ msgid ""
"allowed." "allowed."
msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." 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." msgid "generating ZIP-file, it may take some time."
msgstr "s'estan generant fitxers ZIP, pot trigar una estona." 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" 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" 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" msgid "Upload Error"
msgstr "Error en la pujada" msgstr "Error en la pujada"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Tanca" 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" msgid "Pending"
msgstr "Pendents" msgstr "Pendents"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "1 fitxer pujant" 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" msgid "{count} files uploading"
msgstr "{count} fitxers en pujada" msgstr "{count} fitxers en pujada"
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "La pujada s'ha cancel·lat." msgstr "La pujada s'ha cancel·lat."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." 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" 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" 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" msgid "{count} files scanned"
msgstr "{count} fitxers escannejats" msgstr "{count} fitxers escannejats"
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "error durant l'escaneig" msgstr "error durant l'escaneig"
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Mida" msgstr "Mida"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Modificat" msgstr "Modificat"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 carpeta" msgstr "1 carpeta"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} carpetes" msgstr "{count} carpetes"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 fitxer" msgstr "1 fitxer"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} fitxers" msgstr "{count} fitxers"
@ -196,27 +209,27 @@ msgstr "Gestió de fitxers"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Mida màxima de pujada" msgstr "Mida màxima de pujada"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "màxim possible:" msgstr "màxim possible:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Necessari per fitxers múltiples i baixada de carpetes" msgstr "Necessari per fitxers múltiples i baixada de carpetes"
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Activa la baixada ZIP" msgstr "Activa la baixada ZIP"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 és sense límit" msgstr "0 és sense límit"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Mida màxima d'entrada per fitxers ZIP" msgstr "Mida màxima d'entrada per fitxers ZIP"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Desa" msgstr "Desa"
@ -244,28 +257,28 @@ msgstr "Puja"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Cancel·la la pujada" msgstr "Cancel·la la pujada"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Res per aquí. Pugeu alguna cosa!" msgstr "Res per aquí. Pugeu alguna cosa!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Baixa" msgstr "Baixa"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "La pujada és massa gran" msgstr "La pujada és massa gran"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" 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." msgid "Files are being scanned, please wait."
msgstr "S'estan escanejant els fitxers, espereu" msgstr "S'estan escanejant els fitxers, espereu"
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Actualment escanejant" msgstr "Actualment escanejant"

View File

@ -10,9 +10,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-02 00:02+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-01 05:15+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\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" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -20,46 +20,58 @@ msgstr ""
"Language: cs_CZ\n" "Language: cs_CZ\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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" msgid "There is no error, the file uploaded with success"
msgstr "Soubor byl odeslán úspěšně" msgstr "Soubor byl odeslán úspěšně"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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:" msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:"
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Soubor byl odeslán pouze částečně" msgstr "Soubor byl odeslán pouze částečně"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Žádný soubor nebyl odeslán" msgstr "Žádný soubor nebyl odeslán"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Chybí adresář pro dočasné soubory" msgstr "Chybí adresář pro dočasné soubory"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Zápis na disk selhal" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Soubory" 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" msgid "Unshare"
msgstr "Zrušit sdílení" 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" msgid "Delete"
msgstr "Smazat" msgstr "Smazat"
@ -67,39 +79,39 @@ msgstr "Smazat"
msgid "Rename" msgid "Rename"
msgstr "Přejmenovat" msgstr "Přejmenovat"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} již existuje" msgstr "{new_name} již existuje"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "nahradit" msgstr "nahradit"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "navrhnout název" msgstr "navrhnout název"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "zrušit" msgstr "zrušit"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "nahrazeno {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" msgid "undo"
msgstr "zpět" msgstr "zpět"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "nahrazeno {new_name} s {old_name}" msgstr "nahrazeno {new_name} s {old_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "sdílení zrušeno pro {files}" msgstr "sdílení zrušeno pro {files}"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "smazáno {files}" msgstr "smazáno {files}"
@ -109,80 +121,80 @@ msgid ""
"allowed." "allowed."
msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." 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." msgid "generating ZIP-file, it may take some time."
msgstr "generuji ZIP soubor, může to nějakou dobu trvat." 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" 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ů" 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" msgid "Upload Error"
msgstr "Chyba odesílání" msgstr "Chyba odesílání"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Zavřít" 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" msgid "Pending"
msgstr "Čekající" msgstr "Čekající"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "odesílá se 1 soubor" 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" msgid "{count} files uploading"
msgstr "odesílám {count} souborů" 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." msgid "Upload cancelled."
msgstr "Odesílání zrušeno." msgstr "Odesílání zrušeno."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." 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" 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." 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" msgid "{count} files scanned"
msgstr "prozkoumáno {count} souborů" msgstr "prozkoumáno {count} souborů"
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "chyba při prohledávání" 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" msgid "Name"
msgstr "Název" msgstr "Název"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Velikost" msgstr "Velikost"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Změněno" msgstr "Změněno"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 složka" msgstr "1 složka"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} složky" msgstr "{count} složky"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 soubor" msgstr "1 soubor"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} soubory" msgstr "{count} soubory"
@ -194,27 +206,27 @@ msgstr "Zacházení se soubory"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Maximální velikost pro odesílání" msgstr "Maximální velikost pro odesílání"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "největší možná: " msgstr "největší možná: "
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Potřebné pro více-souborové stahování a stahování složek." 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" msgid "Enable ZIP-download"
msgstr "Povolit ZIP-stahování" msgstr "Povolit ZIP-stahování"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 znamená bez omezení" msgstr "0 znamená bez omezení"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Maximální velikost vstupu pro ZIP soubory" msgstr "Maximální velikost vstupu pro ZIP soubory"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Uložit" msgstr "Uložit"
@ -242,28 +254,28 @@ msgstr "Odeslat"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Zrušit odesílání" msgstr "Zrušit odesílání"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Žádný obsah. Nahrajte něco." msgstr "Žádný obsah. Nahrajte něco."
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Stáhnout" msgstr "Stáhnout"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Odeslaný soubor je příliš velký" msgstr "Odeslaný soubor je příliš velký"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." 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." msgid "Files are being scanned, please wait."
msgstr "Soubory se prohledávají, prosím čekejte." msgstr "Soubory se prohledávají, prosím čekejte."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Aktuální prohledávání" msgstr "Aktuální prohledávání"

View File

@ -15,9 +15,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-24 00:10+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-23 21:45+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: cronner <cronner@gmail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -25,37 +25,49 @@ msgstr ""
"Language: da\n" "Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Der er ingen fejl, filen blev uploadet med success" msgstr "Der er ingen fejl, filen blev uploadet med success"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini"
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Den uploadede file blev kun delvist uploadet" msgstr "Den uploadede file blev kun delvist uploadet"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Ingen fil blev uploadet" msgstr "Ingen fil blev uploadet"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Mangler en midlertidig mappe" msgstr "Mangler en midlertidig mappe"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Fejl ved skrivning til 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Filer" msgstr "Filer"
@ -199,27 +211,27 @@ msgstr "Filhåndtering"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Maksimal upload-størrelse" msgstr "Maksimal upload-størrelse"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "max. mulige: " msgstr "max. mulige: "
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen." 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" msgid "Enable ZIP-download"
msgstr "Muliggør ZIP-download" msgstr "Muliggør ZIP-download"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 er ubegrænset" msgstr "0 er ubegrænset"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Maksimal størrelse på ZIP filer" msgstr "Maksimal størrelse på ZIP filer"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Gem" msgstr "Gem"

View File

@ -10,16 +10,16 @@
# Ole Holm Frandsen <froksen@gmail.com>, 2012. # Ole Holm Frandsen <froksen@gmail.com>, 2012.
# Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. # Pascal d'Hermilly <pascal@dhermilly.dk>, 2011.
# <simon@rosmi.dk>, 2012. # <simon@rosmi.dk>, 2012.
# <sr@ybnet.dk>, 2012. # <sr@ybnet.dk>, 2012-2013.
# Thomas Tanghus <>, 2012. # Thomas Tanghus <>, 2012.
# Thomas Tanghus <thomas@tanghus.net>, 2012. # Thomas Tanghus <thomas@tanghus.net>, 2012.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-30 00:04+0100\n" "POT-Creation-Date: 2013-01-03 00:04+0100\n"
"PO-Revision-Date: 2012-12-29 23:05+0000\n" "PO-Revision-Date: 2013-01-02 21:06+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: ressel <sr@ybnet.dk>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -254,11 +254,11 @@ msgstr "Ny"
#: templates/users.php:35 #: templates/users.php:35
msgid "Default Storage" msgid "Default Storage"
msgstr "" msgstr "Standard opbevaring"
#: templates/users.php:42 templates/users.php:138 #: templates/users.php:42 templates/users.php:138
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr "Ubegrænset"
#: templates/users.php:60 templates/users.php:153 #: templates/users.php:60 templates/users.php:153
msgid "Other" msgid "Other"
@ -270,11 +270,11 @@ msgstr "Gruppe Administrator"
#: templates/users.php:87 #: templates/users.php:87
msgid "Storage" msgid "Storage"
msgstr "" msgstr "Opbevaring"
#: templates/users.php:133 #: templates/users.php:133
msgid "Default" msgid "Default"
msgstr "" msgstr "Standard"
#: templates/users.php:161 #: templates/users.php:161
msgid "Delete" msgid "Delete"

View File

@ -20,13 +20,14 @@
# <thomas.mueller@tmit.eu>, 2012. # <thomas.mueller@tmit.eu>, 2012.
# Thomas Müller <>, 2012. # Thomas Müller <>, 2012.
# <transifex.3.mensaje@spamgourmet.com>, 2012. # <transifex.3.mensaje@spamgourmet.com>, 2012.
# <transifex.com@mail.simonzoellner.de>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-12 00:12+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-11 09:27+0000\n" "PO-Revision-Date: 2013-01-04 21:11+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Last-Translator: Linutux <transifex.com@mail.simonzoellner.de>\n"
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -34,37 +35,49 @@ msgstr ""
"Language: de\n" "Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Datei fehlerfrei hochgeladen." msgstr "Datei fehlerfrei hochgeladen."
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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" msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Die Datei wurde nur teilweise hochgeladen." msgstr "Die Datei wurde nur teilweise hochgeladen."
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Es wurde keine Datei hochgeladen." msgstr "Es wurde keine Datei hochgeladen."
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Temporärer Ordner fehlt." msgstr "Temporärer Ordner fehlt."
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Fehler beim Schreiben auf die Festplatte" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Dateien" msgstr "Dateien"
@ -127,76 +140,76 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." 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" 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." 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" msgid "Upload Error"
msgstr "Fehler beim Upload" msgstr "Fehler beim Upload"
#: js/files.js:226 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Schließen" 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" msgid "Pending"
msgstr "Ausstehend" msgstr "Ausstehend"
#: js/files.js:265 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "Eine Datei wird hoch geladen" 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" msgid "{count} files uploading"
msgstr "{count} Dateien werden hochgeladen" msgstr "{count} Dateien werden hochgeladen"
#: js/files.js:340 js/files.js:373 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Upload abgebrochen." msgstr "Upload abgebrochen."
#: js/files.js:442 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
#: js/files.js:693 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt" msgstr "{count} Dateien wurden gescannt"
#: js/files.js:701 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "Fehler beim Scannen" msgstr "Fehler beim Scannen"
#: js/files.js:774 templates/index.php:66 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: js/files.js:775 templates/index.php:77 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Größe" msgstr "Größe"
#: js/files.js:776 templates/index.php:79 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Bearbeitet" msgstr "Bearbeitet"
#: js/files.js:803 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 Ordner" msgstr "1 Ordner"
#: js/files.js:805 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} Ordner" msgstr "{count} Ordner"
#: js/files.js:813 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 Datei" msgstr "1 Datei"
#: js/files.js:815 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} Dateien" msgstr "{count} Dateien"
@ -208,27 +221,27 @@ msgstr "Dateibehandlung"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Maximale Upload-Größe" msgstr "Maximale Upload-Größe"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "maximal möglich:" msgstr "maximal möglich:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:"
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "ZIP-Download aktivieren" msgstr "ZIP-Download aktivieren"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 bedeutet unbegrenzt" msgstr "0 bedeutet unbegrenzt"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Maximale Größe für ZIP-Dateien" msgstr "Maximale Größe für ZIP-Dateien"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Speichern" msgstr "Speichern"

View File

@ -4,7 +4,7 @@
# #
# Translators: # Translators:
# <admin@s-goecker.de>, 2012. # <admin@s-goecker.de>, 2012.
# <a.tangemann@web.de>, 2012. # <a.tangemann@web.de>, 2012-2013.
# <blobbyjj@ymail.com>, 2012. # <blobbyjj@ymail.com>, 2012.
# I Robot <owncloud-bot@tmit.eu>, 2012. # I Robot <owncloud-bot@tmit.eu>, 2012.
# I Robot <thomas.mueller@tmit.eu>, 2012. # I Robot <thomas.mueller@tmit.eu>, 2012.
@ -25,9 +25,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-12 00:12+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-11 09:27+0000\n" "PO-Revision-Date: 2013-01-04 21:31+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\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" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -35,37 +35,49 @@ msgstr ""
"Language: de_DE\n" "Language: de_DE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen."
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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" msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Die Datei wurde nur teilweise hochgeladen." msgstr "Die Datei wurde nur teilweise hochgeladen."
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Es wurde keine Datei hochgeladen." msgstr "Es wurde keine Datei hochgeladen."
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Der temporäre Ordner fehlt." msgstr "Der temporäre Ordner fehlt."
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Fehler beim Schreiben auf die Festplatte" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Dateien" msgstr "Dateien"
@ -128,76 +140,76 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." 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" 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." 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" msgid "Upload Error"
msgstr "Fehler beim Upload" msgstr "Fehler beim Upload"
#: js/files.js:226 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Schließen" 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" msgid "Pending"
msgstr "Ausstehend" msgstr "Ausstehend"
#: js/files.js:265 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "1 Datei wird hochgeladen" 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" msgid "{count} files uploading"
msgstr "{count} Dateien wurden hochgeladen" msgstr "{count} Dateien wurden hochgeladen"
#: js/files.js:340 js/files.js:373 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Upload abgebrochen." msgstr "Upload abgebrochen."
#: js/files.js:442 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
#: js/files.js:693 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "{count} Dateien wurden gescannt" msgstr "{count} Dateien wurden gescannt"
#: js/files.js:701 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "Fehler beim Scannen" msgstr "Fehler beim Scannen"
#: js/files.js:774 templates/index.php:66 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: js/files.js:775 templates/index.php:77 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Größe" msgstr "Größe"
#: js/files.js:776 templates/index.php:79 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Bearbeitet" msgstr "Bearbeitet"
#: js/files.js:803 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 Ordner" msgstr "1 Ordner"
#: js/files.js:805 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} Ordner" msgstr "{count} Ordner"
#: js/files.js:813 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 Datei" msgstr "1 Datei"
#: js/files.js:815 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} Dateien" msgstr "{count} Dateien"
@ -209,27 +221,27 @@ msgstr "Dateibehandlung"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Maximale Upload-Größe" msgstr "Maximale Upload-Größe"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "maximal möglich:" msgstr "maximal möglich:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:"
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "ZIP-Download aktivieren" msgstr "ZIP-Download aktivieren"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 bedeutet unbegrenzt" msgstr "0 bedeutet unbegrenzt"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Maximale Größe für ZIP-Dateien" msgstr "Maximale Größe für ZIP-Dateien"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Speichern" msgstr "Speichern"

View File

@ -24,9 +24,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-31 00:04+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-12-30 00:21+0000\n" "PO-Revision-Date: 2013-01-03 16:09+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"

View File

@ -10,9 +10,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-22 00:24+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-12-21 23:03+0000\n" "PO-Revision-Date: 2013-01-03 16:07+0000\n"
"Last-Translator: multimill <multimill@gmail.com>\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" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"

View File

@ -14,9 +14,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-28 00:20+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-27 13:50+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: Konstantinos Tzanidis <tzanidis@gmail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -24,37 +24,49 @@ msgstr ""
"Language: el\n" "Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:" msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:"
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα" msgstr "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα"
#: ajax/upload.php:25 #: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded" msgid "The uploaded file was only partially uploaded"
msgstr "Το αρχείο εστάλει μόνο εν μέρει" msgstr "Το αρχείο εστάλει μόνο εν μέρει"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Κανένα αρχείο δεν στάλθηκε" msgstr "Κανένα αρχείο δεν στάλθηκε"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Λείπει ο προσωρινός φάκελος" msgstr "Λείπει ο προσωρινός φάκελος"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Αποτυχία εγγραφής στο δίσκο" msgstr "Αποτυχία εγγραφής στο δίσκο"
#: ajax/upload.php:45
msgid "Not enough space available"
msgstr ""
#: ajax/upload.php:69
msgid "Invalid directory."
msgstr ""
#: appinfo/app.php:10 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Αρχεία" msgstr "Αρχεία"
@ -198,27 +210,27 @@ msgstr "Διαχείριση αρχείων"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Μέγιστο μέγεθος αποστολής" msgstr "Μέγιστο μέγεθος αποστολής"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "μέγιστο δυνατό:" msgstr "μέγιστο δυνατό:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων" msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων"
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Ενεργοποίηση κατεβάσματος ZIP" msgstr "Ενεργοποίηση κατεβάσματος ZIP"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 για απεριόριστο" msgstr "0 για απεριόριστο"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Μέγιστο μέγεθος για αρχεία ZIP" msgstr "Μέγιστο μέγεθος για αρχεία ZIP"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Αποθήκευση" msgstr "Αποθήκευση"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-03 00:04+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-02 22:06+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: Mariano <mstreet@kde.org.ar>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -19,46 +19,58 @@ msgstr ""
"Language: eo\n" "Language: eo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: "
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" 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" msgid "The uploaded file was only partially uploaded"
msgstr "La alŝutita dosiero nur parte alŝutiĝis" msgstr "La alŝutita dosiero nur parte alŝutiĝis"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Neniu dosiero estas alŝutita" msgstr "Neniu dosiero estas alŝutita"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Mankas tempa dosierujo" msgstr "Mankas tempa dosierujo"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Malsukcesis skribo al disko" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Dosieroj" 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" msgid "Unshare"
msgstr "Malkunhavigi" 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" msgid "Delete"
msgstr "Forigi" msgstr "Forigi"
@ -66,39 +78,39 @@ msgstr "Forigi"
msgid "Rename" msgid "Rename"
msgstr "Alinomigi" msgstr "Alinomigi"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} jam ekzistas" msgstr "{new_name} jam ekzistas"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "anstataŭigi" msgstr "anstataŭigi"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "sugesti nomon" msgstr "sugesti nomon"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "nuligi" msgstr "nuligi"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "anstataŭiĝis {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" msgid "undo"
msgstr "malfari" msgstr "malfari"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "anstataŭiĝis {new_name} per {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "malkunhaviĝis {files}" msgstr "malkunhaviĝis {files}"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "foriĝis {files}" msgstr "foriĝis {files}"
@ -108,80 +120,80 @@ msgid ""
"allowed." "allowed."
msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas."
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" 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" 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" 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" msgid "Upload Error"
msgstr "Alŝuta eraro" msgstr "Alŝuta eraro"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Fermi" 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" msgid "Pending"
msgstr "Traktotaj" msgstr "Traktotaj"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "1 dosiero estas alŝutata" 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" msgid "{count} files uploading"
msgstr "{count} dosieroj alŝutatas" msgstr "{count} dosieroj alŝutatas"
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "La alŝuto nuliĝis." msgstr "La alŝuto nuliĝis."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud" msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud"
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "{count} dosieroj skaniĝis" msgstr "{count} dosieroj skaniĝis"
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "eraro dum skano" msgstr "eraro dum skano"
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Nomo" msgstr "Nomo"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Grando" msgstr "Grando"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Modifita" msgstr "Modifita"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 dosierujo" msgstr "1 dosierujo"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} dosierujoj" msgstr "{count} dosierujoj"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 dosiero" msgstr "1 dosiero"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} dosierujoj" msgstr "{count} dosierujoj"
@ -193,27 +205,27 @@ msgstr "Dosieradministro"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Maksimuma alŝutogrando" msgstr "Maksimuma alŝutogrando"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "maks. ebla: " msgstr "maks. ebla: "
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Necesa por elŝuto de pluraj dosieroj kaj dosierujoj." msgstr "Necesa por elŝuto de pluraj dosieroj kaj dosierujoj."
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Kapabligi ZIP-elŝuton" msgstr "Kapabligi ZIP-elŝuton"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 signifas senlime" msgstr "0 signifas senlime"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Maksimuma enirgrando por ZIP-dosieroj" msgstr "Maksimuma enirgrando por ZIP-dosieroj"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Konservi" msgstr "Konservi"
@ -241,28 +253,28 @@ msgstr "Alŝuti"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Nuligi alŝuton" msgstr "Nuligi alŝuton"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Nenio estas ĉi tie. Alŝutu ion!" msgstr "Nenio estas ĉi tie. Alŝutu ion!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Elŝuti" msgstr "Elŝuti"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Elŝuto tro larĝa" msgstr "Elŝuto tro larĝa"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." 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." msgid "Files are being scanned, please wait."
msgstr "Dosieroj estas skanataj, bonvolu atendi." msgstr "Dosieroj estas skanataj, bonvolu atendi."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Nuna skano" msgstr "Nuna skano"

View File

@ -4,6 +4,7 @@
# #
# Translators: # Translators:
# Agustin Ferrario <>, 2012. # Agustin Ferrario <>, 2012.
# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013.
# <devianpctek@gmail.com>, 2012. # <devianpctek@gmail.com>, 2012.
# Javier Llorente <javier@opensuse.org>, 2012. # Javier Llorente <javier@opensuse.org>, 2012.
# <juanma@kde.org.ar>, 2012. # <juanma@kde.org.ar>, 2012.
@ -14,9 +15,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-02 00:02+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-01 20:49+0000\n" "PO-Revision-Date: 2013-01-04 13:10+0000\n"
"Last-Translator: xsergiolpx <sergioballesterossolanas@gmail.com>\n" "Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -24,46 +25,58 @@ msgstr ""
"Language: es\n" "Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" 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" msgstr "No se ha producido ningún error, el archivo se ha subido con éxito"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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" 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 "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" 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" msgid "The uploaded file was only partially uploaded"
msgstr "El archivo que intentas subir solo se subió parcialmente" msgstr "El archivo que intentas subir solo se subió parcialmente"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "No se ha subido ningún archivo" msgstr "No se ha subido ningún archivo"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Falta un directorio temporal" msgstr "Falta un directorio temporal"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "La escritura en disco ha fallado" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Archivos" 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" msgid "Unshare"
msgstr "Dejar de compartir" 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" msgid "Delete"
msgstr "Eliminar" msgstr "Eliminar"
@ -71,39 +84,39 @@ msgstr "Eliminar"
msgid "Rename" msgid "Rename"
msgstr "Renombrar" msgstr "Renombrar"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} ya existe" msgstr "{new_name} ya existe"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "reemplazar" msgstr "reemplazar"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "sugerir nombre" msgstr "sugerir nombre"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "cancelar" msgstr "cancelar"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "reemplazado {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" msgid "undo"
msgstr "deshacer" msgstr "deshacer"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "reemplazado {new_name} con {old_name}" msgstr "reemplazado {new_name} con {old_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "{files} descompartidos" msgstr "{files} descompartidos"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "{files} eliminados" msgstr "{files} eliminados"
@ -113,80 +126,80 @@ msgid ""
"allowed." "allowed."
msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " 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." msgid "generating ZIP-file, it may take some time."
msgstr "generando un fichero ZIP, puede llevar un tiempo." 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" 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" 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" msgid "Upload Error"
msgstr "Error al subir el archivo" msgstr "Error al subir el archivo"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "cerrrar" 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" msgid "Pending"
msgstr "Pendiente" msgstr "Pendiente"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "subiendo 1 archivo" 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" msgid "{count} files uploading"
msgstr "Subiendo {count} archivos" msgstr "Subiendo {count} archivos"
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Subida cancelada." msgstr "Subida cancelada."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." 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" 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" 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" msgid "{count} files scanned"
msgstr "{count} archivos escaneados" msgstr "{count} archivos escaneados"
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "error escaneando" msgstr "error escaneando"
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Nombre" msgstr "Nombre"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Tamaño" msgstr "Tamaño"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Modificado" msgstr "Modificado"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 carpeta" msgstr "1 carpeta"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} carpetas" msgstr "{count} carpetas"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 archivo" msgstr "1 archivo"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} archivos" msgstr "{count} archivos"
@ -198,27 +211,27 @@ msgstr "Tratamiento de archivos"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Tamaño máximo de subida" msgstr "Tamaño máximo de subida"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "máx. posible:" msgstr "máx. posible:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Se necesita para descargas multi-archivo y de carpetas" msgstr "Se necesita para descargas multi-archivo y de carpetas"
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Habilitar descarga en ZIP" msgstr "Habilitar descarga en ZIP"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 es ilimitado" msgstr "0 es ilimitado"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Tamaño máximo para archivos ZIP de entrada" msgstr "Tamaño máximo para archivos ZIP de entrada"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"
@ -246,28 +259,28 @@ msgstr "Subir"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Cancelar subida" msgstr "Cancelar subida"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Aquí no hay nada. ¡Sube algo!" msgstr "Aquí no hay nada. ¡Sube algo!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Descargar" msgstr "Descargar"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "El archivo es demasiado grande" msgstr "El archivo es demasiado grande"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor." 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." msgid "Files are being scanned, please wait."
msgstr "Se están escaneando los archivos, por favor espere." msgstr "Se están escaneando los archivos, por favor espere."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Ahora escaneando" msgstr "Ahora escaneando"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-13 00:17+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-12 23:17+0000\n" "PO-Revision-Date: 2013-01-04 15:11+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,26 +22,26 @@ msgstr ""
#: ajax/share.php:84 #: ajax/share.php:84
#, php-format #, php-format
msgid "User %s shared a file with you" msgid "User %s shared a file with you"
msgstr "" msgstr "El usurario %s compartió un archivo con vos."
#: ajax/share.php:86 #: ajax/share.php:86
#, php-format #, php-format
msgid "User %s shared a folder with you" msgid "User %s shared a folder with you"
msgstr "" msgstr "El usurario %s compartió una carpeta con vos."
#: ajax/share.php:88 #: ajax/share.php:88
#, php-format #, php-format
msgid "" msgid ""
"User %s shared the file \"%s\" with you. It is available for download here: " "User %s shared the file \"%s\" with you. It is available for download here: "
"%s" "%s"
msgstr "" msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s"
#: ajax/share.php:90 #: ajax/share.php:90
#, php-format #, php-format
msgid "" msgid ""
"User %s shared the folder \"%s\" with you. It is available for download " "User %s shared the folder \"%s\" with you. It is available for download "
"here: %s" "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 #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
msgid "Category type not provided." msgid "Category type not provided."
@ -163,8 +163,8 @@ msgid "The object type is not specified."
msgstr "El tipo de objeto no esta especificado. " 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:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 #: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
#: js/share.js:553 #: js/share.js:566
msgid "Error" msgid "Error"
msgstr "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!" msgid "The required file {file} is not installed!"
msgstr "¡El archivo requerido {file} no está instalado!" 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" msgid "Error while sharing"
msgstr "Error al compartir" msgstr "Error al compartir"
@ -204,22 +204,22 @@ msgstr "Compartir con"
msgid "Share with link" msgid "Share with link"
msgstr "Compartir con link" msgstr "Compartir con link"
#: js/share.js:164 #: js/share.js:166
msgid "Password protect" msgid "Password protect"
msgstr "Proteger con contraseña " 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 #: templates/verify.php:13
msgid "Password" msgid "Password"
msgstr "Contraseña" msgstr "Contraseña"
#: js/share.js:172 #: js/share.js:172
msgid "Email link to person" msgid "Email link to person"
msgstr "" msgstr "Enviar el link por e-mail."
#: js/share.js:173 #: js/share.js:173
msgid "Send" msgid "Send"
msgstr "" msgstr "Enviar"
#: js/share.js:177 #: js/share.js:177
msgid "Set expiration date" msgid "Set expiration date"
@ -273,25 +273,25 @@ msgstr "borrar"
msgid "share" msgid "share"
msgstr "compartir" 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" msgid "Password protected"
msgstr "Protegido por contraseña" msgstr "Protegido por contraseña"
#: js/share.js:541 #: js/share.js:554
msgid "Error unsetting expiration date" msgid "Error unsetting expiration date"
msgstr "Error al remover la fecha de caducidad" msgstr "Error al remover la fecha de caducidad"
#: js/share.js:553 #: js/share.js:566
msgid "Error setting expiration date" msgid "Error setting expiration date"
msgstr "Error al asignar fecha de vencimiento" msgstr "Error al asignar fecha de vencimiento"
#: js/share.js:568 #: js/share.js:581
msgid "Sending ..." msgid "Sending ..."
msgstr "" msgstr "Enviando..."
#: js/share.js:579 #: js/share.js:592
msgid "Email sent" msgid "Email sent"
msgstr "" msgstr "Email enviado"
#: lostpassword/controller.php:47 #: lostpassword/controller.php:47
msgid "ownCloud password reset" msgid "ownCloud password reset"
@ -313,8 +313,8 @@ msgstr "Reiniciar envío de email."
msgid "Request failed!" msgid "Request failed!"
msgstr "Error en el pedido!" msgstr "Error en el pedido!"
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
#: templates/login.php:20 #: templates/login.php:28
msgid "Username" msgid "Username"
msgstr "Nombre de usuario" 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>" msgid "Create an <strong>admin account</strong>"
msgstr "Crear una <strong>cuenta de administrador</strong>" msgstr "Crear una <strong>cuenta de administrador</strong>"
#: templates/installation.php:48 #: templates/installation.php:50
msgid "Advanced" msgid "Advanced"
msgstr "Avanzado" msgstr "Avanzado"
#: templates/installation.php:50 #: templates/installation.php:52
msgid "Data folder" msgid "Data folder"
msgstr "Directorio de almacenamiento" msgstr "Directorio de almacenamiento"
#: templates/installation.php:57 #: templates/installation.php:59
msgid "Configure the database" msgid "Configure the database"
msgstr "Configurar la base de datos" msgstr "Configurar la base de datos"
#: templates/installation.php:62 templates/installation.php:73 #: templates/installation.php:64 templates/installation.php:75
#: templates/installation.php:83 templates/installation.php:93 #: templates/installation.php:85 templates/installation.php:95
msgid "will be used" msgid "will be used"
msgstr "se utilizarán" msgstr "se utilizarán"
#: templates/installation.php:105 #: templates/installation.php:107
msgid "Database user" msgid "Database user"
msgstr "Usuario de la base de datos" msgstr "Usuario de la base de datos"
#: templates/installation.php:109 #: templates/installation.php:111
msgid "Database password" msgid "Database password"
msgstr "Contraseña de la base de datos" msgstr "Contraseña de la base de datos"
#: templates/installation.php:113 #: templates/installation.php:115
msgid "Database name" msgid "Database name"
msgstr "Nombre de la base de datos" msgstr "Nombre de la base de datos"
#: templates/installation.php:121 #: templates/installation.php:123
msgid "Database tablespace" msgid "Database tablespace"
msgstr "Espacio de tablas de la base de datos" msgstr "Espacio de tablas de la base de datos"
#: templates/installation.php:127 #: templates/installation.php:129
msgid "Database host" msgid "Database host"
msgstr "Host de la base de datos" msgstr "Host de la base de datos"
#: templates/installation.php:132 #: templates/installation.php:134
msgid "Finish setup" msgid "Finish setup"
msgstr "Completar la instalación" msgstr "Completar la instalación"
@ -528,29 +528,29 @@ msgstr "servicios web sobre los que tenés control"
msgid "Log out" msgid "Log out"
msgstr "Cerrar la sesión" msgstr "Cerrar la sesión"
#: templates/login.php:8 #: templates/login.php:10
msgid "Automatic logon rejected!" msgid "Automatic logon rejected!"
msgstr "¡El inicio de sesión automático fue rechazado!" msgstr "¡El inicio de sesión automático fue rechazado!"
#: templates/login.php:9 #: templates/login.php:11
msgid "" msgid ""
"If you did not change your password recently, your account may be " "If you did not change your password recently, your account may be "
"compromised!" "compromised!"
msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!" 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." 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." 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?" msgid "Lost your password?"
msgstr "¿Perdiste tu contraseña?" msgstr "¿Perdiste tu contraseña?"
#: templates/login.php:27 #: templates/login.php:39
msgid "remember" msgid "remember"
msgstr "recordame" msgstr "recordame"
#: templates/login.php:28 #: templates/login.php:41
msgid "Log in" msgid "Log in"
msgstr "Entrar" msgstr "Entrar"

View File

@ -3,14 +3,14 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012. # Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012-2013.
# <claudio.tessone@gmail.com>, 2012. # <claudio.tessone@gmail.com>, 2012.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-11 00:04+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-10 00:37+0000\n" "PO-Revision-Date: 2013-01-04 13:11+0000\n"
"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\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" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,37 +19,49 @@ msgstr ""
"Language: es_AR\n" "Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "No se han producido errores, el archivo se ha subido con éxito" msgstr "No se han producido errores, el archivo se ha subido con éxito"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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:" 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 "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" 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" msgid "The uploaded file was only partially uploaded"
msgstr "El archivo que intentás subir solo se subió parcialmente" msgstr "El archivo que intentás subir solo se subió parcialmente"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "El archivo no fue subido" msgstr "El archivo no fue subido"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Falta un directorio temporal" msgstr "Falta un directorio temporal"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Error al escribir en el disco" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Archivos" msgstr "Archivos"
@ -112,76 +124,76 @@ msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no está
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "generando un archivo ZIP, puede llevar un tiempo." 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" 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" 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" msgid "Upload Error"
msgstr "Error al subir el archivo" msgstr "Error al subir el archivo"
#: js/files.js:226 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Cerrar" 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" msgid "Pending"
msgstr "Pendiente" msgstr "Pendiente"
#: js/files.js:265 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "Subiendo 1 archivo" 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" msgid "{count} files uploading"
msgstr "Subiendo {count} archivos" msgstr "Subiendo {count} archivos"
#: js/files.js:340 js/files.js:373 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "La subida fue cancelada" msgstr "La subida fue cancelada"
#: js/files.js:442 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por 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" msgid "{count} files scanned"
msgstr "{count} archivos escaneados" msgstr "{count} archivos escaneados"
#: js/files.js:701 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "error mientras se escaneaba" msgstr "error mientras se escaneaba"
#: js/files.js:774 templates/index.php:66 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Nombre" msgstr "Nombre"
#: js/files.js:775 templates/index.php:77 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Tamaño" msgstr "Tamaño"
#: js/files.js:776 templates/index.php:79 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Modificado" msgstr "Modificado"
#: js/files.js:803 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 directorio" msgstr "1 directorio"
#: js/files.js:805 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} directorios" msgstr "{count} directorios"
#: js/files.js:813 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 archivo" msgstr "1 archivo"
#: js/files.js:815 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} archivos" msgstr "{count} archivos"
@ -193,27 +205,27 @@ msgstr "Tratamiento de archivos"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Tamaño máximo de subida" msgstr "Tamaño máximo de subida"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "máx. posible:" msgstr "máx. posible:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Es necesario para descargas multi-archivo y de carpetas" msgstr "Es necesario para descargas multi-archivo y de carpetas"
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Habilitar descarga en formato ZIP" msgstr "Habilitar descarga en formato ZIP"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 significa ilimitado" msgstr "0 significa ilimitado"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Tamaño máximo para archivos ZIP de entrada" msgstr "Tamaño máximo para archivos ZIP de entrada"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"

View File

@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013.
# <claudio.tessone@gmail.com>, 2012. # <claudio.tessone@gmail.com>, 2012.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-15 00:11+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-12-14 23:11+0000\n" "PO-Revision-Date: 2013-01-04 05:53+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -23,13 +24,13 @@ msgid ""
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
" experience unexpected behaviour. Please ask your system administrator to " " experience unexpected behaviour. Please ask your system administrator to "
"disable one of them." "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 #: templates/settings.php:11
msgid "" msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will" "<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it." " 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 #: templates/settings.php:15
msgid "Host" msgid "Host"

View File

@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,46 +19,58 @@ msgstr ""
"Language: et_EE\n" "Language: et_EE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Ühtegi viga pole, fail on üles laetud" msgstr "Ühtegi viga pole, fail on üles laetud"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr ""
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Fail laeti üles ainult osaliselt" msgstr "Fail laeti üles ainult osaliselt"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Ühtegi faili ei laetud üles" msgstr "Ühtegi faili ei laetud üles"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Ajutiste failide kaust puudub" msgstr "Ajutiste failide kaust puudub"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Kettale kirjutamine ebaõnnestus" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Failid" 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" msgid "Unshare"
msgstr "Lõpeta jagamine" 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" msgid "Delete"
msgstr "Kustuta" msgstr "Kustuta"
@ -66,39 +78,39 @@ msgstr "Kustuta"
msgid "Rename" msgid "Rename"
msgstr "ümber" msgstr "ümber"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} on juba olemas" msgstr "{new_name} on juba olemas"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "asenda" msgstr "asenda"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "soovita nime" msgstr "soovita nime"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "loobu" msgstr "loobu"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "asendatud nimega {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" msgid "undo"
msgstr "tagasi" msgstr "tagasi"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "asendas nime {old_name} nimega {new_name}" msgstr "asendas nime {old_name} nimega {new_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "jagamata {files}" msgstr "jagamata {files}"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "kustutatud {files}" msgstr "kustutatud {files}"
@ -108,80 +120,80 @@ msgid ""
"allowed." "allowed."
msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud."
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "ZIP-faili loomine, see võib veidi aega võtta." 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" 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" 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" msgid "Upload Error"
msgstr "Üleslaadimise viga" msgstr "Üleslaadimise viga"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Sulge" 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" msgid "Pending"
msgstr "Ootel" msgstr "Ootel"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "1 faili üleslaadimisel" 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" msgid "{count} files uploading"
msgstr "{count} faili üleslaadimist" msgstr "{count} faili üleslaadimist"
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Üleslaadimine tühistati." msgstr "Üleslaadimine tühistati."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud " msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud "
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "{count} faili skännitud" msgstr "{count} faili skännitud"
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "viga skännimisel" msgstr "viga skännimisel"
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Nimi" msgstr "Nimi"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Suurus" msgstr "Suurus"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Muudetud" msgstr "Muudetud"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 kaust" msgstr "1 kaust"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} kausta" msgstr "{count} kausta"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 fail" msgstr "1 fail"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} faili" msgstr "{count} faili"
@ -193,27 +205,27 @@ msgstr "Failide käsitlemine"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Maksimaalne üleslaadimise suurus" msgstr "Maksimaalne üleslaadimise suurus"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "maks. võimalik: " msgstr "maks. võimalik: "
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Vajalik mitme faili ja kausta allalaadimiste jaoks." msgstr "Vajalik mitme faili ja kausta allalaadimiste jaoks."
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Luba ZIP-ina allalaadimine" msgstr "Luba ZIP-ina allalaadimine"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 tähendab piiramatut" msgstr "0 tähendab piiramatut"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" msgstr "Maksimaalne ZIP-faili sisestatava faili suurus"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Salvesta" msgstr "Salvesta"
@ -241,28 +253,28 @@ msgstr "Lae üles"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Tühista üleslaadimine" msgstr "Tühista üleslaadimine"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Siin pole midagi. Lae midagi üles!" msgstr "Siin pole midagi. Lae midagi üles!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Lae alla" msgstr "Lae alla"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Üleslaadimine on liiga suur" msgstr "Üleslaadimine on liiga suur"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." 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." msgid "Files are being scanned, please wait."
msgstr "Faile skannitakse, palun oota" msgstr "Faile skannitakse, palun oota"
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Praegune skannimine" msgstr "Praegune skannimine"

View File

@ -10,9 +10,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-14 00:16+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-13 11:48+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: Piarres Beobide <pi@beobide.net>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -20,37 +20,49 @@ msgstr ""
"Language: eu\n" "Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Ez da arazorik izan, fitxategia ongi igo da" msgstr "Ez da arazorik izan, fitxategia ongi igo da"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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:" msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:"
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Ez da fitxategirik igo" msgstr "Ez da fitxategirik igo"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Aldi baterako karpeta falta da" msgstr "Aldi baterako karpeta falta da"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Errore bat izan da diskoan idazterakoan" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Fitxategiak" msgstr "Fitxategiak"
@ -113,76 +125,76 @@ msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daud
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake" 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" 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" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu"
#: js/files.js:209 #: js/files.js:212
msgid "Upload Error" msgid "Upload Error"
msgstr "Igotzean errore bat suertatu da" msgstr "Igotzean errore bat suertatu da"
#: js/files.js:226 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Itxi" 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" msgid "Pending"
msgstr "Zain" msgstr "Zain"
#: js/files.js:265 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "fitxategi 1 igotzen" 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" msgid "{count} files uploading"
msgstr "{count} fitxategi igotzen" msgstr "{count} fitxategi igotzen"
#: js/files.js:340 js/files.js:373 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Igoera ezeztatuta" msgstr "Igoera ezeztatuta"
#: js/files.js:442 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka" msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka"
#: js/files.js:693 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "{count} fitxategi eskaneatuta" msgstr "{count} fitxategi eskaneatuta"
#: js/files.js:701 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "errore bat egon da eskaneatzen zen bitartean" 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" msgid "Name"
msgstr "Izena" msgstr "Izena"
#: js/files.js:775 templates/index.php:77 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Tamaina" msgstr "Tamaina"
#: js/files.js:776 templates/index.php:79 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Aldatuta" msgstr "Aldatuta"
#: js/files.js:803 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "karpeta bat" msgstr "karpeta bat"
#: js/files.js:805 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} karpeta" msgstr "{count} karpeta"
#: js/files.js:813 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "fitxategi bat" msgstr "fitxategi bat"
#: js/files.js:815 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} fitxategi" msgstr "{count} fitxategi"
@ -194,27 +206,27 @@ msgstr "Fitxategien kudeaketa"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Igo daitekeen gehienezko tamaina" msgstr "Igo daitekeen gehienezko tamaina"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "max, posiblea:" msgstr "max, posiblea:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako." msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako."
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Gaitu ZIP-deskarga" msgstr "Gaitu ZIP-deskarga"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 mugarik gabe esan nahi du" msgstr "0 mugarik gabe esan nahi du"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "ZIP fitxategien gehienezko tamaina" msgstr "ZIP fitxategien gehienezko tamaina"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Gorde" msgstr "Gorde"

View File

@ -10,8 +10,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -20,46 +20,58 @@ msgstr ""
"Language: fa\n" "Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\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" msgid "There is no error, the file uploaded with success"
msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد" msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr ""
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE" msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE"
#: ajax/upload.php:25 #: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded" msgid "The uploaded file was only partially uploaded"
msgstr "مقدار کمی از فایل بارگذاری شده" msgstr "مقدار کمی از فایل بارگذاری شده"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "هیچ فایلی بارگذاری نشده" msgstr "هیچ فایلی بارگذاری نشده"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "یک پوشه موقت گم شده است" msgstr "یک پوشه موقت گم شده است"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "نوشتن بر روی دیسک سخت ناموفق بود" msgstr "نوشتن بر روی دیسک سخت ناموفق بود"
#: ajax/upload.php:45
msgid "Not enough space available"
msgstr ""
#: ajax/upload.php:69
msgid "Invalid directory."
msgstr ""
#: appinfo/app.php:10 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "فایل ها" 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" msgid "Unshare"
msgstr "" 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" msgid "Delete"
msgstr "پاک کردن" msgstr "پاک کردن"
@ -67,39 +79,39 @@ msgstr "پاک کردن"
msgid "Rename" msgid "Rename"
msgstr "تغییرنام" msgstr "تغییرنام"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "جایگزین" msgstr "جایگزین"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "لغو" msgstr "لغو"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "" 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" msgid "undo"
msgstr "بازگشت" msgstr "بازگشت"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "" msgstr ""
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "" msgstr ""
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "" msgstr ""
@ -109,80 +121,80 @@ msgid ""
"allowed." "allowed."
msgstr "" msgstr ""
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد" msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد"
#: js/files.js:218 #: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes" msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد"
#: js/files.js:218 #: js/files.js:212
msgid "Upload Error" msgid "Upload Error"
msgstr "خطا در بار گذاری" msgstr "خطا در بار گذاری"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "بستن" 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" msgid "Pending"
msgstr "در انتظار" msgstr "در انتظار"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "" 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" msgid "{count} files uploading"
msgstr "" msgstr ""
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "بار گذاری لغو شد" msgstr "بار گذاری لغو شد"
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "" msgstr ""
#: js/files.js:523 #: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "" msgstr ""
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "" msgstr ""
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "" msgstr ""
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "نام" msgstr "نام"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "اندازه" msgstr "اندازه"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "تغییر یافته" msgstr "تغییر یافته"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "" msgstr ""
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "" msgstr ""
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "" msgstr ""
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "" msgstr ""
@ -194,27 +206,27 @@ msgstr "اداره پرونده ها"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "حداکثر اندازه بارگزاری" msgstr "حداکثر اندازه بارگزاری"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "حداکثرمقدارممکن:" msgstr "حداکثرمقدارممکن:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "احتیاج پیدا خواهد شد برای چند پوشه و پرونده" msgstr "احتیاج پیدا خواهد شد برای چند پوشه و پرونده"
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "فعال سازی بارگیری پرونده های فشرده" msgstr "فعال سازی بارگیری پرونده های فشرده"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 نامحدود است" msgstr "0 نامحدود است"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده" msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "ذخیره" msgstr "ذخیره"
@ -242,28 +254,28 @@ msgstr "بارگذاری"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "متوقف کردن بار گذاری" msgstr "متوقف کردن بار گذاری"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "اینجا هیچ چیز نیست." msgstr "اینجا هیچ چیز نیست."
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "بارگیری" msgstr "بارگیری"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "حجم بارگذاری بسیار زیاد است" msgstr "حجم بارگذاری بسیار زیاد است"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد"
#: templates/index.php:110 #: templates/index.php:111
msgid "Files are being scanned, please wait." msgid "Files are being scanned, please wait."
msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید"
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "بازرسی کنونی" msgstr "بازرسی کنونی"

View File

@ -4,7 +4,7 @@
# #
# Translators: # Translators:
# Jesse Jaara <jesse.jaara@gmail.com>, 2012. # Jesse Jaara <jesse.jaara@gmail.com>, 2012.
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. # Jiri Grönroos <jiri.gronroos@iki.fi>, 2012-2013.
# Johannes Korpela <>, 2012. # Johannes Korpela <>, 2012.
# <tehoratopato@gmail.com>, 2012. # <tehoratopato@gmail.com>, 2012.
# <tscooter@hotmail.com>, 2012. # <tscooter@hotmail.com>, 2012.
@ -12,9 +12,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2013-01-04 17:44+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,46 +22,58 @@ msgstr ""
"Language: fi_FI\n" "Language: fi_FI\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr ""
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Tiedoston lähetys onnistui vain osittain" msgstr "Tiedoston lähetys onnistui vain osittain"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Yhtäkään tiedostoa ei lähetetty" msgstr "Yhtäkään tiedostoa ei lähetetty"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Väliaikaiskansiota ei ole olemassa" msgstr "Väliaikaiskansiota ei ole olemassa"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Levylle kirjoitus epäonnistui" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Tiedostot" 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" msgid "Unshare"
msgstr "Peru jakaminen" 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" msgid "Delete"
msgstr "Poista" msgstr "Poista"
@ -69,39 +81,39 @@ msgstr "Poista"
msgid "Rename" msgid "Rename"
msgstr "Nimeä uudelleen" msgstr "Nimeä uudelleen"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} on jo olemassa" msgstr "{new_name} on jo olemassa"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "korvaa" msgstr "korvaa"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "ehdota nimeä" msgstr "ehdota nimeä"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "peru" msgstr "peru"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "" 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" msgid "undo"
msgstr "kumoa" msgstr "kumoa"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "" msgstr ""
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "" msgstr ""
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "" msgstr ""
@ -111,80 +123,80 @@ msgid ""
"allowed." "allowed."
msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." 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." msgid "generating ZIP-file, it may take some time."
msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken." 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" 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" 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" msgid "Upload Error"
msgstr "Lähetysvirhe." msgstr "Lähetysvirhe."
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Sulje" 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" msgid "Pending"
msgstr "Odottaa" msgstr "Odottaa"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "" 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" msgid "{count} files uploading"
msgstr "" msgstr ""
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Lähetys peruttu." msgstr "Lähetys peruttu."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "" msgstr ""
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "" msgstr ""
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "" msgstr ""
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Nimi" msgstr "Nimi"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Koko" msgstr "Koko"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Muutettu" msgstr "Muutettu"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 kansio" msgstr "1 kansio"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} kansiota" msgstr "{count} kansiota"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 tiedosto" msgstr "1 tiedosto"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} tiedostoa" msgstr "{count} tiedostoa"
@ -196,27 +208,27 @@ msgstr "Tiedostonhallinta"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Lähetettävän tiedoston suurin sallittu koko" msgstr "Lähetettävän tiedoston suurin sallittu koko"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "suurin mahdollinen:" msgstr "suurin mahdollinen:"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten." msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten."
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Ota ZIP-paketin lataaminen käytöön" msgstr "Ota ZIP-paketin lataaminen käytöön"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 on rajoittamaton" msgstr "0 on rajoittamaton"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "ZIP-tiedostojen enimmäiskoko" msgstr "ZIP-tiedostojen enimmäiskoko"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Tallenna" msgstr "Tallenna"
@ -244,28 +256,28 @@ msgstr "Lähetä"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Peru lähetys" msgstr "Peru lähetys"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Lataa" msgstr "Lataa"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Lähetettävä tiedosto on liian suuri" msgstr "Lähetettävä tiedosto on liian suuri"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." 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." msgid "Files are being scanned, please wait."
msgstr "Tiedostoja tarkistetaan, odota hetki." msgstr "Tiedostoja tarkistetaan, odota hetki."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Tämänhetkinen tutkinta" msgstr "Tämänhetkinen tutkinta"

View File

@ -4,6 +4,7 @@
# #
# Translators: # Translators:
# Christophe Lherieau <skimpax@gmail.com>, 2012. # Christophe Lherieau <skimpax@gmail.com>, 2012.
# <dba@alternalease.fr>, 2013.
# <fkhannouf@me.com>, 2012. # <fkhannouf@me.com>, 2012.
# <florentin.lemoal@gmail.com>, 2012. # <florentin.lemoal@gmail.com>, 2012.
# Guillaume Paumier <guillom.pom@gmail.com>, 2012. # Guillaume Paumier <guillom.pom@gmail.com>, 2012.
@ -17,9 +18,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-29 00:07+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-12-28 23:01+0000\n" "PO-Revision-Date: 2013-01-03 10:24+0000\n"
"Last-Translator: ouafnico <nicolas@shivaserv.fr>\n" "Last-Translator: dbasquin <dba@alternalease.fr>\n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -287,7 +288,7 @@ msgstr "Protégé par un mot de passe"
#: js/share.js:554 #: js/share.js:554
msgid "Error unsetting expiration date" 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 #: js/share.js:566
msgid "Error setting expiration date" msgid "Error setting expiration date"
@ -384,7 +385,7 @@ msgstr "Ajouter"
#: templates/installation.php:23 templates/installation.php:31 #: templates/installation.php:23 templates/installation.php:31
msgid "Security Warning" msgid "Security Warning"
msgstr "Avertissement de sécutité" msgstr "Avertissement de sécurité"
#: templates/installation.php:24 #: templates/installation.php:24
msgid "" msgid ""

View File

@ -5,6 +5,7 @@
# Translators: # Translators:
# Christophe Lherieau <skimpax@gmail.com>, 2012. # Christophe Lherieau <skimpax@gmail.com>, 2012.
# Cyril Glapa <kyriog@gmail.com>, 2012. # Cyril Glapa <kyriog@gmail.com>, 2012.
# <dba@alternalease.fr>, 2013.
# Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012. # Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012.
# <gp4004@arghh.org>, 2012. # <gp4004@arghh.org>, 2012.
# <guiguidu31300@gmail.com>, 2012. # <guiguidu31300@gmail.com>, 2012.
@ -18,9 +19,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-05 00:04+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-04 10:24+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: Robert Di Rosa <>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -28,46 +29,58 @@ msgstr ""
"Language: fr\n" "Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Aucune erreur, le fichier a été téléversé avec succès" msgstr "Aucune erreur, le fichier a été téléversé avec succès"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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:" 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 "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Le fichier n'a été que partiellement téléversé" msgstr "Le fichier n'a été que partiellement téléversé"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Aucun fichier n'a été téléversé" msgstr "Aucun fichier n'a été téléversé"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Il manque un répertoire temporaire" msgstr "Il manque un répertoire temporaire"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Erreur d'écriture sur le disque" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Fichiers" 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" msgid "Unshare"
msgstr "Ne plus partager" 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" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
@ -75,39 +88,39 @@ msgstr "Supprimer"
msgid "Rename" msgid "Rename"
msgstr "Renommer" msgstr "Renommer"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} existe déjà" msgstr "{new_name} existe déjà"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "remplacer" msgstr "remplacer"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "Suggérer un nom" msgstr "Suggérer un nom"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "annuler" msgstr "annuler"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" 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" msgid "undo"
msgstr "annuler" msgstr "annuler"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} a été remplacé par {old_name}" msgstr "{new_name} a été remplacé par {old_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "Fichiers non partagés : {files}" msgstr "Fichiers non partagés : {files}"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "Fichiers supprimés : {files}" msgstr "Fichiers supprimés : {files}"
@ -117,80 +130,80 @@ msgid ""
"allowed." "allowed."
msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." 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." msgid "generating ZIP-file, it may take some time."
msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps." 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" 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." 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" msgid "Upload Error"
msgstr "Erreur de chargement" msgstr "Erreur de chargement"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Fermer" 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" msgid "Pending"
msgstr "En cours" msgstr "En cours"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "1 fichier en cours de téléchargement" 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" msgid "{count} files uploading"
msgstr "{count} fichiers téléversés" 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." msgid "Upload cancelled."
msgstr "Chargement annulé." msgstr "Chargement annulé."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "Nom de répertoire invalide. \"Shared\" est réservé par 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" msgid "{count} files scanned"
msgstr "{count} fichiers indexés" msgstr "{count} fichiers indexés"
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "erreur lors de l'indexation" msgstr "erreur lors de l'indexation"
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Taille" msgstr "Taille"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Modifié" msgstr "Modifié"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 dossier" msgstr "1 dossier"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} dossiers" msgstr "{count} dossiers"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 fichier" msgstr "1 fichier"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} fichiers" msgstr "{count} fichiers"
@ -202,27 +215,27 @@ msgstr "Gestion des fichiers"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Taille max. d'envoi" msgstr "Taille max. d'envoi"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "Max. possible :" msgstr "Max. possible :"
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Nécessaire pour le téléchargement de plusieurs fichiers et de dossiers." 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" msgid "Enable ZIP-download"
msgstr "Activer le téléchargement ZIP" msgstr "Activer le téléchargement ZIP"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 est illimité" msgstr "0 est illimité"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Taille maximale pour les fichiers ZIP" msgstr "Taille maximale pour les fichiers ZIP"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Sauvegarder" msgstr "Sauvegarder"
@ -250,28 +263,28 @@ msgstr "Envoyer"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Annuler l'envoi" msgstr "Annuler l'envoi"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Téléchargement" msgstr "Téléchargement"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Fichier trop volumineux" msgstr "Fichier trop volumineux"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." 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." msgid "Files are being scanned, please wait."
msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Analyse en cours" msgstr "Analyse en cours"

View File

@ -5,6 +5,7 @@
# Translators: # Translators:
# Brice <bmaron@gmail.com>, 2012. # Brice <bmaron@gmail.com>, 2012.
# Cyril Glapa <kyriog@gmail.com>, 2012. # Cyril Glapa <kyriog@gmail.com>, 2012.
# <dba@alternalease.fr>, 2013.
# <fboulogne@april.org>, 2011. # <fboulogne@april.org>, 2011.
# <florentin.lemoal@gmail.com>, 2012. # <florentin.lemoal@gmail.com>, 2012.
# <gp4004@arghh.org>, 2012. # <gp4004@arghh.org>, 2012.
@ -21,9 +22,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-31 00:04+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-12-30 11:04+0000\n" "PO-Revision-Date: 2013-01-03 10:33+0000\n"
"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" "Last-Translator: dbasquin <dba@alternalease.fr>\n"
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-03 00:04+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-02 21:51+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: Miguel Branco <mgl.branco@gmail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -19,46 +19,58 @@ msgstr ""
"Language: gl\n" "Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "Non hai erros. O ficheiro enviouse correctamente" msgstr "Non hai erros. O ficheiro enviouse correctamente"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "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" 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 "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML" 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" msgid "The uploaded file was only partially uploaded"
msgstr "O ficheiro enviado foi só parcialmente enviado" msgstr "O ficheiro enviado foi só parcialmente enviado"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Non se enviou ningún ficheiro" msgstr "Non se enviou ningún ficheiro"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Falta un cartafol temporal" msgstr "Falta un cartafol temporal"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Erro ao escribir no disco" 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Ficheiros" 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" msgid "Unshare"
msgstr "Deixar de compartir" 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" msgid "Delete"
msgstr "Eliminar" msgstr "Eliminar"
@ -66,39 +78,39 @@ msgstr "Eliminar"
msgid "Rename" msgid "Rename"
msgstr "Mudar o nome" 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" msgid "{new_name} already exists"
msgstr "xa existe un {new_name}" msgstr "xa existe un {new_name}"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "substituír" msgstr "substituír"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "suxerir nome" msgstr "suxerir nome"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "cancelar" msgstr "cancelar"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "substituír {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" msgid "undo"
msgstr "desfacer" msgstr "desfacer"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "substituír {new_name} polo {old_name}" msgstr "substituír {new_name} polo {old_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "{files} sen compartir" msgstr "{files} sen compartir"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "{files} eliminados" msgstr "{files} eliminados"
@ -108,80 +120,80 @@ msgid ""
"allowed." "allowed."
msgstr "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten." 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." msgid "generating ZIP-file, it may take some time."
msgstr "xerando un ficheiro ZIP, o que pode levar un anaco." 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" 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" 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" msgid "Upload Error"
msgstr "Erro na subida" msgstr "Erro na subida"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Pechar" 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" msgid "Pending"
msgstr "Pendentes" msgstr "Pendentes"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "1 ficheiro subíndose" 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" msgid "{count} files uploading"
msgstr "{count} ficheiros subíndose" msgstr "{count} ficheiros subíndose"
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Subida cancelada." msgstr "Subida cancelada."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida." 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" 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" 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" msgid "{count} files scanned"
msgstr "{count} ficheiros escaneados" msgstr "{count} ficheiros escaneados"
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "erro mentres analizaba" msgstr "erro mentres analizaba"
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Tamaño" msgstr "Tamaño"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Modificado" msgstr "Modificado"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "1 cartafol" msgstr "1 cartafol"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} cartafoles" msgstr "{count} cartafoles"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "1 ficheiro" msgstr "1 ficheiro"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} ficheiros" msgstr "{count} ficheiros"
@ -193,27 +205,27 @@ msgstr "Manexo de ficheiro"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Tamaño máximo de envío" msgstr "Tamaño máximo de envío"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "máx. posible: " msgstr "máx. posible: "
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Precísase para a descarga de varios ficheiros e cartafoles." msgstr "Precísase para a descarga de varios ficheiros e cartafoles."
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Habilitar a descarga-ZIP" msgstr "Habilitar a descarga-ZIP"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 significa ilimitado" msgstr "0 significa ilimitado"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Tamaño máximo de descarga para os ZIP" msgstr "Tamaño máximo de descarga para os ZIP"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Gardar" msgstr "Gardar"
@ -241,28 +253,28 @@ msgstr "Enviar"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Cancelar a subida" msgstr "Cancelar a subida"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Nada por aquí. Envía algo." msgstr "Nada por aquí. Envía algo."
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Descargar" msgstr "Descargar"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Envío demasiado grande" msgstr "Envío demasiado grande"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor" 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." msgid "Files are being scanned, please wait."
msgstr "Estanse analizando os ficheiros. Agarda." msgstr "Estanse analizando os ficheiros. Agarda."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Análise actual" msgstr "Análise actual"

View File

@ -11,9 +11,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-02 00:02+0100\n" "POT-Creation-Date: 2013-01-05 00:02+0100\n"
"PO-Revision-Date: 2012-12-01 06:37+0000\n" "PO-Revision-Date: 2013-01-04 12:30+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -21,46 +21,58 @@ msgstr ""
"Language: he\n" "Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\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" msgid "There is no error, the file uploaded with success"
msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה" msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:"
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML" msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML"
#: ajax/upload.php:25 #: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded" msgid "The uploaded file was only partially uploaded"
msgstr "הקובץ שהועלה הועלה בצורה חלקית" msgstr "הקובץ שהועלה הועלה בצורה חלקית"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "לא הועלו קבצים" msgstr "לא הועלו קבצים"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "תיקייה זמנית חסרה" msgstr "תיקייה זמנית חסרה"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "הכתיבה לכונן נכשלה" msgstr "הכתיבה לכונן נכשלה"
#: ajax/upload.php:45
msgid "Not enough space available"
msgstr ""
#: ajax/upload.php:69
msgid "Invalid directory."
msgstr ""
#: appinfo/app.php:10 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "קבצים" 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" msgid "Unshare"
msgstr "הסר שיתוף" 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" msgid "Delete"
msgstr "מחיקה" msgstr "מחיקה"
@ -68,39 +80,39 @@ msgstr "מחיקה"
msgid "Rename" msgid "Rename"
msgstr "שינוי שם" msgstr "שינוי שם"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "{new_name} כבר קיים" msgstr "{new_name} כבר קיים"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "החלפה" msgstr "החלפה"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "הצעת שם" msgstr "הצעת שם"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "ביטול" msgstr "ביטול"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "{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" msgid "undo"
msgstr "ביטול" msgstr "ביטול"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "{new_name} הוחלף ב־{old_name}" msgstr "{new_name} הוחלף ב־{old_name}"
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "בוטל שיתופם של {files}" msgstr "בוטל שיתופם של {files}"
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "{files} נמחקו" msgstr "{files} נמחקו"
@ -110,80 +122,80 @@ msgid ""
"allowed." "allowed."
msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'."
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "יוצר קובץ ZIP, אנא המתן." 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" msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים"
#: js/files.js:218 #: js/files.js:212
msgid "Upload Error" msgid "Upload Error"
msgstr "שגיאת העלאה" msgstr "שגיאת העלאה"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "סגירה" 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" msgid "Pending"
msgstr "ממתין" msgstr "ממתין"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "קובץ אחד נשלח" 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" msgid "{count} files uploading"
msgstr "{count} קבצים נשלחים" msgstr "{count} קבצים נשלחים"
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "ההעלאה בוטלה." msgstr "ההעלאה בוטלה."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה."
#: js/files.js:523 #: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud" msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud"
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "{count} קבצים נסרקו" msgstr "{count} קבצים נסרקו"
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "אירעה שגיאה במהלך הסריקה" msgstr "אירעה שגיאה במהלך הסריקה"
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "שם" msgstr "שם"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "גודל" msgstr "גודל"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "זמן שינוי" msgstr "זמן שינוי"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "תיקייה אחת" msgstr "תיקייה אחת"
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "{count} תיקיות" msgstr "{count} תיקיות"
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "קובץ אחד" msgstr "קובץ אחד"
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "{count} קבצים" msgstr "{count} קבצים"
@ -195,27 +207,27 @@ msgstr "טיפול בקבצים"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "גודל העלאה מקסימלי" msgstr "גודל העלאה מקסימלי"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "המרבי האפשרי: " msgstr "המרבי האפשרי: "
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "נחוץ להורדה של ריבוי קבצים או תיקיות." msgstr "נחוץ להורדה של ריבוי קבצים או תיקיות."
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "הפעלת הורדת ZIP" msgstr "הפעלת הורדת ZIP"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 - ללא הגבלה" msgstr "0 - ללא הגבלה"
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "גודל הקלט המרבי לקובצי ZIP" msgstr "גודל הקלט המרבי לקובצי ZIP"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "שמירה" msgstr "שמירה"
@ -243,28 +255,28 @@ msgstr "העלאה"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "ביטול ההעלאה" msgstr "ביטול ההעלאה"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "הורדה" msgstr "הורדה"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "העלאה גדולה מידי" msgstr "העלאה גדולה מידי"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה."
#: templates/index.php:110 #: templates/index.php:111
msgid "Files are being scanned, please wait." msgid "Files are being scanned, please wait."
msgstr "הקבצים נסרקים, נא להמתין." msgstr "הקבצים נסרקים, נא להמתין."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "הסריקה הנוכחית" msgstr "הסריקה הנוכחית"

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -17,46 +17,58 @@ msgstr ""
"Language: hi\n" "Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/upload.php:20 #: ajax/upload.php:14
msgid "There is no error, the file uploaded with success" msgid "No file was uploaded. Unknown error"
msgstr "" msgstr ""
#: ajax/upload.php:21 #: ajax/upload.php:21
msgid "There is no error, the file uploaded with success"
msgstr ""
#: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr ""
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "" msgstr ""
#: ajax/upload.php:25 #: ajax/upload.php:26
msgid "The uploaded file was only partially uploaded" msgid "The uploaded file was only partially uploaded"
msgstr "" msgstr ""
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "" msgstr ""
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "" msgstr ""
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "" msgstr ""
#: ajax/upload.php:45
msgid "Not enough space available"
msgstr ""
#: ajax/upload.php:69
msgid "Invalid directory."
msgstr ""
#: appinfo/app.php:10 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "" 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" msgid "Unshare"
msgstr "" 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" msgid "Delete"
msgstr "" msgstr ""
@ -64,39 +76,39 @@ msgstr ""
msgid "Rename" msgid "Rename"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "" msgstr ""
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "" msgstr ""
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "" 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" msgid "undo"
msgstr "" msgstr ""
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "" msgstr ""
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "" msgstr ""
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "" msgstr ""
@ -106,80 +118,80 @@ msgid ""
"allowed." "allowed."
msgstr "" msgstr ""
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "" msgstr ""
#: js/files.js:218 #: js/files.js:212
msgid "Unable to upload your file as it is a directory or has 0 bytes" msgid "Unable to upload your file as it is a directory or has 0 bytes"
msgstr "" msgstr ""
#: js/files.js:218 #: js/files.js:212
msgid "Upload Error" msgid "Upload Error"
msgstr "" msgstr ""
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "" 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" msgid "Pending"
msgstr "" msgstr ""
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "" 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" msgid "{count} files uploading"
msgstr "" msgstr ""
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "" msgstr ""
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "" msgstr ""
#: js/files.js:523 #: js/files.js:515
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "" msgstr ""
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "" msgstr ""
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "" msgstr ""
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "" msgstr ""
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "" msgstr ""
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "" msgstr ""
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "" msgstr ""
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "" msgstr ""
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "" msgstr ""
@ -191,27 +203,27 @@ msgstr ""
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "" msgstr ""
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "" msgstr ""
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "" msgstr ""
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "" msgstr ""
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "" msgstr ""
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "" msgstr ""
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -239,28 +251,28 @@ msgstr ""
msgid "Cancel upload" msgid "Cancel upload"
msgstr "" msgstr ""
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "" msgstr ""
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "" msgstr ""
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "" msgstr ""
#: templates/index.php:110 #: templates/index.php:111
msgid "Files are being scanned, please wait." msgid "Files are being scanned, please wait."
msgstr "" msgstr ""
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "" msgstr ""

View File

@ -10,8 +10,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ownCloud\n" "Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-01 00:01+0100\n" "POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2012-11-30 23:02+0000\n" "PO-Revision-Date: 2013-01-04 12:22+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -20,46 +20,58 @@ msgstr ""
"Language: hr\n" "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" "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" msgid "There is no error, the file uploaded with success"
msgstr "Datoteka je poslana uspješno i bez pogrešaka" msgstr "Datoteka je poslana uspješno i bez pogrešaka"
#: ajax/upload.php:21 #: ajax/upload.php:22
msgid "" msgid ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " "The uploaded file exceeds the upload_max_filesize directive in php.ini: "
msgstr "" msgstr ""
#: ajax/upload.php:23 #: ajax/upload.php:24
msgid "" msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form" "the HTML form"
msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu" 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" msgid "The uploaded file was only partially uploaded"
msgstr "Datoteka je poslana samo djelomično" msgstr "Datoteka je poslana samo djelomično"
#: ajax/upload.php:26 #: ajax/upload.php:27
msgid "No file was uploaded" msgid "No file was uploaded"
msgstr "Ni jedna datoteka nije poslana" msgstr "Ni jedna datoteka nije poslana"
#: ajax/upload.php:27 #: ajax/upload.php:28
msgid "Missing a temporary folder" msgid "Missing a temporary folder"
msgstr "Nedostaje privremena mapa" msgstr "Nedostaje privremena mapa"
#: ajax/upload.php:28 #: ajax/upload.php:29
msgid "Failed to write to disk" msgid "Failed to write to disk"
msgstr "Neuspjelo pisanje na 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 #: appinfo/app.php:10
msgid "Files" msgid "Files"
msgstr "Datoteke" 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" msgid "Unshare"
msgstr "Prekini djeljenje" 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" msgid "Delete"
msgstr "Briši" msgstr "Briši"
@ -67,39 +79,39 @@ msgstr "Briši"
msgid "Rename" msgid "Rename"
msgstr "Promjeni ime" msgstr "Promjeni ime"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "{new_name} already exists" msgid "{new_name} already exists"
msgstr "" msgstr ""
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "replace" msgid "replace"
msgstr "zamjeni" msgstr "zamjeni"
#: js/filelist.js:201 #: js/filelist.js:199
msgid "suggest name" msgid "suggest name"
msgstr "predloži ime" msgstr "predloži ime"
#: js/filelist.js:201 js/filelist.js:203 #: js/filelist.js:199 js/filelist.js:201
msgid "cancel" msgid "cancel"
msgstr "odustani" msgstr "odustani"
#: js/filelist.js:250 #: js/filelist.js:248
msgid "replaced {new_name}" msgid "replaced {new_name}"
msgstr "" 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" msgid "undo"
msgstr "vrati" msgstr "vrati"
#: js/filelist.js:252 #: js/filelist.js:250
msgid "replaced {new_name} with {old_name}" msgid "replaced {new_name} with {old_name}"
msgstr "" msgstr ""
#: js/filelist.js:284 #: js/filelist.js:282
msgid "unshared {files}" msgid "unshared {files}"
msgstr "" msgstr ""
#: js/filelist.js:286 #: js/filelist.js:284
msgid "deleted {files}" msgid "deleted {files}"
msgstr "" msgstr ""
@ -109,80 +121,80 @@ msgid ""
"allowed." "allowed."
msgstr "" msgstr ""
#: js/files.js:183 #: js/files.js:174
msgid "generating ZIP-file, it may take some time." msgid "generating ZIP-file, it may take some time."
msgstr "generiranje ZIP datoteke, ovo može potrajati." 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" 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" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij"
#: js/files.js:218 #: js/files.js:212
msgid "Upload Error" msgid "Upload Error"
msgstr "Pogreška pri slanju" msgstr "Pogreška pri slanju"
#: js/files.js:235 #: js/files.js:229
msgid "Close" msgid "Close"
msgstr "Zatvori" 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" msgid "Pending"
msgstr "U tijeku" msgstr "U tijeku"
#: js/files.js:274 #: js/files.js:268
msgid "1 file uploading" msgid "1 file uploading"
msgstr "1 datoteka se učitava" 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" msgid "{count} files uploading"
msgstr "" msgstr ""
#: js/files.js:349 js/files.js:382 #: js/files.js:343 js/files.js:376
msgid "Upload cancelled." msgid "Upload cancelled."
msgstr "Slanje poništeno." msgstr "Slanje poništeno."
#: js/files.js:451 #: js/files.js:445
msgid "" msgid ""
"File upload is in progress. Leaving the page now will cancel the upload." "File upload is in progress. Leaving the page now will cancel the upload."
msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." 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" msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
msgstr "" msgstr ""
#: js/files.js:704 #: js/files.js:699
msgid "{count} files scanned" msgid "{count} files scanned"
msgstr "" msgstr ""
#: js/files.js:712 #: js/files.js:707
msgid "error while scanning" msgid "error while scanning"
msgstr "grečka prilikom skeniranja" msgstr "grečka prilikom skeniranja"
#: js/files.js:785 templates/index.php:65 #: js/files.js:780 templates/index.php:66
msgid "Name" msgid "Name"
msgstr "Naziv" msgstr "Naziv"
#: js/files.js:786 templates/index.php:76 #: js/files.js:781 templates/index.php:77
msgid "Size" msgid "Size"
msgstr "Veličina" msgstr "Veličina"
#: js/files.js:787 templates/index.php:78 #: js/files.js:782 templates/index.php:79
msgid "Modified" msgid "Modified"
msgstr "Zadnja promjena" msgstr "Zadnja promjena"
#: js/files.js:814 #: js/files.js:801
msgid "1 folder" msgid "1 folder"
msgstr "" msgstr ""
#: js/files.js:816 #: js/files.js:803
msgid "{count} folders" msgid "{count} folders"
msgstr "" msgstr ""
#: js/files.js:824 #: js/files.js:811
msgid "1 file" msgid "1 file"
msgstr "" msgstr ""
#: js/files.js:826 #: js/files.js:813
msgid "{count} files" msgid "{count} files"
msgstr "" msgstr ""
@ -194,27 +206,27 @@ msgstr "datoteka za rukovanje"
msgid "Maximum upload size" msgid "Maximum upload size"
msgstr "Maksimalna veličina prijenosa" msgstr "Maksimalna veličina prijenosa"
#: templates/admin.php:9 #: templates/admin.php:10
msgid "max. possible: " msgid "max. possible: "
msgstr "maksimalna moguća: " msgstr "maksimalna moguća: "
#: templates/admin.php:12 #: templates/admin.php:15
msgid "Needed for multi-file and folder downloads." msgid "Needed for multi-file and folder downloads."
msgstr "Potrebno za preuzimanje više datoteke i mape" msgstr "Potrebno za preuzimanje više datoteke i mape"
#: templates/admin.php:14 #: templates/admin.php:17
msgid "Enable ZIP-download" msgid "Enable ZIP-download"
msgstr "Omogući ZIP-preuzimanje" msgstr "Omogući ZIP-preuzimanje"
#: templates/admin.php:17 #: templates/admin.php:20
msgid "0 is unlimited" msgid "0 is unlimited"
msgstr "0 je \"bez limita\"" msgstr "0 je \"bez limita\""
#: templates/admin.php:19 #: templates/admin.php:22
msgid "Maximum input size for ZIP files" msgid "Maximum input size for ZIP files"
msgstr "Maksimalna veličina za ZIP datoteke" msgstr "Maksimalna veličina za ZIP datoteke"
#: templates/admin.php:23 #: templates/admin.php:26
msgid "Save" msgid "Save"
msgstr "Snimi" msgstr "Snimi"
@ -242,28 +254,28 @@ msgstr "Pošalji"
msgid "Cancel upload" msgid "Cancel upload"
msgstr "Prekini upload" msgstr "Prekini upload"
#: templates/index.php:57 #: templates/index.php:58
msgid "Nothing in here. Upload something!" msgid "Nothing in here. Upload something!"
msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!"
#: templates/index.php:71 #: templates/index.php:72
msgid "Download" msgid "Download"
msgstr "Preuzmi" msgstr "Preuzmi"
#: templates/index.php:103 #: templates/index.php:104
msgid "Upload too large" msgid "Upload too large"
msgstr "Prijenos je preobiman" msgstr "Prijenos je preobiman"
#: templates/index.php:105 #: templates/index.php:106
msgid "" msgid ""
"The files you are trying to upload exceed the maximum size for file uploads " "The files you are trying to upload exceed the maximum size for file uploads "
"on this server." "on this server."
msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." 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." msgid "Files are being scanned, please wait."
msgstr "Datoteke se skeniraju, molimo pričekajte." msgstr "Datoteke se skeniraju, molimo pričekajte."
#: templates/index.php:113 #: templates/index.php:114
msgid "Current scanning" msgid "Current scanning"
msgstr "Trenutno skeniranje" msgstr "Trenutno skeniranje"

579
l10n/hu/core.po Normal file
View File

@ -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 ""

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