Merge branch 'master' into fixing-998-master
This commit is contained in:
commit
6806484c16
168 changed files with 6177 additions and 3312 deletions
|
@ -30,11 +30,8 @@ OCP\User::checkAdminUser();
|
|||
$htaccessWorking=(getenv('htaccessWorking')=='true');
|
||||
|
||||
$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
|
||||
$upload_max_filesize_possible = OCP\Util::computerFileSize(get_cfg_var('upload_max_filesize'));
|
||||
$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
|
||||
$post_max_size_possible = OCP\Util::computerFileSize(get_cfg_var('post_max_size'));
|
||||
$maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size));
|
||||
$maxUploadFilesizePossible = OCP\Util::humanFileSize(min($upload_max_filesize_possible, $post_max_size_possible));
|
||||
if($_POST && OC_Util::isCallRegistered()) {
|
||||
if(isset($_POST['maxUploadSize'])) {
|
||||
if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) {
|
||||
|
@ -60,7 +57,9 @@ $htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess');
|
|||
$tmpl = new OCP\Template( 'files', 'admin' );
|
||||
$tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable );
|
||||
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize);
|
||||
$tmpl->assign( 'maxPossibleUploadSize', $maxUploadFilesizePossible);
|
||||
// max possible makes only sense on a 32 bit system
|
||||
$tmpl->assign( 'displayMaxPossibleUploadSize', PHP_INT_SIZE===4);
|
||||
$tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX));
|
||||
$tmpl->assign( 'allowZipDownload', $allowZipDownload);
|
||||
$tmpl->assign( 'maxZipInputSize', $maxZipInputSize);
|
||||
return $tmpl->fetchPage();
|
||||
|
|
|
@ -8,14 +8,15 @@ OCP\JSON::setContentTypeHeader('text/plain');
|
|||
|
||||
OCP\JSON::checkLoggedIn();
|
||||
OCP\JSON::callCheck();
|
||||
$l=OC_L10N::get('files');
|
||||
|
||||
if (!isset($_FILES['files'])) {
|
||||
OCP\JSON::error(array('data' => array( 'message' => 'No file was uploaded. Unknown error' )));
|
||||
OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' ))));
|
||||
exit();
|
||||
}
|
||||
|
||||
foreach ($_FILES['files']['error'] as $error) {
|
||||
if ($error != 0) {
|
||||
$l=OC_L10N::get('files');
|
||||
$errors = array(
|
||||
UPLOAD_ERR_OK=>$l->t('There is no error, the file uploaded with success'),
|
||||
UPLOAD_ERR_INI_SIZE=>$l->t('The uploaded file exceeds the upload_max_filesize directive in php.ini: ')
|
||||
|
@ -41,7 +42,7 @@ foreach($files['size'] as $size) {
|
|||
$totalSize+=$size;
|
||||
}
|
||||
if($totalSize>OC_Filesystem::free_space($dir)) {
|
||||
OCP\JSON::error(array('data' => array( 'message' => 'Not enough space available' )));
|
||||
OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' ))));
|
||||
exit();
|
||||
}
|
||||
|
||||
|
@ -65,7 +66,7 @@ if(strpos($dir, '..') === false) {
|
|||
OCP\JSON::encodedPrint($result);
|
||||
exit();
|
||||
} else {
|
||||
$error='invalid dir';
|
||||
$error=$l->t( 'Invalid directory.' );
|
||||
}
|
||||
|
||||
OCP\JSON::error(array('data' => array('error' => $error, 'file' => $fileName)));
|
||||
OCP\JSON::error(array('data' => array('message' => $error )));
|
||||
|
|
46
apps/files/l10n/bn_BD.php
Normal file
46
apps/files/l10n/bn_BD.php
Normal 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" => "বর্তমান স্ক্যানিং"
|
||||
);
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut",
|
||||
"There is no error, the file uploaded with success" => "El fitxer s'ha pujat correctament",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML",
|
||||
|
@ -6,6 +7,8 @@
|
|||
"No file was uploaded" => "El fitxer no s'ha pujat",
|
||||
"Missing a temporary folder" => "S'ha perdut un fitxer temporal",
|
||||
"Failed to write to disk" => "Ha fallat en escriure al disc",
|
||||
"Not enough space available" => "No hi ha prou espai disponible",
|
||||
"Invalid directory." => "Directori no vàlid.",
|
||||
"Files" => "Fitxers",
|
||||
"Unshare" => "Deixa de compartir",
|
||||
"Delete" => "Suprimeix",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba",
|
||||
"There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.",
|
||||
"There is no error, the file uploaded with success" => "Der er ingen fejl, filen blev uploadet med success",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler",
|
||||
"There is no error, the file uploaded with success" => "Datei fehlerfrei hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde",
|
||||
|
@ -6,6 +7,8 @@
|
|||
"No file was uploaded" => "Es wurde keine Datei hochgeladen.",
|
||||
"Missing a temporary folder" => "Temporärer Ordner fehlt.",
|
||||
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
|
||||
"Not enough space available" => "Nicht genug Speicherplatz verfügbar",
|
||||
"Invalid directory." => "Ungültiges Verzeichnis.",
|
||||
"Files" => "Dateien",
|
||||
"Unshare" => "Nicht mehr freigeben",
|
||||
"Delete" => "Löschen",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler",
|
||||
"There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde",
|
||||
|
@ -6,6 +7,8 @@
|
|||
"No file was uploaded" => "Es wurde keine Datei hochgeladen.",
|
||||
"Missing a temporary folder" => "Der temporäre Ordner fehlt.",
|
||||
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
|
||||
"Not enough space available" => "Nicht genug Speicher verfügbar",
|
||||
"Invalid directory." => "Ungültiges Verzeichnis.",
|
||||
"Files" => "Dateien",
|
||||
"Unshare" => "Nicht mehr freigeben",
|
||||
"Delete" => "Löschen",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα",
|
||||
"There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.",
|
||||
"There is no error, the file uploaded with success" => "Ne estas eraro, la dosiero alŝutiĝis sukcese",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Fallo no se subió el fichero",
|
||||
"There is no error, the file uploaded with success" => "No se ha producido ningún error, el archivo se ha subido con éxito",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML",
|
||||
|
@ -6,6 +7,8 @@
|
|||
"No file was uploaded" => "No se ha subido ningún archivo",
|
||||
"Missing a temporary folder" => "Falta un directorio temporal",
|
||||
"Failed to write to disk" => "La escritura en disco ha fallado",
|
||||
"Not enough space available" => "No hay suficiente espacio disponible",
|
||||
"Invalid directory." => "Directorio invalido.",
|
||||
"Files" => "Archivos",
|
||||
"Unshare" => "Dejar de compartir",
|
||||
"Delete" => "Eliminar",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido",
|
||||
"There is no error, the file uploaded with success" => "No se han producido errores, el archivo se ha subido con éxito",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML",
|
||||
|
@ -6,6 +7,8 @@
|
|||
"No file was uploaded" => "El archivo no fue subido",
|
||||
"Missing a temporary folder" => "Falta un directorio temporal",
|
||||
"Failed to write to disk" => "Error al escribir en el disco",
|
||||
"Not enough space available" => "No hay suficiente espacio disponible",
|
||||
"Invalid directory." => "Directorio invalido.",
|
||||
"Files" => "Archivos",
|
||||
"Unshare" => "Dejar de compartir",
|
||||
"Delete" => "Borrar",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga",
|
||||
"There is no error, the file uploaded with success" => "Ühtegi viga pole, fail on üles laetud",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse",
|
||||
"The uploaded file was only partially uploaded" => "Fail laeti üles ainult osaliselt",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Ez da fitxategirik igo. Errore ezezaguna",
|
||||
"There is no error, the file uploaded with success" => "Ez da arazorik izan, fitxategia ongi igo da",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس",
|
||||
"There is no error, the file uploaded with success" => "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE",
|
||||
"The uploaded file was only partially uploaded" => "مقدار کمی از فایل بارگذاری شده",
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe",
|
||||
"There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan",
|
||||
"The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain",
|
||||
"No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty",
|
||||
"Missing a temporary folder" => "Väliaikaiskansiota ei ole olemassa",
|
||||
"Failed to write to disk" => "Levylle kirjoitus epäonnistui",
|
||||
"Not enough space available" => "Tilaa ei ole riittävästi",
|
||||
"Invalid directory." => "Virheellinen kansio.",
|
||||
"Files" => "Tiedostot",
|
||||
"Unshare" => "Peru jakaminen",
|
||||
"Delete" => "Poista",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Aucun fichier n'a été chargé. Erreur inconnue",
|
||||
"There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été téléversé avec succès",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML",
|
||||
|
@ -14,7 +15,7 @@
|
|||
"replace" => "remplacer",
|
||||
"suggest name" => "Suggérer un nom",
|
||||
"cancel" => "annuler",
|
||||
"replaced {new_name}" => "{new_name} a été replacé",
|
||||
"replaced {new_name}" => "{new_name} a été remplacé",
|
||||
"undo" => "annuler",
|
||||
"replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}",
|
||||
"unshared {files}" => "Fichiers non partagés : {files}",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Non se subiu ningún ficheiro. Erro descoñecido.",
|
||||
"There is no error, the file uploaded with success" => "Non hai erros. O ficheiro enviouse correctamente",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.",
|
||||
"There is no error, the file uploaded with success" => "לא אירעה תקלה, הקבצים הועלו בהצלחה",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba",
|
||||
"There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra.",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto",
|
||||
"There is no error, the file uploaded with success" => "Non ci sono errori, file caricato con successo",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML",
|
||||
|
@ -6,6 +7,8 @@
|
|||
"No file was uploaded" => "Nessun file è stato caricato",
|
||||
"Missing a temporary folder" => "Cartella temporanea mancante",
|
||||
"Failed to write to disk" => "Scrittura su disco non riuscita",
|
||||
"Not enough space available" => "Spazio disponibile insufficiente",
|
||||
"Invalid directory." => "Cartella non valida.",
|
||||
"Files" => "File",
|
||||
"Unshare" => "Rimuovi condivisione",
|
||||
"Delete" => "Elimina",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー",
|
||||
"There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードされたファイルはHTMLのフォームに設定されたMAX_FILE_SIZEに設定されたサイズを超えています",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다",
|
||||
"There is no error, the file uploaded with success" => "업로드에 성공하였습니다.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일이 HTML 문서에 지정한 MAX_FILE_SIZE보다 더 큼",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Ниту еден фајл не се вчита. Непозната грешка",
|
||||
"There is no error, the file uploaded with success" => "Нема грешка, датотеката беше подигната успешно",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Подигнатата датотеката ја надминува MAX_FILE_SIZE директивата која беше поставена во HTML формата",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Tiada fail dimuatnaik. Ralat tidak diketahui.",
|
||||
"There is no error, the file uploaded with success" => "Tiada ralat, fail berjaya dimuat naik.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML ",
|
||||
"The uploaded file was only partially uploaded" => "Sebahagian daripada fail telah dimuat naik. ",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.",
|
||||
"There is no error, the file uploaded with success" => "Det er ingen feil. Filen ble lastet opp.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Filstørrelsen overskrider maksgrensen på MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet",
|
||||
"The uploaded file was only partially uploaded" => "Filopplastningen ble bare delvis gjennomført",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Er was geen bestand geladen. Onbekende fout",
|
||||
"There is no error, the file uploaded with success" => "Geen fout opgetreden, bestand successvol geupload.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Plik nie został załadowany. Nieznany błąd",
|
||||
"There is no error, the file uploaded with success" => "Przesłano plik",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Nenhum arquivo foi transferido. Erro desconhecido",
|
||||
"There is no error, the file uploaded with success" => "Não houve nenhum erro, o arquivo foi transferido com sucesso",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulário HTML",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido",
|
||||
"There is no error, the file uploaded with success" => "Sem erro, ficheiro enviado com sucesso",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulário HTML",
|
||||
|
@ -6,6 +7,8 @@
|
|||
"No file was uploaded" => "Não foi enviado nenhum ficheiro",
|
||||
"Missing a temporary folder" => "Falta uma pasta temporária",
|
||||
"Failed to write to disk" => "Falhou a escrita no disco",
|
||||
"Not enough space available" => "Espaço em disco insuficiente!",
|
||||
"Invalid directory." => "Directório Inválido",
|
||||
"Files" => "Ficheiros",
|
||||
"Unshare" => "Deixar de partilhar",
|
||||
"Delete" => "Apagar",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută",
|
||||
"There is no error, the file uploaded with success" => "Nicio eroare, fișierul a fost încărcat cu succes",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
|
||||
"There is no error, the file uploaded with success" => "Файл успешно загружен",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Файл превышает размер MAX_FILE_SIZE, указаный в HTML-форме",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
|
||||
"There is no error, the file uploaded with success" => "Ошибка отсутствует, файл загружен успешно.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්",
|
||||
"There is no error, the file uploaded with success" => "නිවැරදි ව ගොනුව උඩුගත කෙරිනි",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය",
|
||||
"The uploaded file was only partially uploaded" => "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba",
|
||||
"There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Nahrávaný súbor presiahol MAX_FILE_SIZE direktívu, ktorá bola špecifikovaná v HTML formulári",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Nobena datoteka ni naložena. Neznana napaka.",
|
||||
"There is no error, the file uploaded with success" => "Datoteka je uspešno naložena brez napak.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Ingen fil uppladdad. Okänt fel",
|
||||
"There is no error, the file uploaded with success" => "Inga fel uppstod. Filen laddades upp utan problem",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uppladdade filen överstiger MAX_FILE_SIZE direktivet som anges i HTML-formulär",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு",
|
||||
"There is no error, the file uploaded with success" => "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது",
|
||||
"The uploaded file was only partially uploaded" => "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ",
|
||||
"There is no error, the file uploaded with success" => "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata",
|
||||
"There is no error, the file uploaded with success" => "Bir hata yok, dosya başarıyla yüklendi",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка",
|
||||
"There is no error, the file uploaded with success" => "Файл успішно вивантажено без помилок.",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định",
|
||||
"There is no error, the file uploaded with success" => "Không có lỗi, các tập tin đã được tải lên thành công",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Kích thước những tập tin tải lên vượt quá MAX_FILE_SIZE đã được quy định",
|
||||
"The uploaded file was only partially uploaded" => "Tập tin tải lên mới chỉ tải lên được một phần",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "没有上传文件。未知错误",
|
||||
"There is no error, the file uploaded with success" => "没有任何错误,文件上传成功了",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了HTML表单指定的MAX_FILE_SIZE",
|
||||
"The uploaded file was only partially uploaded" => "文件只有部分被上传",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "没有文件被上传。未知错误",
|
||||
"There is no error, the file uploaded with success" => "没有发生错误,文件上传成功。",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传文件大小已超过php.ini中upload_max_filesize所规定的值",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了在HTML 表单中指定的MAX_FILE_SIZE",
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"No file was uploaded. Unknown error" => "沒有檔案被上傳. 未知的錯誤.",
|
||||
"There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳黨案的超過 HTML 表單中指定 MAX_FILE_SIZE 限制",
|
||||
"The uploaded file was only partially uploaded" => "只有部分檔案被上傳",
|
||||
|
|
|
@ -6,7 +6,10 @@
|
|||
<?php if($_['uploadChangable']):?>
|
||||
<label for="maxUploadSize"><?php echo $l->t( 'Maximum upload size' ); ?> </label>
|
||||
<input name='maxUploadSize' id="maxUploadSize" value='<?php echo $_['uploadMaxFilesize'] ?>'/>
|
||||
(<?php echo $l->t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>)<br/>
|
||||
<?php if($_['displayMaxPossibleUploadSize']):?>
|
||||
(<?php echo $l->t('max. possible: '); echo $_['maxPossibleUploadSize'] ?>)
|
||||
<?php endif;?>
|
||||
<br/>
|
||||
<?php endif;?>
|
||||
<input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1"
|
||||
title="<?php echo $l->t( 'Needed for multi-file and folder downloads.' ); ?>"
|
||||
|
|
6
apps/files_external/l10n/bn_BD.php
Normal file
6
apps/files_external/l10n/bn_BD.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Backend" => "প্রশাসক",
|
||||
"Groups" => "গোষ্ঠী",
|
||||
"Users" => "ব্যবহারকারিবৃন্দ",
|
||||
"Delete" => "মুছে ফেল"
|
||||
);
|
6
apps/files_sharing/l10n/bn_BD.php
Normal file
6
apps/files_sharing/l10n/bn_BD.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "কূটশব্দ",
|
||||
"Submit" => "পাঠাও",
|
||||
"Download" => "ডাউনলোড",
|
||||
"web services under your control" => "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"
|
||||
);
|
3
apps/files_versions/l10n/bn_BD.php
Normal file
3
apps/files_versions/l10n/bn_BD.php
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Enable" => "সক্রিয়"
|
||||
);
|
4
apps/user_ldap/l10n/bn_BD.php
Normal file
4
apps/user_ldap/l10n/bn_BD.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"Password" => "কূটশব্দ",
|
||||
"Help" => "সহায়িকা"
|
||||
);
|
|
@ -1,4 +1,6 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos.",
|
||||
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Advertencia:</b> El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo.",
|
||||
"Host" => "Servidor",
|
||||
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://",
|
||||
"Base DN" => "DN base",
|
||||
|
|
|
@ -78,6 +78,9 @@ $CONFIG = array(
|
|||
/* Host to use for sending mail, depends on mail_smtpmode if this is used */
|
||||
"mail_smtphost" => "127.0.0.1",
|
||||
|
||||
/* Port to use for sending mail, depends on mail_smtpmode if this is used */
|
||||
"mail_smtpport" => 25,
|
||||
|
||||
/* authentication needed to send mail, depends on mail_smtpmode if this is used
|
||||
* (false = disable authentication)
|
||||
*/
|
||||
|
|
|
@ -3,14 +3,15 @@
|
|||
* Add
|
||||
* define('DEBUG', true);
|
||||
* To the end of config/config.php to enable debug mode.
|
||||
* The undefined checks fix the broken ie8 console
|
||||
*/
|
||||
if (oc_debug !== true) {
|
||||
if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") {
|
||||
if (!window.console) {
|
||||
window.console = {};
|
||||
}
|
||||
var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert'];
|
||||
for (var i = 0; i < methods.length; i++) {
|
||||
console[methods[i]] = function () { };
|
||||
console[methods[i]] = function () { };
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -20,7 +21,6 @@ if (oc_debug !== true) {
|
|||
* @param text the string to translate
|
||||
* @return string
|
||||
*/
|
||||
|
||||
function t(app,text, vars){
|
||||
if( !( t.cache[app] )){
|
||||
$.ajax(OC.filePath('core','ajax','translations.php'),{
|
||||
|
|
121
core/l10n/bn_BD.php
Normal file
121
core/l10n/bn_BD.php
Normal 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" => "যাচাই কর"
|
||||
);
|
|
@ -1,4 +1,8 @@
|
|||
<?php $TRANSLATIONS = array(
|
||||
"User %s shared a file with you" => "El usurario %s compartió un archivo con vos.",
|
||||
"User %s shared a folder with you" => "El usurario %s compartió una carpeta con vos.",
|
||||
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s",
|
||||
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s",
|
||||
"Category type not provided." => "Tipo de categoría no provisto. ",
|
||||
"No category to add?" => "¿Ninguna categoría para añadir?",
|
||||
"This category already exists: " => "Esta categoría ya existe: ",
|
||||
|
@ -39,6 +43,8 @@
|
|||
"Share with link" => "Compartir con link",
|
||||
"Password protect" => "Proteger con contraseña ",
|
||||
"Password" => "Contraseña",
|
||||
"Email link to person" => "Enviar el link por e-mail.",
|
||||
"Send" => "Enviar",
|
||||
"Set expiration date" => "Asignar fecha de vencimiento",
|
||||
"Expiration date" => "Fecha de vencimiento",
|
||||
"Share via email:" => "compartido a través de e-mail:",
|
||||
|
@ -55,6 +61,8 @@
|
|||
"Password protected" => "Protegido por contraseña",
|
||||
"Error unsetting expiration date" => "Error al remover la fecha de caducidad",
|
||||
"Error setting expiration date" => "Error al asignar fecha de vencimiento",
|
||||
"Sending ..." => "Enviando...",
|
||||
"Email sent" => "Email enviado",
|
||||
"ownCloud password reset" => "Restablecer contraseña de ownCloud",
|
||||
"Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}",
|
||||
"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña",
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
"delete" => "supprimer",
|
||||
"share" => "partager",
|
||||
"Password protected" => "Protégé par un mot de passe",
|
||||
"Error unsetting expiration date" => "Un erreur est survenue pendant la suppression de la date d'expiration",
|
||||
"Error unsetting expiration date" => "Une erreur est survenue pendant la suppression de la date d'expiration",
|
||||
"Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration",
|
||||
"Sending ..." => "En cours d'envoi ...",
|
||||
"Email sent" => "Email envoyé",
|
||||
|
@ -83,7 +83,7 @@
|
|||
"Cloud not found" => "Introuvable",
|
||||
"Edit categories" => "Modifier les catégories",
|
||||
"Add" => "Ajouter",
|
||||
"Security Warning" => "Avertissement de sécutité",
|
||||
"Security Warning" => "Avertissement de sécurité",
|
||||
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL",
|
||||
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur.",
|
||||
"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web.",
|
||||
|
|
|
@ -45,8 +45,6 @@ class OC_Core_LostPassword_Controller {
|
|||
$l = OC_L10N::get('core');
|
||||
$from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply');
|
||||
OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud');
|
||||
echo('Mailsent');
|
||||
|
||||
self::displayLostPasswordPage(false, true);
|
||||
} else {
|
||||
self::displayLostPasswordPage(true, false);
|
||||
|
|
114
l10n/ar/files.po
114
l10n/ar/files.po
|
@ -8,8 +8,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-01 00:01+0100\n"
|
||||
"PO-Revision-Date: 2012-11-30 23:02+0000\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -18,46 +18,58 @@ msgstr ""
|
|||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "تم ترفيع الملفات بنجاح."
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML."
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "لم يتم ترفيع أي من الملفات"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "المجلد المؤقت غير موجود"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "الملفات"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "إلغاء مشاركة"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "محذوف"
|
||||
|
||||
|
@ -65,39 +77,39 @@ msgstr "محذوف"
|
|||
msgid "Rename"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr ""
|
||||
|
||||
|
@ -107,80 +119,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "إغلق"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "حجم"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "معدل"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr ""
|
||||
|
||||
|
@ -192,27 +204,27 @@ msgstr ""
|
|||
msgid "Maximum upload size"
|
||||
msgstr "الحد الأقصى لحجم الملفات التي يمكن رفعها"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "حفظ"
|
||||
|
||||
|
@ -240,28 +252,28 @@ msgstr "إرفع"
|
|||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "تحميل"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "حجم الترفيع أعلى من المسموح"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr ""
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-01 00:01+0100\n"
|
||||
"PO-Revision-Date: 2012-11-30 23:02+0000\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -19,46 +19,58 @@ msgstr ""
|
|||
"Language: bg_BG\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Файлът е качен успешно"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата."
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Файлът е качен частично"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Фахлът не бе качен"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Липсва временната папка"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Грешка при запис на диска"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Файлове"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Изтриване"
|
||||
|
||||
|
@ -66,39 +78,39 @@ msgstr "Изтриване"
|
|||
msgid "Rename"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr ""
|
||||
|
||||
|
@ -108,80 +120,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Грешка при качване"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Качването е отменено."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Размер"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Променено"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr ""
|
||||
|
||||
|
@ -193,27 +205,27 @@ msgstr ""
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Макс. размер за качване"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 означава без ограничение"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Запис"
|
||||
|
||||
|
@ -241,28 +253,28 @@ msgstr "Качване"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Отказване на качването"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Няма нищо, качете нещо!"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Изтегляне"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "Файлът е прекалено голям"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Файловете се претърсват, изчакайте."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr ""
|
||||
|
|
|
@ -3,13 +3,14 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Shubhra Paul <paul_shubhra@yahoo.com>, 2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-02 00:04+0100\n"
|
||||
"PO-Revision-Date: 2011-07-25 16:05+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2013-01-02 09:32+0000\n"
|
||||
"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -20,12 +21,12 @@ msgstr ""
|
|||
#: ajax/share.php:84
|
||||
#, php-format
|
||||
msgid "User %s shared a file with you"
|
||||
msgstr ""
|
||||
msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন"
|
||||
|
||||
#: ajax/share.php:86
|
||||
#, php-format
|
||||
msgid "User %s shared a folder with you"
|
||||
msgstr ""
|
||||
msgstr "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন"
|
||||
|
||||
#: ajax/share.php:88
|
||||
#, php-format
|
||||
|
@ -43,21 +44,21 @@ msgstr ""
|
|||
|
||||
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
|
||||
msgid "Category type not provided."
|
||||
msgstr ""
|
||||
msgstr "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।"
|
||||
|
||||
#: ajax/vcategories/add.php:30
|
||||
msgid "No category to add?"
|
||||
msgstr ""
|
||||
msgstr "যোগ করার মত কোন ক্যাটেগরি নেই ?"
|
||||
|
||||
#: ajax/vcategories/add.php:37
|
||||
msgid "This category already exists: "
|
||||
msgstr ""
|
||||
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 ""
|
||||
msgstr "অবজেক্টের ধরণটি প্রদান করা হয় নি।"
|
||||
|
||||
#: ajax/vcategories/addToFavorites.php:30
|
||||
#: ajax/vcategories/removeFromFavorites.php:30
|
||||
|
@ -68,123 +69,123 @@ msgstr ""
|
|||
#: ajax/vcategories/addToFavorites.php:35
|
||||
#, php-format
|
||||
msgid "Error adding %s to favorites."
|
||||
msgstr ""
|
||||
msgstr "প্রিয়তে %s যোগ করতে সমস্যা দেখা দিয়েছে।"
|
||||
|
||||
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
|
||||
msgid "No categories selected for deletion."
|
||||
msgstr ""
|
||||
msgstr "মুছে ফেলার জন্য কোন ক্যাটেগরি নির্বাচন করা হয় নি।"
|
||||
|
||||
#: ajax/vcategories/removeFromFavorites.php:35
|
||||
#, php-format
|
||||
msgid "Error removing %s from favorites."
|
||||
msgstr ""
|
||||
msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।"
|
||||
|
||||
#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
msgstr "নিয়ামকসমূহ"
|
||||
|
||||
#: js/js.js:704
|
||||
msgid "seconds ago"
|
||||
msgstr ""
|
||||
msgstr "সেকেন্ড পূর্বে"
|
||||
|
||||
#: js/js.js:705
|
||||
msgid "1 minute ago"
|
||||
msgstr ""
|
||||
msgstr "1 মিনিট পূর্বে"
|
||||
|
||||
#: js/js.js:706
|
||||
msgid "{minutes} minutes ago"
|
||||
msgstr ""
|
||||
msgstr "{minutes} মিনিট পূর্বে"
|
||||
|
||||
#: js/js.js:707
|
||||
msgid "1 hour ago"
|
||||
msgstr ""
|
||||
msgstr "1 ঘন্টা পূর্বে"
|
||||
|
||||
#: js/js.js:708
|
||||
msgid "{hours} hours ago"
|
||||
msgstr ""
|
||||
msgstr "{hours} ঘন্টা পূর্বে"
|
||||
|
||||
#: js/js.js:709
|
||||
msgid "today"
|
||||
msgstr ""
|
||||
msgstr "আজ"
|
||||
|
||||
#: js/js.js:710
|
||||
msgid "yesterday"
|
||||
msgstr ""
|
||||
msgstr "গতকাল"
|
||||
|
||||
#: js/js.js:711
|
||||
msgid "{days} days ago"
|
||||
msgstr ""
|
||||
msgstr "{days} দিন পূর্বে"
|
||||
|
||||
#: js/js.js:712
|
||||
msgid "last month"
|
||||
msgstr ""
|
||||
msgstr "গতমাস"
|
||||
|
||||
#: js/js.js:713
|
||||
msgid "{months} months ago"
|
||||
msgstr ""
|
||||
msgstr "{months} মাস পূর্বে"
|
||||
|
||||
#: js/js.js:714
|
||||
msgid "months ago"
|
||||
msgstr ""
|
||||
msgstr "মাস পূর্বে"
|
||||
|
||||
#: js/js.js:715
|
||||
msgid "last year"
|
||||
msgstr ""
|
||||
msgstr "গত বছর"
|
||||
|
||||
#: js/js.js:716
|
||||
msgid "years ago"
|
||||
msgstr ""
|
||||
msgstr "বছর পূর্বে"
|
||||
|
||||
#: js/oc-dialogs.js:126
|
||||
msgid "Choose"
|
||||
msgstr ""
|
||||
msgstr "নির্বাচন"
|
||||
|
||||
#: js/oc-dialogs.js:146 js/oc-dialogs.js:166
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "বাতিল"
|
||||
|
||||
#: js/oc-dialogs.js:162
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
msgstr "না"
|
||||
|
||||
#: js/oc-dialogs.js:163
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
msgstr "হ্যাঁ"
|
||||
|
||||
#: js/oc-dialogs.js:180
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
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 ""
|
||||
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 ""
|
||||
msgstr "সমস্যা"
|
||||
|
||||
#: js/oc-vcategories.js:179
|
||||
msgid "The app name is not specified."
|
||||
msgstr ""
|
||||
msgstr "অ্যাপের নামটি সুনির্দিষ্ট নয়।"
|
||||
|
||||
#: js/oc-vcategories.js:194
|
||||
msgid "The required file {file} is not installed!"
|
||||
msgstr ""
|
||||
msgstr "আবশ্যিক {file} টি সংস্থাপিত নেই !"
|
||||
|
||||
#: js/share.js:124 js/share.js:594
|
||||
msgid "Error while sharing"
|
||||
msgstr ""
|
||||
msgstr "ভাগাভাগি করার সময় সমস্যা দেখা দিয়েছে"
|
||||
|
||||
#: js/share.js:135
|
||||
msgid "Error while unsharing"
|
||||
msgstr ""
|
||||
msgstr "ভাগাভাগি বাতিল করার সময় সমস্যা দেখা দিয়েছে"
|
||||
|
||||
#: js/share.js:142
|
||||
msgid "Error while changing permissions"
|
||||
msgstr ""
|
||||
msgstr "অনুমতি পরিবর্তন করার সময় সমস্যা দেখা দিয়েছে"
|
||||
|
||||
#: js/share.js:151
|
||||
msgid "Shared with you and the group {group} by {owner}"
|
||||
|
@ -196,48 +197,48 @@ msgstr ""
|
|||
|
||||
#: js/share.js:158
|
||||
msgid "Share with"
|
||||
msgstr ""
|
||||
msgstr "যাদের সাথে ভাগাভাগি করবে"
|
||||
|
||||
#: js/share.js:163
|
||||
msgid "Share with link"
|
||||
msgstr ""
|
||||
msgstr "লিংক সহযোগে ভাগাভাগি"
|
||||
|
||||
#: js/share.js:166
|
||||
msgid "Password protect"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দদ্বারা সুরক্ষিত"
|
||||
|
||||
#: js/share.js:168 templates/installation.php:44 templates/login.php:35
|
||||
#: templates/verify.php:13
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ"
|
||||
|
||||
#: js/share.js:172
|
||||
msgid "Email link to person"
|
||||
msgstr ""
|
||||
msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর"
|
||||
|
||||
#: js/share.js:173
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
msgstr "পাঠাও"
|
||||
|
||||
#: js/share.js:177
|
||||
msgid "Set expiration date"
|
||||
msgstr ""
|
||||
msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন"
|
||||
|
||||
#: js/share.js:178
|
||||
msgid "Expiration date"
|
||||
msgstr ""
|
||||
msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ"
|
||||
|
||||
#: js/share.js:210
|
||||
msgid "Share via email:"
|
||||
msgstr ""
|
||||
msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করঃ"
|
||||
|
||||
#: js/share.js:212
|
||||
msgid "No people found"
|
||||
msgstr ""
|
||||
msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না"
|
||||
|
||||
#: js/share.js:239
|
||||
msgid "Resharing is not allowed"
|
||||
msgstr ""
|
||||
msgstr "পূনরায় ভাগাভাগি করার অনুমতি নেই"
|
||||
|
||||
#: js/share.js:275
|
||||
msgid "Shared in {item} with {user}"
|
||||
|
@ -245,136 +246,136 @@ msgstr ""
|
|||
|
||||
#: js/share.js:296
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
msgstr "ভাগাভাগি বাতিল"
|
||||
|
||||
#: js/share.js:308
|
||||
msgid "can edit"
|
||||
msgstr ""
|
||||
msgstr "সম্পাদনা করতে পারবে"
|
||||
|
||||
#: js/share.js:310
|
||||
msgid "access control"
|
||||
msgstr ""
|
||||
msgstr "অধিগম্যতার নিয়ন্ত্রণ"
|
||||
|
||||
#: js/share.js:313
|
||||
msgid "create"
|
||||
msgstr ""
|
||||
msgstr "তৈরি কর"
|
||||
|
||||
#: js/share.js:316
|
||||
msgid "update"
|
||||
msgstr ""
|
||||
msgstr "পরিবর্ধন কর"
|
||||
|
||||
#: js/share.js:319
|
||||
msgid "delete"
|
||||
msgstr ""
|
||||
msgstr "মুছে ফেল"
|
||||
|
||||
#: js/share.js:322
|
||||
msgid "share"
|
||||
msgstr ""
|
||||
msgstr "ভাগাভাগি কর"
|
||||
|
||||
#: js/share.js:356 js/share.js:541
|
||||
msgid "Password protected"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দদ্বারা সুরক্ষিত"
|
||||
|
||||
#: js/share.js:554
|
||||
msgid "Error unsetting expiration date"
|
||||
msgstr ""
|
||||
msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা"
|
||||
|
||||
#: js/share.js:566
|
||||
msgid "Error setting expiration date"
|
||||
msgstr ""
|
||||
msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা"
|
||||
|
||||
#: js/share.js:581
|
||||
msgid "Sending ..."
|
||||
msgstr ""
|
||||
msgstr "পাঠানো হচ্ছে......"
|
||||
|
||||
#: js/share.js:592
|
||||
msgid "Email sent"
|
||||
msgstr ""
|
||||
msgstr "ই-মেইল পাঠানো হয়েছে"
|
||||
|
||||
#: lostpassword/controller.php:47
|
||||
msgid "ownCloud password reset"
|
||||
msgstr ""
|
||||
msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ"
|
||||
|
||||
#: lostpassword/templates/email.php:2
|
||||
msgid "Use the following link to reset your password: {link}"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ পূনঃনির্ধারণ করতে নিম্নোক্ত লিংকে ক্লিক করুন:{link}"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:3
|
||||
msgid "You will receive a link to reset your password via Email."
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি লিংক ই-মেইলের মাধ্যমে পাঠানো হয়েছে।"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:5
|
||||
msgid "Reset email send."
|
||||
msgstr ""
|
||||
msgstr "পূনঃনির্ধারণ ই-মেইল পাঠানো হয়েছে।"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:8
|
||||
msgid "Request failed!"
|
||||
msgstr ""
|
||||
msgstr "অনুরোধ ব্যর্থ !"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
|
||||
#: templates/login.php:28
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
msgstr "ব্যবহারকারি"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:14
|
||||
msgid "Request reset"
|
||||
msgstr ""
|
||||
msgstr "পূনঃনির্ধারণের জন্য অনুরোধ"
|
||||
|
||||
#: lostpassword/templates/resetpassword.php:4
|
||||
msgid "Your password was reset"
|
||||
msgstr ""
|
||||
msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করা হয়েছে"
|
||||
|
||||
#: lostpassword/templates/resetpassword.php:5
|
||||
msgid "To login page"
|
||||
msgstr ""
|
||||
msgstr "প্রবেশ পাতায়"
|
||||
|
||||
#: lostpassword/templates/resetpassword.php:8
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
msgstr "নতুন কূটশব্দ"
|
||||
|
||||
#: lostpassword/templates/resetpassword.php:11
|
||||
msgid "Reset password"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ পূনঃনির্ধারণ"
|
||||
|
||||
#: strings.php:5
|
||||
msgid "Personal"
|
||||
msgstr ""
|
||||
msgstr "ব্যক্তিগত"
|
||||
|
||||
#: strings.php:6
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
msgstr "ব্যবহারকারিবৃন্দ"
|
||||
|
||||
#: strings.php:7
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
msgstr "অ্যাপস"
|
||||
|
||||
#: strings.php:8
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
msgstr "প্রশাসক"
|
||||
|
||||
#: strings.php:9
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
msgstr "সহায়িকা"
|
||||
|
||||
#: templates/403.php:12
|
||||
msgid "Access forbidden"
|
||||
msgstr ""
|
||||
msgstr "অধিগমনের অনুমতি নেই"
|
||||
|
||||
#: templates/404.php:12
|
||||
msgid "Cloud not found"
|
||||
msgstr ""
|
||||
msgstr "ক্লাউড খুঁজে পাওয়া গেল না"
|
||||
|
||||
#: templates/edit_categories_dialog.php:4
|
||||
msgid "Edit categories"
|
||||
msgstr ""
|
||||
msgstr "ক্যাটেগরি সম্পাদনা"
|
||||
|
||||
#: templates/edit_categories_dialog.php:16
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
msgstr "যোগ কর"
|
||||
|
||||
#: templates/installation.php:23 templates/installation.php:31
|
||||
msgid "Security Warning"
|
||||
msgstr ""
|
||||
msgstr "নিরাপত্তাজনিত সতর্কতা"
|
||||
|
||||
#: templates/installation.php:24
|
||||
msgid ""
|
||||
|
@ -399,132 +400,132 @@ msgstr ""
|
|||
|
||||
#: templates/installation.php:36
|
||||
msgid "Create an <strong>admin account</strong>"
|
||||
msgstr ""
|
||||
msgstr "<strong>প্রশাসক একাউন্ট</strong> তৈরি কর"
|
||||
|
||||
#: templates/installation.php:50
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
msgstr "সুচারু"
|
||||
|
||||
#: templates/installation.php:52
|
||||
msgid "Data folder"
|
||||
msgstr ""
|
||||
msgstr "ডাটা ফোল্ডার"
|
||||
|
||||
#: templates/installation.php:59
|
||||
msgid "Configure the database"
|
||||
msgstr ""
|
||||
msgstr "ডাটাবেজ কনফিগার কর"
|
||||
|
||||
#: templates/installation.php:64 templates/installation.php:75
|
||||
#: templates/installation.php:85 templates/installation.php:95
|
||||
msgid "will be used"
|
||||
msgstr ""
|
||||
msgstr "ব্যবহৃত হবে"
|
||||
|
||||
#: templates/installation.php:107
|
||||
msgid "Database user"
|
||||
msgstr ""
|
||||
msgstr "ডাটাবেজ ব্যবহারকারি"
|
||||
|
||||
#: templates/installation.php:111
|
||||
msgid "Database password"
|
||||
msgstr ""
|
||||
msgstr "ডাটাবেজ কূটশব্দ"
|
||||
|
||||
#: templates/installation.php:115
|
||||
msgid "Database name"
|
||||
msgstr ""
|
||||
msgstr "ডাটাবেজের নাম"
|
||||
|
||||
#: templates/installation.php:123
|
||||
msgid "Database tablespace"
|
||||
msgstr ""
|
||||
msgstr "ডাটাবেজ টেবিলস্পেস"
|
||||
|
||||
#: templates/installation.php:129
|
||||
msgid "Database host"
|
||||
msgstr ""
|
||||
msgstr "ডাটাবেজ হোস্ট"
|
||||
|
||||
#: templates/installation.php:134
|
||||
msgid "Finish setup"
|
||||
msgstr ""
|
||||
msgstr "সেট-আপ সুসম্পন্ন কর"
|
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
msgstr "রবিবার"
|
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
msgstr "সোমবার"
|
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
msgstr "মঙ্গলবার"
|
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
msgstr "বুধবার"
|
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
msgstr "বৃহষ্পতিবার"
|
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
msgstr "শুক্রবার"
|
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
msgstr "শনিবার"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "January"
|
||||
msgstr ""
|
||||
msgstr "জানুয়ারি"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "February"
|
||||
msgstr ""
|
||||
msgstr "ফেব্রুয়ারি"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "March"
|
||||
msgstr ""
|
||||
msgstr "মার্চ"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "April"
|
||||
msgstr ""
|
||||
msgstr "এপ্রিল"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "May"
|
||||
msgstr ""
|
||||
msgstr "মে"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "June"
|
||||
msgstr ""
|
||||
msgstr "জুন"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "July"
|
||||
msgstr ""
|
||||
msgstr "জুলাই"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "August"
|
||||
msgstr ""
|
||||
msgstr "অগাস্ট"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "September"
|
||||
msgstr ""
|
||||
msgstr "সেপ্টেম্বর"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "October"
|
||||
msgstr ""
|
||||
msgstr "অক্টোবর"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "November"
|
||||
msgstr ""
|
||||
msgstr "নভেম্বর"
|
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18
|
||||
msgid "December"
|
||||
msgstr ""
|
||||
msgstr "ডিসেম্বর"
|
||||
|
||||
#: templates/layout.guest.php:42
|
||||
msgid "web services under your control"
|
||||
msgstr ""
|
||||
msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"
|
||||
|
||||
#: templates/layout.user.php:45
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
msgstr "প্রস্থান"
|
||||
|
||||
#: templates/login.php:10
|
||||
msgid "Automatic logon rejected!"
|
||||
|
@ -542,31 +543,31 @@ msgstr ""
|
|||
|
||||
#: templates/login.php:19
|
||||
msgid "Lost your password?"
|
||||
msgstr ""
|
||||
msgstr "আপনার কূটশব্দটি হারিয়েছেন ?"
|
||||
|
||||
#: templates/login.php:39
|
||||
msgid "remember"
|
||||
msgstr ""
|
||||
msgstr "মনে রাখ"
|
||||
|
||||
#: templates/login.php:41
|
||||
msgid "Log in"
|
||||
msgstr ""
|
||||
msgstr "প্রবেশ"
|
||||
|
||||
#: templates/logout.php:1
|
||||
msgid "You are logged out."
|
||||
msgstr ""
|
||||
msgstr "আপনি প্রস্থান করেছেন"
|
||||
|
||||
#: templates/part.pagenavi.php:3
|
||||
msgid "prev"
|
||||
msgstr ""
|
||||
msgstr "পূর্ববর্তী"
|
||||
|
||||
#: templates/part.pagenavi.php:20
|
||||
msgid "next"
|
||||
msgstr ""
|
||||
msgstr "পরবর্তী"
|
||||
|
||||
#: templates/verify.php:5
|
||||
msgid "Security Warning!"
|
||||
msgstr ""
|
||||
msgstr "নিরাপত্তাবিষয়ক সতর্কবাণী"
|
||||
|
||||
#: templates/verify.php:6
|
||||
msgid ""
|
||||
|
@ -576,4 +577,4 @@ msgstr ""
|
|||
|
||||
#: templates/verify.php:16
|
||||
msgid "Verify"
|
||||
msgstr ""
|
||||
msgstr "যাচাই কর"
|
||||
|
|
|
@ -3,13 +3,14 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Shubhra Paul <paul_shubhra@yahoo.com>, 2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-02 00:04+0100\n"
|
||||
"PO-Revision-Date: 2011-08-13 02:19+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -17,88 +18,100 @@ msgstr ""
|
|||
"Language: bn_BD\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "কোন সমস্যা নেই, ফাইল আপলোড সুসম্পন্ন হয়েছে"
|
||||
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:25
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:26
|
||||
msgid "No file was uploaded"
|
||||
msgstr ""
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "আপলোড করা ফাইলটি আংশিক আপলোড হয়েছে"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr ""
|
||||
msgid "No file was uploaded"
|
||||
msgstr "কোন ফাইল আপলোড করা হয় নি"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "অস্থায়ী ফোল্ডারটি খোয়া গিয়েছে "
|
||||
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "ডিস্কে লিখতে পারা গেল না"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
msgstr "ফাইল"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
msgstr "ভাগাভাগি বাতিল"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "মুছে ফেল"
|
||||
|
||||
#: js/fileactions.js:181
|
||||
msgid "Rename"
|
||||
msgstr ""
|
||||
msgstr "পূনঃনামকরণ"
|
||||
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr ""
|
||||
msgstr "{new_name} টি বিদ্যমান"
|
||||
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr ""
|
||||
msgstr "প্রতিস্থাপন"
|
||||
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr ""
|
||||
msgstr "নাম সুপারিশ কর"
|
||||
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr ""
|
||||
msgstr "বাতিল"
|
||||
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr ""
|
||||
msgstr "{new_name} প্রতিস্থাপন করা হয়েছে"
|
||||
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr ""
|
||||
msgstr "ক্রিয়া প্রত্যাহার"
|
||||
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr ""
|
||||
msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে"
|
||||
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr ""
|
||||
msgstr "{files} ভাগাভাগি বাতিল কর"
|
||||
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr ""
|
||||
msgstr "{files} মুছে ফেলা হয়েছে"
|
||||
|
||||
#: js/files.js:33
|
||||
msgid ""
|
||||
|
@ -116,7 +129,7 @@ msgstr ""
|
|||
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr ""
|
||||
msgstr "আপলোড করতে সমস্যা"
|
||||
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
|
@ -124,11 +137,11 @@ msgstr ""
|
|||
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
msgstr "মুলতুবি"
|
||||
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr ""
|
||||
msgstr "১ টি ফাইল আপলোড করা হচ্ছে"
|
||||
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
|
@ -136,7 +149,7 @@ msgstr ""
|
|||
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr ""
|
||||
msgstr "আপলোড বাতিল করা হয়েছে ।"
|
||||
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
|
@ -153,19 +166,19 @@ msgstr ""
|
|||
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr ""
|
||||
msgstr "স্ক্যান করার সময় সমস্যা দেখা দিয়েছে"
|
||||
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
msgstr "নাম"
|
||||
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
msgstr "আকার"
|
||||
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr ""
|
||||
msgstr "পরিবর্তিত"
|
||||
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
|
@ -185,47 +198,47 @@ msgstr ""
|
|||
|
||||
#: templates/admin.php:5
|
||||
msgid "File handling"
|
||||
msgstr ""
|
||||
msgstr "ফাইল হ্যান্ডলিং"
|
||||
|
||||
#: templates/admin.php:7
|
||||
msgid "Maximum upload size"
|
||||
msgstr ""
|
||||
msgstr "আপলোডের সর্বোচ্চ আকার"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr ""
|
||||
msgstr "সম্ভাব্য সর্বোচ্চঃ"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:14
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr ""
|
||||
msgstr "একাধিক ফাইল এবং ফোল্ডার ডাউনলোড করার ক্ষেত্রে আবশ্যক।"
|
||||
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "জিপ ডাউনলোড সক্রিয় কর"
|
||||
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr ""
|
||||
msgstr "০ এর অর্থ হলো অসীম"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr ""
|
||||
msgstr "জিপ ফাইলের জন্য সর্বোচ্চ ইনপুট"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
msgstr "সংরক্ষণ কর"
|
||||
|
||||
#: templates/index.php:7
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
msgstr "নতুন"
|
||||
|
||||
#: templates/index.php:10
|
||||
msgid "Text file"
|
||||
msgstr ""
|
||||
msgstr "টেক্সট ফাইল"
|
||||
|
||||
#: templates/index.php:12
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
msgstr "ফোল্ডার"
|
||||
|
||||
#: templates/index.php:14
|
||||
msgid "From link"
|
||||
|
@ -233,23 +246,23 @@ msgstr ""
|
|||
|
||||
#: templates/index.php:35
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
msgstr "আপলোড"
|
||||
|
||||
#: templates/index.php:43
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
msgstr "আপলোড বাতিল কর"
|
||||
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr ""
|
||||
msgstr "এখানে কোন কিছুই নেই। কিছু আপলোড করুন !"
|
||||
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
msgstr "ডাউনলোড"
|
||||
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr ""
|
||||
msgstr "আপলোডের আকার অনেক বড়"
|
||||
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
|
@ -259,8 +272,8 @@ msgstr ""
|
|||
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr ""
|
||||
msgstr "ফাইল স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।"
|
||||
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr ""
|
||||
msgstr "বর্তমান স্ক্যানিং"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-02 00:04+0100\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-08-12 22:34+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
|
@ -64,7 +64,7 @@ msgstr ""
|
|||
|
||||
#: templates/settings.php:9
|
||||
msgid "Backend"
|
||||
msgstr ""
|
||||
msgstr "প্রশাসক"
|
||||
|
||||
#: templates/settings.php:10
|
||||
msgid "Configuration"
|
||||
|
@ -92,16 +92,16 @@ msgstr ""
|
|||
|
||||
#: templates/settings.php:87
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
msgstr "গোষ্ঠী"
|
||||
|
||||
#: templates/settings.php:95
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
msgstr "ব্যবহারকারিবৃন্দ"
|
||||
|
||||
#: templates/settings.php:108 templates/settings.php:109
|
||||
#: templates/settings.php:144 templates/settings.php:145
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "মুছে ফেল"
|
||||
|
||||
#: templates/settings.php:124
|
||||
msgid "Enable User External Storage"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-02 00:04+0100\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-08-12 22:35+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
|
@ -19,11 +19,11 @@ msgstr ""
|
|||
|
||||
#: templates/authenticate.php:4
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ"
|
||||
|
||||
#: templates/authenticate.php:6
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
msgstr "পাঠাও"
|
||||
|
||||
#: templates/public.php:17
|
||||
#, php-format
|
||||
|
@ -37,7 +37,7 @@ msgstr ""
|
|||
|
||||
#: templates/public.php:22 templates/public.php:38
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
msgstr "ডাউনলোড"
|
||||
|
||||
#: templates/public.php:37
|
||||
msgid "No preview available for"
|
||||
|
@ -45,4 +45,4 @@ msgstr ""
|
|||
|
||||
#: templates/public.php:43
|
||||
msgid "web services under your control"
|
||||
msgstr ""
|
||||
msgstr "ওয়েব সেবাসমূহ এখন আপনার হাতের মুঠোয়"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-02 00:04+0100\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-08-12 22:37+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
|
@ -39,4 +39,4 @@ msgstr ""
|
|||
|
||||
#: templates/settings.php:4
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
msgstr "সক্রিয়"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-02 00:04+0100\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-07-27 22:23+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
|
@ -19,27 +19,27 @@ msgstr ""
|
|||
|
||||
#: app.php:287
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
msgstr "সহায়িকা"
|
||||
|
||||
#: app.php:294
|
||||
msgid "Personal"
|
||||
msgstr ""
|
||||
msgstr "ব্যক্তিগত"
|
||||
|
||||
#: app.php:299
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
msgstr "নিয়ামকসমূহ"
|
||||
|
||||
#: app.php:304
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
msgstr "ব্যবহারকারিবৃন্দ"
|
||||
|
||||
#: app.php:311
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
msgstr "অ্যাপস"
|
||||
|
||||
#: app.php:313
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
msgstr "প্রশাসক"
|
||||
|
||||
#: files.php:365
|
||||
msgid "ZIP download is turned off."
|
||||
|
@ -63,7 +63,7 @@ msgstr ""
|
|||
|
||||
#: json.php:39 json.php:64 json.php:77 json.php:89
|
||||
msgid "Authentication error"
|
||||
msgstr ""
|
||||
msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে"
|
||||
|
||||
#: json.php:51
|
||||
msgid "Token expired. Please reload page."
|
||||
|
@ -71,7 +71,7 @@ msgstr ""
|
|||
|
||||
#: search/provider/file.php:17 search/provider/file.php:35
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
msgstr "ফাইল"
|
||||
|
||||
#: search/provider/file.php:26 search/provider/file.php:33
|
||||
msgid "Text"
|
||||
|
@ -83,11 +83,11 @@ msgstr ""
|
|||
|
||||
#: template.php:103
|
||||
msgid "seconds ago"
|
||||
msgstr ""
|
||||
msgstr "সেকেন্ড পূর্বে"
|
||||
|
||||
#: template.php:104
|
||||
msgid "1 minute ago"
|
||||
msgstr ""
|
||||
msgstr "1 মিনিট পূর্বে"
|
||||
|
||||
#: template.php:105
|
||||
#, php-format
|
||||
|
@ -96,7 +96,7 @@ msgstr ""
|
|||
|
||||
#: template.php:106
|
||||
msgid "1 hour ago"
|
||||
msgstr ""
|
||||
msgstr "1 ঘন্টা পূর্বে"
|
||||
|
||||
#: template.php:107
|
||||
#, php-format
|
||||
|
@ -105,11 +105,11 @@ msgstr ""
|
|||
|
||||
#: template.php:108
|
||||
msgid "today"
|
||||
msgstr ""
|
||||
msgstr "আজ"
|
||||
|
||||
#: template.php:109
|
||||
msgid "yesterday"
|
||||
msgstr ""
|
||||
msgstr "গতকাল"
|
||||
|
||||
#: template.php:110
|
||||
#, php-format
|
||||
|
@ -118,7 +118,7 @@ msgstr ""
|
|||
|
||||
#: template.php:111
|
||||
msgid "last month"
|
||||
msgstr ""
|
||||
msgstr "গতমাস"
|
||||
|
||||
#: template.php:112
|
||||
#, php-format
|
||||
|
@ -127,11 +127,11 @@ msgstr ""
|
|||
|
||||
#: template.php:113
|
||||
msgid "last year"
|
||||
msgstr ""
|
||||
msgstr "গত বছর"
|
||||
|
||||
#: template.php:114
|
||||
msgid "years ago"
|
||||
msgstr ""
|
||||
msgstr "বছর পূর্বে"
|
||||
|
||||
#: updater.php:75
|
||||
#, php-format
|
||||
|
|
|
@ -3,13 +3,14 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Shubhra Paul <paul_shubhra@yahoo.com>, 2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-02 00:04+0100\n"
|
||||
"PO-Revision-Date: 2011-07-25 16:05+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2013-01-02 09:43+0000\n"
|
||||
"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -19,51 +20,51 @@ msgstr ""
|
|||
|
||||
#: ajax/apps/ocs.php:20
|
||||
msgid "Unable to load list from App Store"
|
||||
msgstr ""
|
||||
msgstr "অ্যাপস্টোর থেকে তালিকা লোড করা সম্ভব হলো না"
|
||||
|
||||
#: ajax/creategroup.php:10
|
||||
msgid "Group already exists"
|
||||
msgstr ""
|
||||
msgstr "গোষ্ঠীটি বিদ্যমান"
|
||||
|
||||
#: ajax/creategroup.php:19
|
||||
msgid "Unable to add group"
|
||||
msgstr ""
|
||||
msgstr "গোষ্ঠী যোগ করতে পারা গেল না"
|
||||
|
||||
#: ajax/enableapp.php:12
|
||||
msgid "Could not enable app. "
|
||||
msgstr ""
|
||||
msgstr "অ্যাপ সক্রিয় করা সম্ভব হলো না"
|
||||
|
||||
#: ajax/lostpassword.php:12
|
||||
msgid "Email saved"
|
||||
msgstr ""
|
||||
msgstr "ই-মেইল সংরক্ষণ করা হয়েছে"
|
||||
|
||||
#: ajax/lostpassword.php:14
|
||||
msgid "Invalid email"
|
||||
msgstr ""
|
||||
msgstr "ই-মেইলটি সঠিক নয়"
|
||||
|
||||
#: ajax/openid.php:13
|
||||
msgid "OpenID Changed"
|
||||
msgstr ""
|
||||
msgstr "OpenID পরিবর্তন করা হয়েছে"
|
||||
|
||||
#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20
|
||||
msgid "Invalid request"
|
||||
msgstr ""
|
||||
msgstr "অননুমোদিত অনুরোধ"
|
||||
|
||||
#: ajax/removegroup.php:13
|
||||
msgid "Unable to delete group"
|
||||
msgstr ""
|
||||
msgstr "গোষ্ঠী মুছে ফেলা সম্ভব হলো না"
|
||||
|
||||
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
|
||||
msgid "Authentication error"
|
||||
msgstr ""
|
||||
msgstr "নিশ্চিতকরণে সমস্যা দেখা দিয়েছে"
|
||||
|
||||
#: ajax/removeuser.php:24
|
||||
msgid "Unable to delete user"
|
||||
msgstr ""
|
||||
msgstr "ব্যবহারকারি মুছে ফেলা সম্ভব হলো না"
|
||||
|
||||
#: ajax/setlanguage.php:15
|
||||
msgid "Language changed"
|
||||
msgstr ""
|
||||
msgstr "ভাষা পরিবর্তন করা হয়েছে"
|
||||
|
||||
#: ajax/togglegroups.php:12
|
||||
msgid "Admins can't remove themself from the admin group"
|
||||
|
@ -81,39 +82,39 @@ msgstr ""
|
|||
|
||||
#: js/apps.js:28 js/apps.js:67
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
msgstr "নিষ্ক্রিয়"
|
||||
|
||||
#: js/apps.js:28 js/apps.js:55
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
msgstr "সক্রিয়"
|
||||
|
||||
#: js/personal.js:69
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
msgstr "সংরক্ষণ করা হচ্ছে...."
|
||||
|
||||
#: personal.php:42 personal.php:43
|
||||
msgid "__language_name__"
|
||||
msgstr ""
|
||||
msgstr "_ভাষার_নাম_"
|
||||
|
||||
#: templates/apps.php:10
|
||||
msgid "Add your App"
|
||||
msgstr ""
|
||||
msgstr "আপনার অ্যাপটি যোগ করুন"
|
||||
|
||||
#: templates/apps.php:11
|
||||
msgid "More Apps"
|
||||
msgstr ""
|
||||
msgstr "আরও অ্যাপ"
|
||||
|
||||
#: templates/apps.php:27
|
||||
msgid "Select an App"
|
||||
msgstr ""
|
||||
msgstr "অ্যাপ নির্বাচন করুন"
|
||||
|
||||
#: templates/apps.php:31
|
||||
msgid "See application page at apps.owncloud.com"
|
||||
msgstr ""
|
||||
msgstr "অ্যাপ্লিকেসন পাতাটি দেখুন এখানে apps.owncloud.com"
|
||||
|
||||
#: templates/apps.php:32
|
||||
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
|
||||
msgid "User Documentation"
|
||||
|
@ -129,15 +130,15 @@ msgstr ""
|
|||
|
||||
#: templates/help.php:7
|
||||
msgid "Forum"
|
||||
msgstr ""
|
||||
msgstr "ফোরাম"
|
||||
|
||||
#: templates/help.php:9
|
||||
msgid "Bugtracker"
|
||||
msgstr ""
|
||||
msgstr "বাগট্র্যাকার"
|
||||
|
||||
#: templates/help.php:11
|
||||
msgid "Commercial Support"
|
||||
msgstr ""
|
||||
msgstr "বাণিজ্যিক সাপোর্ট"
|
||||
|
||||
#: templates/personal.php:8
|
||||
#, php-format
|
||||
|
@ -146,11 +147,11 @@ msgstr ""
|
|||
|
||||
#: templates/personal.php:12
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
msgstr "ক্লায়েন্ট"
|
||||
|
||||
#: templates/personal.php:13
|
||||
msgid "Download Desktop Clients"
|
||||
msgstr ""
|
||||
msgstr "ডেস্কটপ ক্লায়েন্ট ডাউনলোড করুন"
|
||||
|
||||
#: templates/personal.php:14
|
||||
msgid "Download Android Client"
|
||||
|
@ -162,39 +163,39 @@ msgstr ""
|
|||
|
||||
#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ"
|
||||
|
||||
#: templates/personal.php:22
|
||||
msgid "Your password was changed"
|
||||
msgstr ""
|
||||
msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে"
|
||||
|
||||
#: templates/personal.php:23
|
||||
msgid "Unable to change your password"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ পরিবর্তন করা সম্ভব হলো না"
|
||||
|
||||
#: templates/personal.php:24
|
||||
msgid "Current password"
|
||||
msgstr ""
|
||||
msgstr "বর্তমান কূটশব্দ"
|
||||
|
||||
#: templates/personal.php:25
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
msgstr "নতুন কূটশব্দ"
|
||||
|
||||
#: templates/personal.php:26
|
||||
msgid "show"
|
||||
msgstr ""
|
||||
msgstr "প্রদর্শন"
|
||||
|
||||
#: templates/personal.php:27
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ পরিবর্তন কর"
|
||||
|
||||
#: templates/personal.php:33
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
msgstr "ই-মেইল"
|
||||
|
||||
#: templates/personal.php:34
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
msgstr "আপনার ই-মেইল ঠিকানা"
|
||||
|
||||
#: templates/personal.php:35
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
|
@ -202,11 +203,11 @@ msgstr ""
|
|||
|
||||
#: templates/personal.php:41 templates/personal.php:42
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
msgstr "ভাষা"
|
||||
|
||||
#: templates/personal.php:47
|
||||
msgid "Help translate"
|
||||
msgstr ""
|
||||
msgstr "অনুবাদ করতে সাহায্য করুন"
|
||||
|
||||
#: templates/personal.php:52
|
||||
msgid "WebDAV"
|
||||
|
@ -228,19 +229,19 @@ msgid ""
|
|||
"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
|
||||
"target=\"_blank\"><abbr title=\"Affero General Public "
|
||||
"License\">AGPL</abbr></a>."
|
||||
msgstr ""
|
||||
msgstr "তৈরি করেছেন <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, যার <a href=\"https://github.com/owncloud\" target=\"_blank\">উৎস কোড</a> <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr>এর অধীনে লাইেসন্সকৃত</a>."
|
||||
|
||||
#: templates/users.php:21 templates/users.php:81
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
msgstr "নাম"
|
||||
|
||||
#: templates/users.php:26 templates/users.php:83 templates/users.php:103
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
msgstr "গোষ্ঠী"
|
||||
|
||||
#: templates/users.php:32
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
msgstr "তৈরি কর"
|
||||
|
||||
#: templates/users.php:35
|
||||
msgid "Default Storage"
|
||||
|
@ -252,11 +253,11 @@ msgstr ""
|
|||
|
||||
#: templates/users.php:60 templates/users.php:153
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
msgstr "অন্যান্য"
|
||||
|
||||
#: templates/users.php:85 templates/users.php:117
|
||||
msgid "Group Admin"
|
||||
msgstr ""
|
||||
msgstr "গোষ্ঠী প্রশাসন"
|
||||
|
||||
#: templates/users.php:87
|
||||
msgid "Storage"
|
||||
|
@ -268,4 +269,4 @@ msgstr ""
|
|||
|
||||
#: templates/users.php:161
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "মুছে ফেল"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-02 00:04+0100\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-08-12 22:45+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
|
@ -60,7 +60,7 @@ msgstr ""
|
|||
|
||||
#: templates/settings.php:18
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
msgstr "কূটশব্দ"
|
||||
|
||||
#: templates/settings.php:18
|
||||
msgid "For anonymous access, leave DN and Password empty."
|
||||
|
@ -180,4 +180,4 @@ msgstr ""
|
|||
|
||||
#: templates/settings.php:39
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
msgstr "সহায়িকা"
|
||||
|
|
117
l10n/ca/files.po
117
l10n/ca/files.po
|
@ -8,13 +8,14 @@
|
|||
# <josep_tomas@hotmail.com>, 2012.
|
||||
# Josep Tomàs <jtomas.binsoft@gmail.com>, 2012.
|
||||
# <rcalvoi@yahoo.com>, 2011-2012.
|
||||
# <sacoo2@hotmail.com>, 2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-02 00:02+0100\n"
|
||||
"PO-Revision-Date: 2012-12-01 16:57+0000\n"
|
||||
"Last-Translator: Josep Tomàs <jtomas.binsoft@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 14:32+0000\n"
|
||||
"Last-Translator: aseques <sacoo2@hotmail.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -22,46 +23,58 @@ msgstr ""
|
|||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "No s'ha carregat cap fitxer. Error desconegut"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "El fitxer s'ha pujat correctament"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "El fitxer només s'ha pujat parcialment"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "El fitxer no s'ha pujat"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "S'ha perdut un fitxer temporal"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Ha fallat en escriure al disc"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr "No hi ha prou espai disponible"
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr "Directori no vàlid."
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Fitxers"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Deixa de compartir"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Suprimeix"
|
||||
|
||||
|
@ -69,39 +82,39 @@ msgstr "Suprimeix"
|
|||
msgid "Rename"
|
||||
msgstr "Reanomena"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "{new_name} ja existeix"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "substitueix"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "sugereix un nom"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "cancel·la"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr "s'ha substituït {new_name}"
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "desfés"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr "s'ha substituït {old_name} per {new_name}"
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr "no compartits {files}"
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr "eliminats {files}"
|
||||
|
||||
|
@ -111,80 +124,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos."
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "s'estan generant fitxers ZIP, pot trigar una estona."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Error en la pujada"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Pendents"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "1 fitxer pujant"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} fitxers en pujada"
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "La pujada s'ha cancel·lat."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "El nom de la carpeta no és vàlid. L'ús de \"Compartit\" està reservat per a OwnCloud"
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} fitxers escannejats"
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "error durant l'escaneig"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Mida"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Modificat"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 carpeta"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} carpetes"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 fitxer"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} fitxers"
|
||||
|
||||
|
@ -196,27 +209,27 @@ msgstr "Gestió de fitxers"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Mida màxima de pujada"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "màxim possible:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Necessari per fitxers múltiples i baixada de carpetes"
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Activa la baixada ZIP"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 és sense límit"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Mida màxima d'entrada per fitxers ZIP"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Desa"
|
||||
|
||||
|
@ -244,28 +257,28 @@ msgstr "Puja"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Cancel·la la pujada"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Res per aquí. Pugeu alguna cosa!"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Baixa"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "La pujada és massa gran"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor"
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "S'estan escanejant els fitxers, espereu"
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Actualment escanejant"
|
||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-02 00:02+0100\n"
|
||||
"PO-Revision-Date: 2012-12-01 05:15+0000\n"
|
||||
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -20,46 +20,58 @@ msgstr ""
|
|||
"Language: cs_CZ\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Soubor nebyl odeslán. Neznámá chyba"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Soubor byl odeslán úspěšně"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Soubor byl odeslán pouze částečně"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Žádný soubor nebyl odeslán"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Chybí adresář pro dočasné soubory"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Zápis na disk selhal"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Soubory"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Zrušit sdílení"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Smazat"
|
||||
|
||||
|
@ -67,39 +79,39 @@ msgstr "Smazat"
|
|||
msgid "Rename"
|
||||
msgstr "Přejmenovat"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "{new_name} již existuje"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "nahradit"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "navrhnout název"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "zrušit"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr "nahrazeno {new_name}"
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "zpět"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr "nahrazeno {new_name} s {old_name}"
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr "sdílení zrušeno pro {files}"
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr "smazáno {files}"
|
||||
|
||||
|
@ -109,80 +121,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny."
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "generuji ZIP soubor, může to nějakou dobu trvat."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Chyba odesílání"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Čekající"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "odesílá se 1 soubor"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "odesílám {count} souborů"
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Odesílání zrušeno."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Neplatný název složky. Použití názvu \"Shared\" je rezervováno pro interní úžití službou Owncloud."
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "prozkoumáno {count} souborů"
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "chyba při prohledávání"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Název"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Velikost"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Změněno"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 složka"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} složky"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 soubor"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} soubory"
|
||||
|
||||
|
@ -194,27 +206,27 @@ msgstr "Zacházení se soubory"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Maximální velikost pro odesílání"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "největší možná: "
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Potřebné pro více-souborové stahování a stahování složek."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Povolit ZIP-stahování"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 znamená bez omezení"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Maximální velikost vstupu pro ZIP soubory"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Uložit"
|
||||
|
||||
|
@ -242,28 +254,28 @@ msgstr "Odeslat"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Zrušit odesílání"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Žádný obsah. Nahrajte něco."
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Stáhnout"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "Odeslaný soubor je příliš velký"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Soubory se prohledávají, prosím čekejte."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Aktuální prohledávání"
|
||||
|
|
|
@ -15,9 +15,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-24 00:10+0100\n"
|
||||
"PO-Revision-Date: 2012-12-23 21:45+0000\n"
|
||||
"Last-Translator: cronner <cronner@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -25,37 +25,49 @@ msgstr ""
|
|||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Ingen fil blev uploadet. Ukendt fejl."
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Der er ingen fejl, filen blev uploadet med success"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Den uploadede file blev kun delvist uploadet"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Ingen fil blev uploadet"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Mangler en midlertidig mappe"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Fejl ved skrivning til disk."
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Filer"
|
||||
|
@ -199,27 +211,27 @@ msgstr "Filhåndtering"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Maksimal upload-størrelse"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "max. mulige: "
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Muliggør ZIP-download"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 er ubegrænset"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Maksimal størrelse på ZIP filer"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Gem"
|
||||
|
||||
|
|
|
@ -10,16 +10,16 @@
|
|||
# Ole Holm Frandsen <froksen@gmail.com>, 2012.
|
||||
# Pascal d'Hermilly <pascal@dhermilly.dk>, 2011.
|
||||
# <simon@rosmi.dk>, 2012.
|
||||
# <sr@ybnet.dk>, 2012.
|
||||
# <sr@ybnet.dk>, 2012-2013.
|
||||
# Thomas Tanghus <>, 2012.
|
||||
# Thomas Tanghus <thomas@tanghus.net>, 2012.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-30 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-12-29 23:05+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2013-01-02 21:06+0000\n"
|
||||
"Last-Translator: ressel <sr@ybnet.dk>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -254,11 +254,11 @@ msgstr "Ny"
|
|||
|
||||
#: templates/users.php:35
|
||||
msgid "Default Storage"
|
||||
msgstr ""
|
||||
msgstr "Standard opbevaring"
|
||||
|
||||
#: templates/users.php:42 templates/users.php:138
|
||||
msgid "Unlimited"
|
||||
msgstr ""
|
||||
msgstr "Ubegrænset"
|
||||
|
||||
#: templates/users.php:60 templates/users.php:153
|
||||
msgid "Other"
|
||||
|
@ -270,11 +270,11 @@ msgstr "Gruppe Administrator"
|
|||
|
||||
#: templates/users.php:87
|
||||
msgid "Storage"
|
||||
msgstr ""
|
||||
msgstr "Opbevaring"
|
||||
|
||||
#: templates/users.php:133
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
msgstr "Standard"
|
||||
|
||||
#: templates/users.php:161
|
||||
msgid "Delete"
|
||||
|
|
|
@ -20,13 +20,14 @@
|
|||
# <thomas.mueller@tmit.eu>, 2012.
|
||||
# Thomas Müller <>, 2012.
|
||||
# <transifex.3.mensaje@spamgourmet.com>, 2012.
|
||||
# <transifex.com@mail.simonzoellner.de>, 2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-12 00:12+0100\n"
|
||||
"PO-Revision-Date: 2012-12-11 09:27+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 21:11+0000\n"
|
||||
"Last-Translator: Linutux <transifex.com@mail.simonzoellner.de>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -34,37 +35,49 @@ msgstr ""
|
|||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Keine Datei hochgeladen. Unbekannter Fehler"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Datei fehlerfrei hochgeladen."
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Die Datei wurde nur teilweise hochgeladen."
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Es wurde keine Datei hochgeladen."
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Temporärer Ordner fehlt."
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Fehler beim Schreiben auf die Festplatte"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr "Nicht genug Speicherplatz verfügbar"
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr "Ungültiges Verzeichnis."
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Dateien"
|
||||
|
@ -127,76 +140,76 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind
|
|||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern."
|
||||
|
||||
#: js/files.js:209
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
|
||||
|
||||
#: js/files.js:209
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Fehler beim Upload"
|
||||
|
||||
#: js/files.js:226
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: js/files.js:245 js/files.js:359 js/files.js:389
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Ausstehend"
|
||||
|
||||
#: js/files.js:265
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "Eine Datei wird hoch geladen"
|
||||
|
||||
#: js/files.js:268 js/files.js:322 js/files.js:337
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} Dateien werden hochgeladen"
|
||||
|
||||
#: js/files.js:340 js/files.js:373
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Upload abgebrochen."
|
||||
|
||||
#: js/files.js:442
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen."
|
||||
|
||||
#: js/files.js:512
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
|
||||
|
||||
#: js/files.js:693
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} Dateien wurden gescannt"
|
||||
|
||||
#: js/files.js:701
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "Fehler beim Scannen"
|
||||
|
||||
#: js/files.js:774 templates/index.php:66
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: js/files.js:775 templates/index.php:77
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Größe"
|
||||
|
||||
#: js/files.js:776 templates/index.php:79
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Bearbeitet"
|
||||
|
||||
#: js/files.js:803
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 Ordner"
|
||||
|
||||
#: js/files.js:805
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} Ordner"
|
||||
|
||||
#: js/files.js:813
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 Datei"
|
||||
|
||||
#: js/files.js:815
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} Dateien"
|
||||
|
||||
|
@ -208,27 +221,27 @@ msgstr "Dateibehandlung"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Maximale Upload-Größe"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "maximal möglich:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:"
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "ZIP-Download aktivieren"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 bedeutet unbegrenzt"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Maximale Größe für ZIP-Dateien"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
# Translators:
|
||||
# <admin@s-goecker.de>, 2012.
|
||||
# <a.tangemann@web.de>, 2012.
|
||||
# <a.tangemann@web.de>, 2012-2013.
|
||||
# <blobbyjj@ymail.com>, 2012.
|
||||
# I Robot <owncloud-bot@tmit.eu>, 2012.
|
||||
# I Robot <thomas.mueller@tmit.eu>, 2012.
|
||||
|
@ -25,9 +25,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-12 00:12+0100\n"
|
||||
"PO-Revision-Date: 2012-12-11 09:27+0000\n"
|
||||
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 21:31+0000\n"
|
||||
"Last-Translator: a.tangemann <a.tangemann@web.de>\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -35,37 +35,49 @@ msgstr ""
|
|||
"Language: de_DE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Keine Datei hochgeladen. Unbekannter Fehler"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen."
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Die Datei wurde nur teilweise hochgeladen."
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Es wurde keine Datei hochgeladen."
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Der temporäre Ordner fehlt."
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Fehler beim Schreiben auf die Festplatte"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr "Nicht genug Speicher verfügbar"
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr "Ungültiges Verzeichnis."
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Dateien"
|
||||
|
@ -128,76 +140,76 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind
|
|||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern."
|
||||
|
||||
#: js/files.js:209
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist."
|
||||
|
||||
#: js/files.js:209
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Fehler beim Upload"
|
||||
|
||||
#: js/files.js:226
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#: js/files.js:245 js/files.js:359 js/files.js:389
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Ausstehend"
|
||||
|
||||
#: js/files.js:265
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "1 Datei wird hochgeladen"
|
||||
|
||||
#: js/files.js:268 js/files.js:322 js/files.js:337
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} Dateien wurden hochgeladen"
|
||||
|
||||
#: js/files.js:340 js/files.js:373
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Upload abgebrochen."
|
||||
|
||||
#: js/files.js:442
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen."
|
||||
|
||||
#: js/files.js:512
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten."
|
||||
|
||||
#: js/files.js:693
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} Dateien wurden gescannt"
|
||||
|
||||
#: js/files.js:701
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "Fehler beim Scannen"
|
||||
|
||||
#: js/files.js:774 templates/index.php:66
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: js/files.js:775 templates/index.php:77
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Größe"
|
||||
|
||||
#: js/files.js:776 templates/index.php:79
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Bearbeitet"
|
||||
|
||||
#: js/files.js:803
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 Ordner"
|
||||
|
||||
#: js/files.js:805
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} Ordner"
|
||||
|
||||
#: js/files.js:813
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 Datei"
|
||||
|
||||
#: js/files.js:815
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} Dateien"
|
||||
|
||||
|
@ -209,27 +221,27 @@ msgstr "Dateibehandlung"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Maximale Upload-Größe"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "maximal möglich:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:"
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "ZIP-Download aktivieren"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 bedeutet unbegrenzt"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Maximale Größe für ZIP-Dateien"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
|
|
|
@ -24,9 +24,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-31 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-12-30 00:21+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-03 16:09+0000\n"
|
||||
"Last-Translator: a.tangemann <a.tangemann@web.de>\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-22 00:24+0100\n"
|
||||
"PO-Revision-Date: 2012-12-21 23:03+0000\n"
|
||||
"Last-Translator: multimill <multimill@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-03 16:07+0000\n"
|
||||
"Last-Translator: a.tangemann <a.tangemann@web.de>\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -14,9 +14,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-28 00:20+0100\n"
|
||||
"PO-Revision-Date: 2012-12-27 13:50+0000\n"
|
||||
"Last-Translator: Konstantinos Tzanidis <tzanidis@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -24,37 +24,49 @@ msgstr ""
|
|||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Το αρχείο υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"MAX_FILE_SIZE\" που έχει οριστεί στην HTML φόρμα"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Το αρχείο εστάλει μόνο εν μέρει"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Κανένα αρχείο δεν στάλθηκε"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Λείπει ο προσωρινός φάκελος"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Αποτυχία εγγραφής στο δίσκο"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Αρχεία"
|
||||
|
@ -198,27 +210,27 @@ msgstr "Διαχείριση αρχείων"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Μέγιστο μέγεθος αποστολής"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "μέγιστο δυνατό:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων"
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Ενεργοποίηση κατεβάσματος ZIP"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 για απεριόριστο"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Μέγιστο μέγεθος για αρχεία ZIP"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Αποθήκευση"
|
||||
|
||||
|
|
116
l10n/eo/files.po
116
l10n/eo/files.po
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-12-02 22:06+0000\n"
|
||||
"Last-Translator: Mariano <mstreet@kde.org.ar>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -19,46 +19,58 @@ msgstr ""
|
|||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro."
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: "
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "La alŝutita dosiero nur parte alŝutiĝis"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Neniu dosiero estas alŝutita"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Mankas tempa dosierujo"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Malsukcesis skribo al disko"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Dosieroj"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Malkunhavigi"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Forigi"
|
||||
|
||||
|
@ -66,39 +78,39 @@ msgstr "Forigi"
|
|||
msgid "Rename"
|
||||
msgstr "Alinomigi"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "{new_name} jam ekzistas"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "anstataŭigi"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "sugesti nomon"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "nuligi"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr "anstataŭiĝis {new_name}"
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "malfari"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr "anstataŭiĝis {new_name} per {old_name}"
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr "malkunhaviĝis {files}"
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr "foriĝis {files}"
|
||||
|
||||
|
@ -108,80 +120,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas."
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Alŝuta eraro"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Fermi"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Traktotaj"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "1 dosiero estas alŝutata"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} dosieroj alŝutatas"
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "La alŝuto nuliĝis."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Nevalida nomo de dosierujo. Uzo de “Shared” rezervitas de Owncloud"
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} dosieroj skaniĝis"
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "eraro dum skano"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Nomo"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Grando"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Modifita"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 dosierujo"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} dosierujoj"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 dosiero"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} dosierujoj"
|
||||
|
||||
|
@ -193,27 +205,27 @@ msgstr "Dosieradministro"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Maksimuma alŝutogrando"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "maks. ebla: "
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Necesa por elŝuto de pluraj dosieroj kaj dosierujoj."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Kapabligi ZIP-elŝuton"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 signifas senlime"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Maksimuma enirgrando por ZIP-dosieroj"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Konservi"
|
||||
|
||||
|
@ -241,28 +253,28 @@ msgstr "Alŝuti"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Nuligi alŝuton"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Nenio estas ĉi tie. Alŝutu ion!"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Elŝuti"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "Elŝuto tro larĝa"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Dosieroj estas skanataj, bonvolu atendi."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Nuna skano"
|
||||
|
|
117
l10n/es/files.po
117
l10n/es/files.po
|
@ -4,6 +4,7 @@
|
|||
#
|
||||
# Translators:
|
||||
# Agustin Ferrario <>, 2012.
|
||||
# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013.
|
||||
# <devianpctek@gmail.com>, 2012.
|
||||
# Javier Llorente <javier@opensuse.org>, 2012.
|
||||
# <juanma@kde.org.ar>, 2012.
|
||||
|
@ -14,9 +15,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-02 00:02+0100\n"
|
||||
"PO-Revision-Date: 2012-12-01 20:49+0000\n"
|
||||
"Last-Translator: xsergiolpx <sergioballesterossolanas@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 13:10+0000\n"
|
||||
"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -24,46 +25,58 @@ msgstr ""
|
|||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Fallo no se subió el fichero"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "No se ha producido ningún error, el archivo se ha subido con éxito"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "El archivo que intentas subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "El archivo que intentas subir solo se subió parcialmente"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "No se ha subido ningún archivo"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Falta un directorio temporal"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "La escritura en disco ha fallado"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr "No hay suficiente espacio disponible"
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr "Directorio invalido."
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Archivos"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Dejar de compartir"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
|
@ -71,39 +84,39 @@ msgstr "Eliminar"
|
|||
msgid "Rename"
|
||||
msgstr "Renombrar"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "{new_name} ya existe"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "reemplazar"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "sugerir nombre"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "cancelar"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr "reemplazado {new_name}"
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "deshacer"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr "reemplazado {new_name} con {old_name}"
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr "{files} descompartidos"
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr "{files} eliminados"
|
||||
|
||||
|
@ -113,80 +126,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos "
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "generando un fichero ZIP, puede llevar un tiempo."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Error al subir el archivo"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "cerrrar"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Pendiente"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "subiendo 1 archivo"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "Subiendo {count} archivos"
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Subida cancelada."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Nombre de la carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud"
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} archivos escaneados"
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "error escaneando"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Modificado"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 carpeta"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} carpetas"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 archivo"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} archivos"
|
||||
|
||||
|
@ -198,27 +211,27 @@ msgstr "Tratamiento de archivos"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Tamaño máximo de subida"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "máx. posible:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Se necesita para descargas multi-archivo y de carpetas"
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Habilitar descarga en ZIP"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 es ilimitado"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Tamaño máximo para archivos ZIP de entrada"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
|
@ -246,28 +259,28 @@ msgstr "Subir"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Cancelar subida"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Aquí no hay nada. ¡Sube algo!"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "El archivo es demasiado grande"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Se están escaneando los archivos, por favor espere."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Ahora escaneando"
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-13 00:17+0100\n"
|
||||
"PO-Revision-Date: 2012-12-12 23:17+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 15:11+0000\n"
|
||||
"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -22,26 +22,26 @@ msgstr ""
|
|||
#: ajax/share.php:84
|
||||
#, php-format
|
||||
msgid "User %s shared a file with you"
|
||||
msgstr ""
|
||||
msgstr "El usurario %s compartió un archivo con vos."
|
||||
|
||||
#: ajax/share.php:86
|
||||
#, php-format
|
||||
msgid "User %s shared a folder with you"
|
||||
msgstr ""
|
||||
msgstr "El usurario %s compartió una carpeta con vos."
|
||||
|
||||
#: ajax/share.php:88
|
||||
#, php-format
|
||||
msgid ""
|
||||
"User %s shared the file \"%s\" with you. It is available for download here: "
|
||||
"%s"
|
||||
msgstr ""
|
||||
msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s"
|
||||
|
||||
#: ajax/share.php:90
|
||||
#, php-format
|
||||
msgid ""
|
||||
"User %s shared the folder \"%s\" with you. It is available for download "
|
||||
"here: %s"
|
||||
msgstr ""
|
||||
msgstr "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s"
|
||||
|
||||
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25
|
||||
msgid "Category type not provided."
|
||||
|
@ -163,8 +163,8 @@ msgid "The object type is not specified."
|
|||
msgstr "El tipo de objeto no esta especificado. "
|
||||
|
||||
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136
|
||||
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541
|
||||
#: js/share.js:553
|
||||
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554
|
||||
#: js/share.js:566
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
|
@ -176,7 +176,7 @@ msgstr "El nombre de la aplicación no esta especificado."
|
|||
msgid "The required file {file} is not installed!"
|
||||
msgstr "¡El archivo requerido {file} no está instalado!"
|
||||
|
||||
#: js/share.js:124 js/share.js:581
|
||||
#: js/share.js:124 js/share.js:594
|
||||
msgid "Error while sharing"
|
||||
msgstr "Error al compartir"
|
||||
|
||||
|
@ -204,22 +204,22 @@ msgstr "Compartir con"
|
|||
msgid "Share with link"
|
||||
msgstr "Compartir con link"
|
||||
|
||||
#: js/share.js:164
|
||||
#: js/share.js:166
|
||||
msgid "Password protect"
|
||||
msgstr "Proteger con contraseña "
|
||||
|
||||
#: js/share.js:168 templates/installation.php:42 templates/login.php:24
|
||||
#: js/share.js:168 templates/installation.php:44 templates/login.php:35
|
||||
#: templates/verify.php:13
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: js/share.js:172
|
||||
msgid "Email link to person"
|
||||
msgstr ""
|
||||
msgstr "Enviar el link por e-mail."
|
||||
|
||||
#: js/share.js:173
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
msgstr "Enviar"
|
||||
|
||||
#: js/share.js:177
|
||||
msgid "Set expiration date"
|
||||
|
@ -273,25 +273,25 @@ msgstr "borrar"
|
|||
msgid "share"
|
||||
msgstr "compartir"
|
||||
|
||||
#: js/share.js:353 js/share.js:528 js/share.js:530
|
||||
#: js/share.js:356 js/share.js:541
|
||||
msgid "Password protected"
|
||||
msgstr "Protegido por contraseña"
|
||||
|
||||
#: js/share.js:541
|
||||
#: js/share.js:554
|
||||
msgid "Error unsetting expiration date"
|
||||
msgstr "Error al remover la fecha de caducidad"
|
||||
|
||||
#: js/share.js:553
|
||||
#: js/share.js:566
|
||||
msgid "Error setting expiration date"
|
||||
msgstr "Error al asignar fecha de vencimiento"
|
||||
|
||||
#: js/share.js:568
|
||||
#: js/share.js:581
|
||||
msgid "Sending ..."
|
||||
msgstr ""
|
||||
msgstr "Enviando..."
|
||||
|
||||
#: js/share.js:579
|
||||
#: js/share.js:592
|
||||
msgid "Email sent"
|
||||
msgstr ""
|
||||
msgstr "Email enviado"
|
||||
|
||||
#: lostpassword/controller.php:47
|
||||
msgid "ownCloud password reset"
|
||||
|
@ -313,8 +313,8 @@ msgstr "Reiniciar envío de email."
|
|||
msgid "Request failed!"
|
||||
msgstr "Error en el pedido!"
|
||||
|
||||
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38
|
||||
#: templates/login.php:20
|
||||
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39
|
||||
#: templates/login.php:28
|
||||
msgid "Username"
|
||||
msgstr "Nombre de usuario"
|
||||
|
||||
|
@ -403,44 +403,44 @@ msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde
|
|||
msgid "Create an <strong>admin account</strong>"
|
||||
msgstr "Crear una <strong>cuenta de administrador</strong>"
|
||||
|
||||
#: templates/installation.php:48
|
||||
#: templates/installation.php:50
|
||||
msgid "Advanced"
|
||||
msgstr "Avanzado"
|
||||
|
||||
#: templates/installation.php:50
|
||||
#: templates/installation.php:52
|
||||
msgid "Data folder"
|
||||
msgstr "Directorio de almacenamiento"
|
||||
|
||||
#: templates/installation.php:57
|
||||
#: templates/installation.php:59
|
||||
msgid "Configure the database"
|
||||
msgstr "Configurar la base de datos"
|
||||
|
||||
#: templates/installation.php:62 templates/installation.php:73
|
||||
#: templates/installation.php:83 templates/installation.php:93
|
||||
#: templates/installation.php:64 templates/installation.php:75
|
||||
#: templates/installation.php:85 templates/installation.php:95
|
||||
msgid "will be used"
|
||||
msgstr "se utilizarán"
|
||||
|
||||
#: templates/installation.php:105
|
||||
#: templates/installation.php:107
|
||||
msgid "Database user"
|
||||
msgstr "Usuario de la base de datos"
|
||||
|
||||
#: templates/installation.php:109
|
||||
#: templates/installation.php:111
|
||||
msgid "Database password"
|
||||
msgstr "Contraseña de la base de datos"
|
||||
|
||||
#: templates/installation.php:113
|
||||
#: templates/installation.php:115
|
||||
msgid "Database name"
|
||||
msgstr "Nombre de la base de datos"
|
||||
|
||||
#: templates/installation.php:121
|
||||
#: templates/installation.php:123
|
||||
msgid "Database tablespace"
|
||||
msgstr "Espacio de tablas de la base de datos"
|
||||
|
||||
#: templates/installation.php:127
|
||||
#: templates/installation.php:129
|
||||
msgid "Database host"
|
||||
msgstr "Host de la base de datos"
|
||||
|
||||
#: templates/installation.php:132
|
||||
#: templates/installation.php:134
|
||||
msgid "Finish setup"
|
||||
msgstr "Completar la instalación"
|
||||
|
||||
|
@ -528,29 +528,29 @@ msgstr "servicios web sobre los que tenés control"
|
|||
msgid "Log out"
|
||||
msgstr "Cerrar la sesión"
|
||||
|
||||
#: templates/login.php:8
|
||||
#: templates/login.php:10
|
||||
msgid "Automatic logon rejected!"
|
||||
msgstr "¡El inicio de sesión automático fue rechazado!"
|
||||
|
||||
#: templates/login.php:9
|
||||
#: templates/login.php:11
|
||||
msgid ""
|
||||
"If you did not change your password recently, your account may be "
|
||||
"compromised!"
|
||||
msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!"
|
||||
|
||||
#: templates/login.php:10
|
||||
#: templates/login.php:13
|
||||
msgid "Please change your password to secure your account again."
|
||||
msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta."
|
||||
|
||||
#: templates/login.php:15
|
||||
#: templates/login.php:19
|
||||
msgid "Lost your password?"
|
||||
msgstr "¿Perdiste tu contraseña?"
|
||||
|
||||
#: templates/login.php:27
|
||||
#: templates/login.php:39
|
||||
msgid "remember"
|
||||
msgstr "recordame"
|
||||
|
||||
#: templates/login.php:28
|
||||
#: templates/login.php:41
|
||||
msgid "Log in"
|
||||
msgstr "Entrar"
|
||||
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012.
|
||||
# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012-2013.
|
||||
# <claudio.tessone@gmail.com>, 2012.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-11 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-12-10 00:37+0000\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 13:11+0000\n"
|
||||
"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -19,37 +19,49 @@ msgstr ""
|
|||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "El archivo no fue subido. Error desconocido"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "No se han producido errores, el archivo se ha subido con éxito"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "El archivo que intentás subir sobrepasa el tamaño definido por la variable MAX_FILE_SIZE especificada en el formulario HTML"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "El archivo que intentás subir solo se subió parcialmente"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "El archivo no fue subido"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Falta un directorio temporal"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Error al escribir en el disco"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr "No hay suficiente espacio disponible"
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr "Directorio invalido."
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Archivos"
|
||||
|
@ -112,76 +124,76 @@ msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no está
|
|||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "generando un archivo ZIP, puede llevar un tiempo."
|
||||
|
||||
#: js/files.js:209
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes"
|
||||
|
||||
#: js/files.js:209
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Error al subir el archivo"
|
||||
|
||||
#: js/files.js:226
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#: js/files.js:245 js/files.js:359 js/files.js:389
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Pendiente"
|
||||
|
||||
#: js/files.js:265
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "Subiendo 1 archivo"
|
||||
|
||||
#: js/files.js:268 js/files.js:322 js/files.js:337
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "Subiendo {count} archivos"
|
||||
|
||||
#: js/files.js:340 js/files.js:373
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "La subida fue cancelada"
|
||||
|
||||
#: js/files.js:442
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará."
|
||||
|
||||
#: js/files.js:512
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Nombre del directorio inválido. Usar \"Shared\" está reservado por ownCloud."
|
||||
|
||||
#: js/files.js:693
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} archivos escaneados"
|
||||
|
||||
#: js/files.js:701
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "error mientras se escaneaba"
|
||||
|
||||
#: js/files.js:774 templates/index.php:66
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: js/files.js:775 templates/index.php:77
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#: js/files.js:776 templates/index.php:79
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Modificado"
|
||||
|
||||
#: js/files.js:803
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 directorio"
|
||||
|
||||
#: js/files.js:805
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} directorios"
|
||||
|
||||
#: js/files.js:813
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 archivo"
|
||||
|
||||
#: js/files.js:815
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} archivos"
|
||||
|
||||
|
@ -193,27 +205,27 @@ msgstr "Tratamiento de archivos"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Tamaño máximo de subida"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "máx. posible:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Es necesario para descargas multi-archivo y de carpetas"
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Habilitar descarga en formato ZIP"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 significa ilimitado"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Tamaño máximo para archivos ZIP de entrada"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
|
|
|
@ -3,14 +3,15 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013.
|
||||
# <claudio.tessone@gmail.com>, 2012.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-15 00:11+0100\n"
|
||||
"PO-Revision-Date: 2012-12-14 23:11+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 05:53+0000\n"
|
||||
"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -23,13 +24,13 @@ msgid ""
|
|||
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may"
|
||||
" experience unexpected behaviour. Please ask your system administrator to "
|
||||
"disable one of them."
|
||||
msgstr ""
|
||||
msgstr "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos."
|
||||
|
||||
#: templates/settings.php:11
|
||||
msgid ""
|
||||
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
|
||||
" not work. Please ask your system administrator to install it."
|
||||
msgstr ""
|
||||
msgstr "<b>Advertencia:</b> El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo."
|
||||
|
||||
#: templates/settings.php:15
|
||||
msgid "Host"
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-01 00:01+0100\n"
|
||||
"PO-Revision-Date: 2012-11-30 23:02+0000\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -19,46 +19,58 @@ msgstr ""
|
|||
"Language: et_EE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Ühtegi faili ei laetud üles. Tundmatu viga"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Ühtegi viga pole, fail on üles laetud"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Fail laeti üles ainult osaliselt"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Ühtegi faili ei laetud üles"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Ajutiste failide kaust puudub"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Kettale kirjutamine ebaõnnestus"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Failid"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Lõpeta jagamine"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Kustuta"
|
||||
|
||||
|
@ -66,39 +78,39 @@ msgstr "Kustuta"
|
|||
msgid "Rename"
|
||||
msgstr "ümber"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "{new_name} on juba olemas"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "asenda"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "soovita nime"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "loobu"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr "asendatud nimega {new_name}"
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "tagasi"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr "asendas nime {old_name} nimega {new_name}"
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr "jagamata {files}"
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr "kustutatud {files}"
|
||||
|
||||
|
@ -108,80 +120,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud."
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "ZIP-faili loomine, see võib veidi aega võtta."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Üleslaadimise viga"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Sulge"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Ootel"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "1 faili üleslaadimisel"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} faili üleslaadimist"
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Üleslaadimine tühistati."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Vigane kausta nimi. Nime \"Jagatud\" kasutamine on Owncloudi poolt broneeritud "
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} faili skännitud"
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "viga skännimisel"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Suurus"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Muudetud"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 kaust"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} kausta"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 fail"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} faili"
|
||||
|
||||
|
@ -193,27 +205,27 @@ msgstr "Failide käsitlemine"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Maksimaalne üleslaadimise suurus"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "maks. võimalik: "
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Vajalik mitme faili ja kausta allalaadimiste jaoks."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Luba ZIP-ina allalaadimine"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 tähendab piiramatut"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Maksimaalne ZIP-faili sisestatava faili suurus"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Salvesta"
|
||||
|
||||
|
@ -241,28 +253,28 @@ msgstr "Lae üles"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Tühista üleslaadimine"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Siin pole midagi. Lae midagi üles!"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Lae alla"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "Üleslaadimine on liiga suur"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Faile skannitakse, palun oota"
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Praegune skannimine"
|
||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-14 00:16+0100\n"
|
||||
"PO-Revision-Date: 2012-12-13 11:48+0000\n"
|
||||
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -20,37 +20,49 @@ msgstr ""
|
|||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Ez da fitxategirik igo. Errore ezezaguna"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Ez da arazorik izan, fitxategia ongi igo da"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Ez da fitxategirik igo"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Aldi baterako karpeta falta da"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Errore bat izan da diskoan idazterakoan"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Fitxategiak"
|
||||
|
@ -113,76 +125,76 @@ msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daud
|
|||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "ZIP-fitxategia sortzen ari da, denbora har dezake"
|
||||
|
||||
#: js/files.js:209
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu"
|
||||
|
||||
#: js/files.js:209
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Igotzean errore bat suertatu da"
|
||||
|
||||
#: js/files.js:226
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Itxi"
|
||||
|
||||
#: js/files.js:245 js/files.js:359 js/files.js:389
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Zain"
|
||||
|
||||
#: js/files.js:265
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "fitxategi 1 igotzen"
|
||||
|
||||
#: js/files.js:268 js/files.js:322 js/files.js:337
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} fitxategi igotzen"
|
||||
|
||||
#: js/files.js:340 js/files.js:373
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Igoera ezeztatuta"
|
||||
|
||||
#: js/files.js:442
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du."
|
||||
|
||||
#: js/files.js:512
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Karpeta izen baliogabea. \"Shared\" karpetaren erabilera Owncloudek erreserbatuta dauka"
|
||||
|
||||
#: js/files.js:693
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} fitxategi eskaneatuta"
|
||||
|
||||
#: js/files.js:701
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "errore bat egon da eskaneatzen zen bitartean"
|
||||
|
||||
#: js/files.js:774 templates/index.php:66
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Izena"
|
||||
|
||||
#: js/files.js:775 templates/index.php:77
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Tamaina"
|
||||
|
||||
#: js/files.js:776 templates/index.php:79
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Aldatuta"
|
||||
|
||||
#: js/files.js:803
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "karpeta bat"
|
||||
|
||||
#: js/files.js:805
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} karpeta"
|
||||
|
||||
#: js/files.js:813
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "fitxategi bat"
|
||||
|
||||
#: js/files.js:815
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} fitxategi"
|
||||
|
||||
|
@ -194,27 +206,27 @@ msgstr "Fitxategien kudeaketa"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Igo daitekeen gehienezko tamaina"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "max, posiblea:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Beharrezkoa fitxategi-anitz eta karpeten deskargarako."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Gaitu ZIP-deskarga"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 mugarik gabe esan nahi du"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "ZIP fitxategien gehienezko tamaina"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Gorde"
|
||||
|
||||
|
|
114
l10n/fa/files.po
114
l10n/fa/files.po
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-01 00:01+0100\n"
|
||||
"PO-Revision-Date: 2012-11-30 23:02+0000\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -20,46 +20,58 @@ msgstr ""
|
|||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "هیچ فایلی آپلود نشد.خطای ناشناس"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "هیچ خطایی وجود ندارد فایل با موفقیت بار گذاری شد"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "حداکثر حجم مجاز برای بارگذاری از طریق HTML \nMAX_FILE_SIZE"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "مقدار کمی از فایل بارگذاری شده"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "هیچ فایلی بارگذاری نشده"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "یک پوشه موقت گم شده است"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "نوشتن بر روی دیسک سخت ناموفق بود"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "فایل ها"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "پاک کردن"
|
||||
|
||||
|
@ -67,39 +79,39 @@ msgstr "پاک کردن"
|
|||
msgid "Rename"
|
||||
msgstr "تغییرنام"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "جایگزین"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "لغو"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "بازگشت"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,80 +121,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "در حال ساخت فایل فشرده ممکن است زمان زیادی به طول بیانجامد"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "خطا در بار گذاری"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "بستن"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "در انتظار"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "بار گذاری لغو شد"
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "نام"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "اندازه"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "تغییر یافته"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr ""
|
||||
|
||||
|
@ -194,27 +206,27 @@ msgstr "اداره پرونده ها"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "حداکثر اندازه بارگزاری"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "حداکثرمقدارممکن:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "احتیاج پیدا خواهد شد برای چند پوشه و پرونده"
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "فعال سازی بارگیری پرونده های فشرده"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 نامحدود است"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "حداکثرمقدار برای بار گزاری پرونده های فشرده"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "ذخیره"
|
||||
|
||||
|
@ -242,28 +254,28 @@ msgstr "بارگذاری"
|
|||
msgid "Cancel upload"
|
||||
msgstr "متوقف کردن بار گذاری"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "اینجا هیچ چیز نیست."
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "بارگیری"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "حجم بارگذاری بسیار زیاد است"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد"
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید"
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "بازرسی کنونی"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
# Translators:
|
||||
# Jesse Jaara <jesse.jaara@gmail.com>, 2012.
|
||||
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012.
|
||||
# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012-2013.
|
||||
# Johannes Korpela <>, 2012.
|
||||
# <tehoratopato@gmail.com>, 2012.
|
||||
# <tscooter@hotmail.com>, 2012.
|
||||
|
@ -12,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-01 00:01+0100\n"
|
||||
"PO-Revision-Date: 2012-11-30 23:02+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 17:44+0000\n"
|
||||
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
|
||||
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -22,46 +22,58 @@ msgstr ""
|
|||
"Language: fi_FI\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Tiedostoa ei lähetetty. Tuntematon virhe"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Tiedoston lähetys onnistui vain osittain"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Yhtäkään tiedostoa ei lähetetty"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Väliaikaiskansiota ei ole olemassa"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Levylle kirjoitus epäonnistui"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr "Tilaa ei ole riittävästi"
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr "Virheellinen kansio."
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Tiedostot"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Peru jakaminen"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Poista"
|
||||
|
||||
|
@ -69,39 +81,39 @@ msgstr "Poista"
|
|||
msgid "Rename"
|
||||
msgstr "Nimeä uudelleen"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "{new_name} on jo olemassa"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "korvaa"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "ehdota nimeä"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "peru"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "kumoa"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr ""
|
||||
|
||||
|
@ -111,80 +123,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja."
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "luodaan ZIP-tiedostoa, tämä saattaa kestää hetken."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Lähetysvirhe."
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Sulje"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Odottaa"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Lähetys peruttu."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Koko"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Muutettu"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 kansio"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} kansiota"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 tiedosto"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} tiedostoa"
|
||||
|
||||
|
@ -196,27 +208,27 @@ msgstr "Tiedostonhallinta"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Lähetettävän tiedoston suurin sallittu koko"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "suurin mahdollinen:"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Tarvitaan useampien tiedostojen ja kansioiden latausta varten."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Ota ZIP-paketin lataaminen käytöön"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 on rajoittamaton"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "ZIP-tiedostojen enimmäiskoko"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Tallenna"
|
||||
|
||||
|
@ -244,28 +256,28 @@ msgstr "Lähetä"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Peru lähetys"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Lataa"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "Lähetettävä tiedosto on liian suuri"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Tiedostoja tarkistetaan, odota hetki."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Tämänhetkinen tutkinta"
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#
|
||||
# Translators:
|
||||
# Christophe Lherieau <skimpax@gmail.com>, 2012.
|
||||
# <dba@alternalease.fr>, 2013.
|
||||
# <fkhannouf@me.com>, 2012.
|
||||
# <florentin.lemoal@gmail.com>, 2012.
|
||||
# Guillaume Paumier <guillom.pom@gmail.com>, 2012.
|
||||
|
@ -17,9 +18,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-29 00:07+0100\n"
|
||||
"PO-Revision-Date: 2012-12-28 23:01+0000\n"
|
||||
"Last-Translator: ouafnico <nicolas@shivaserv.fr>\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-03 10:24+0000\n"
|
||||
"Last-Translator: dbasquin <dba@alternalease.fr>\n"
|
||||
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -287,7 +288,7 @@ msgstr "Protégé par un mot de passe"
|
|||
|
||||
#: js/share.js:554
|
||||
msgid "Error unsetting expiration date"
|
||||
msgstr "Un erreur est survenue pendant la suppression de la date d'expiration"
|
||||
msgstr "Une erreur est survenue pendant la suppression de la date d'expiration"
|
||||
|
||||
#: js/share.js:566
|
||||
msgid "Error setting expiration date"
|
||||
|
@ -384,7 +385,7 @@ msgstr "Ajouter"
|
|||
|
||||
#: templates/installation.php:23 templates/installation.php:31
|
||||
msgid "Security Warning"
|
||||
msgstr "Avertissement de sécutité"
|
||||
msgstr "Avertissement de sécurité"
|
||||
|
||||
#: templates/installation.php:24
|
||||
msgid ""
|
||||
|
|
119
l10n/fr/files.po
119
l10n/fr/files.po
|
@ -5,6 +5,7 @@
|
|||
# Translators:
|
||||
# Christophe Lherieau <skimpax@gmail.com>, 2012.
|
||||
# Cyril Glapa <kyriog@gmail.com>, 2012.
|
||||
# <dba@alternalease.fr>, 2013.
|
||||
# Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012.
|
||||
# <gp4004@arghh.org>, 2012.
|
||||
# <guiguidu31300@gmail.com>, 2012.
|
||||
|
@ -18,9 +19,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-05 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-12-04 10:24+0000\n"
|
||||
"Last-Translator: Robert Di Rosa <>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -28,46 +29,58 @@ msgstr ""
|
|||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Aucun fichier n'a été chargé. Erreur inconnue"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Aucune erreur, le fichier a été téléversé avec succès"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Le fichier téléversé excède la valeur de MAX_FILE_SIZE spécifiée dans le formulaire HTML"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Le fichier n'a été que partiellement téléversé"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Aucun fichier n'a été téléversé"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Il manque un répertoire temporaire"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Erreur d'écriture sur le disque"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Fichiers"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Ne plus partager"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
|
@ -75,39 +88,39 @@ msgstr "Supprimer"
|
|||
msgid "Rename"
|
||||
msgstr "Renommer"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "{new_name} existe déjà"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "remplacer"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "Suggérer un nom"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "annuler"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr "{new_name} a été replacé"
|
||||
msgstr "{new_name} a été remplacé"
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "annuler"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr "{new_name} a été remplacé par {old_name}"
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr "Fichiers non partagés : {files}"
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr "Fichiers supprimés : {files}"
|
||||
|
||||
|
@ -117,80 +130,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés."
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "Fichier ZIP en cours d'assemblage ; cela peut prendre du temps."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Erreur de chargement"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "En cours"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "1 fichier en cours de téléchargement"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} fichiers téléversés"
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Chargement annulé."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Nom de répertoire invalide. \"Shared\" est réservé par ownCloud"
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} fichiers indexés"
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "erreur lors de l'indexation"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Taille"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Modifié"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 dossier"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} dossiers"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 fichier"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} fichiers"
|
||||
|
||||
|
@ -202,27 +215,27 @@ msgstr "Gestion des fichiers"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Taille max. d'envoi"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "Max. possible :"
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Nécessaire pour le téléchargement de plusieurs fichiers et de dossiers."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Activer le téléchargement ZIP"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 est illimité"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Taille maximale pour les fichiers ZIP"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Sauvegarder"
|
||||
|
||||
|
@ -250,28 +263,28 @@ msgstr "Envoyer"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Annuler l'envoi"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Téléchargement"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "Fichier trop volumineux"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Les fichiers sont en cours d'analyse, veuillez patienter."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Analyse en cours"
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
# Translators:
|
||||
# Brice <bmaron@gmail.com>, 2012.
|
||||
# Cyril Glapa <kyriog@gmail.com>, 2012.
|
||||
# <dba@alternalease.fr>, 2013.
|
||||
# <fboulogne@april.org>, 2011.
|
||||
# <florentin.lemoal@gmail.com>, 2012.
|
||||
# <gp4004@arghh.org>, 2012.
|
||||
|
@ -21,9 +22,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-31 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-12-30 11:04+0000\n"
|
||||
"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-03 10:33+0000\n"
|
||||
"Last-Translator: dbasquin <dba@alternalease.fr>\n"
|
||||
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
116
l10n/gl/files.po
116
l10n/gl/files.po
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-12-02 21:51+0000\n"
|
||||
"Last-Translator: Miguel Branco <mgl.branco@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -19,46 +19,58 @@ msgstr ""
|
|||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "Non se subiu ningún ficheiro. Erro descoñecido."
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Non hai erros. O ficheiro enviouse correctamente"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "O ficheiro subido excede a directiva indicada polo tamaño_máximo_de_subida de php.ini"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "O ficheiro enviado foi só parcialmente enviado"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Non se enviou ningún ficheiro"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Falta un cartafol temporal"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Erro ao escribir no disco"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Ficheiros"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Deixar de compartir"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
|
@ -66,39 +78,39 @@ msgstr "Eliminar"
|
|||
msgid "Rename"
|
||||
msgstr "Mudar o nome"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "xa existe un {new_name}"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "substituír"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "suxerir nome"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "cancelar"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr "substituír {new_name}"
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "desfacer"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr "substituír {new_name} polo {old_name}"
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr "{files} sen compartir"
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr "{files} eliminados"
|
||||
|
||||
|
@ -108,80 +120,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "Nome non válido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non se permiten."
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "xerando un ficheiro ZIP, o que pode levar un anaco."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Erro na subida"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Pechar"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "Pendentes"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "1 ficheiro subíndose"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} ficheiros subíndose"
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Subida cancelada."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "A subida do ficheiro está en curso. Saír agora da páxina cancelará a subida."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "Nome de cartafol non válido. O uso de \"compartido\" está reservado exclusivamente para ownCloud"
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} ficheiros escaneados"
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "erro mentres analizaba"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Tamaño"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Modificado"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "1 cartafol"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} cartafoles"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "1 ficheiro"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} ficheiros"
|
||||
|
||||
|
@ -193,27 +205,27 @@ msgstr "Manexo de ficheiro"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Tamaño máximo de envío"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "máx. posible: "
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Precísase para a descarga de varios ficheiros e cartafoles."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Habilitar a descarga-ZIP"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 significa ilimitado"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Tamaño máximo de descarga para os ZIP"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Gardar"
|
||||
|
||||
|
@ -241,28 +253,28 @@ msgstr "Enviar"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Cancelar a subida"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Nada por aquí. Envía algo."
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "Envío demasiado grande"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Os ficheiros que trata de subir superan o tamaño máximo permitido neste servidor"
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Estanse analizando os ficheiros. Agarda."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Análise actual"
|
||||
|
|
116
l10n/he/files.po
116
l10n/he/files.po
|
@ -11,9 +11,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-02 00:02+0100\n"
|
||||
"PO-Revision-Date: 2012-12-01 06:37+0000\n"
|
||||
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-01-05 00:02+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:30+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -21,46 +21,58 @@ msgstr ""
|
|||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr "לא הועלה קובץ. טעות בלתי מזוהה."
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "לא אירעה תקלה, הקבצים הועלו בהצלחה"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:"
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "הקובץ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "הקובץ שהועלה הועלה בצורה חלקית"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "לא הועלו קבצים"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "תיקייה זמנית חסרה"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "הכתיבה לכונן נכשלה"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "קבצים"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "הסר שיתוף"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "מחיקה"
|
||||
|
||||
|
@ -68,39 +80,39 @@ msgstr "מחיקה"
|
|||
msgid "Rename"
|
||||
msgstr "שינוי שם"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr "{new_name} כבר קיים"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "החלפה"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "הצעת שם"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "ביטול"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr "{new_name} הוחלף"
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "ביטול"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr "{new_name} הוחלף ב־{old_name}"
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr "בוטל שיתופם של {files}"
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr "{files} נמחקו"
|
||||
|
||||
|
@ -110,80 +122,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'."
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "יוצר קובץ ZIP, אנא המתן."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "שגיאת העלאה"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "סגירה"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "ממתין"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "קובץ אחד נשלח"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr "{count} קבצים נשלחים"
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "ההעלאה בוטלה."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr "שם התיקייה שגוי. השימוש בשם „Shared“ שמור לטובת Owncloud"
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr "{count} קבצים נסרקו"
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "אירעה שגיאה במהלך הסריקה"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "גודל"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "זמן שינוי"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr "תיקייה אחת"
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr "{count} תיקיות"
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr "קובץ אחד"
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr "{count} קבצים"
|
||||
|
||||
|
@ -195,27 +207,27 @@ msgstr "טיפול בקבצים"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "גודל העלאה מקסימלי"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "המרבי האפשרי: "
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "נחוץ להורדה של ריבוי קבצים או תיקיות."
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "הפעלת הורדת ZIP"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 - ללא הגבלה"
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "גודל הקלט המרבי לקובצי ZIP"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "שמירה"
|
||||
|
||||
|
@ -243,28 +255,28 @@ msgstr "העלאה"
|
|||
msgid "Cancel upload"
|
||||
msgstr "ביטול ההעלאה"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "הורדה"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "העלאה גדולה מידי"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "הקבצים נסרקים, נא להמתין."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "הסריקה הנוכחית"
|
||||
|
|
114
l10n/hi/files.po
114
l10n/hi/files.po
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-01 00:01+0100\n"
|
||||
"PO-Revision-Date: 2012-11-30 23:02+0000\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -17,46 +17,58 @@ msgstr ""
|
|||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
@ -64,39 +76,39 @@ msgstr ""
|
|||
msgid "Rename"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr ""
|
||||
|
||||
|
@ -106,80 +118,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr ""
|
||||
|
||||
|
@ -191,27 +203,27 @@ msgstr ""
|
|||
msgid "Maximum upload size"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
|
@ -239,28 +251,28 @@ msgstr ""
|
|||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr ""
|
||||
|
|
114
l10n/hr/files.po
114
l10n/hr/files.po
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2012-12-01 00:01+0100\n"
|
||||
"PO-Revision-Date: 2012-11-30 23:02+0000\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -20,46 +20,58 @@ msgstr ""
|
|||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#: ajax/upload.php:20
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr "Datoteka je poslana uspješno i bez pogrešaka"
|
||||
|
||||
#: ajax/upload.php:21
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:23
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu"
|
||||
|
||||
#: ajax/upload.php:25
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Datoteka je poslana samo djelomično"
|
||||
|
||||
#: ajax/upload.php:26
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Ni jedna datoteka nije poslana"
|
||||
|
||||
#: ajax/upload.php:27
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Nedostaje privremena mapa"
|
||||
|
||||
#: ajax/upload.php:28
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Neuspjelo pisanje na disk"
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr "Datoteke"
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr "Prekini djeljenje"
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr "Briši"
|
||||
|
||||
|
@ -67,39 +79,39 @@ msgstr "Briši"
|
|||
msgid "Rename"
|
||||
msgstr "Promjeni ime"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr "zamjeni"
|
||||
|
||||
#: js/filelist.js:201
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr "predloži ime"
|
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr "odustani"
|
||||
|
||||
#: js/filelist.js:250
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr "vrati"
|
||||
|
||||
#: js/filelist.js:252
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:284
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:286
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,80 +121,80 @@ msgid ""
|
|||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:183
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr "generiranje ZIP datoteke, ovo može potrajati."
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij"
|
||||
|
||||
#: js/files.js:218
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr "Pogreška pri slanju"
|
||||
|
||||
#: js/files.js:235
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr "U tijeku"
|
||||
|
||||
#: js/files.js:274
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr "1 datoteka se učitava"
|
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:349 js/files.js:382
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr "Slanje poništeno."
|
||||
|
||||
#: js/files.js:451
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje."
|
||||
|
||||
#: js/files.js:523
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:704
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:712
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr "grečka prilikom skeniranja"
|
||||
|
||||
#: js/files.js:785 templates/index.php:65
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#: js/files.js:786 templates/index.php:76
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr "Veličina"
|
||||
|
||||
#: js/files.js:787 templates/index.php:78
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#: js/files.js:814
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:816
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:824
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:826
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr ""
|
||||
|
||||
|
@ -194,27 +206,27 @@ msgstr "datoteka za rukovanje"
|
|||
msgid "Maximum upload size"
|
||||
msgstr "Maksimalna veličina prijenosa"
|
||||
|
||||
#: templates/admin.php:9
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr "maksimalna moguća: "
|
||||
|
||||
#: templates/admin.php:12
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr "Potrebno za preuzimanje više datoteke i mape"
|
||||
|
||||
#: templates/admin.php:14
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr "Omogući ZIP-preuzimanje"
|
||||
|
||||
#: templates/admin.php:17
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr "0 je \"bez limita\""
|
||||
|
||||
#: templates/admin.php:19
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr "Maksimalna veličina za ZIP datoteke"
|
||||
|
||||
#: templates/admin.php:23
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr "Snimi"
|
||||
|
||||
|
@ -242,28 +254,28 @@ msgstr "Pošalji"
|
|||
msgid "Cancel upload"
|
||||
msgstr "Prekini upload"
|
||||
|
||||
#: templates/index.php:57
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr "Nema ničega u ovoj mapi. Pošalji nešto!"
|
||||
|
||||
#: templates/index.php:71
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr "Preuzmi"
|
||||
|
||||
#: templates/index.php:103
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr "Prijenos je preobiman"
|
||||
|
||||
#: templates/index.php:105
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju."
|
||||
|
||||
#: templates/index.php:110
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr "Datoteke se skeniraju, molimo pričekajte."
|
||||
|
||||
#: templates/index.php:113
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr "Trenutno skeniranje"
|
||||
|
|
579
l10n/hu/core.po
Normal file
579
l10n/hu/core.po
Normal 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 ""
|
278
l10n/hu/files.po
Normal file
278
l10n/hu/files.po
Normal file
|
@ -0,0 +1,278 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
|
||||
"PO-Revision-Date: 2013-01-04 12:22+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/upload.php:14
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:21
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:22
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:24
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:26
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:27
|
||||
msgid "No file was uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:28
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:29
|
||||
msgid "Failed to write to disk"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:45
|
||||
msgid "Not enough space available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/upload.php:69
|
||||
msgid "Invalid directory."
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:10
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
|
||||
#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: js/fileactions.js:181
|
||||
msgid "Rename"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "{new_name} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "replace"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:199
|
||||
msgid "suggest name"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:199 js/filelist.js:201
|
||||
msgid "cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:248
|
||||
msgid "replaced {new_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284
|
||||
msgid "undo"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:250
|
||||
msgid "replaced {new_name} with {old_name}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:282
|
||||
msgid "unshared {files}"
|
||||
msgstr ""
|
||||
|
||||
#: js/filelist.js:284
|
||||
msgid "deleted {files}"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:33
|
||||
msgid ""
|
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not "
|
||||
"allowed."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:174
|
||||
msgid "generating ZIP-file, it may take some time."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:212
|
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:212
|
||||
msgid "Upload Error"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:229
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:248 js/files.js:362 js/files.js:392
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:268
|
||||
msgid "1 file uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:271 js/files.js:325 js/files.js:340
|
||||
msgid "{count} files uploading"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:343 js/files.js:376
|
||||
msgid "Upload cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:445
|
||||
msgid ""
|
||||
"File upload is in progress. Leaving the page now will cancel the upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:515
|
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:699
|
||||
msgid "{count} files scanned"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:707
|
||||
msgid "error while scanning"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:780 templates/index.php:66
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:781 templates/index.php:77
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:782 templates/index.php:79
|
||||
msgid "Modified"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:801
|
||||
msgid "1 folder"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:803
|
||||
msgid "{count} folders"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:811
|
||||
msgid "1 file"
|
||||
msgstr ""
|
||||
|
||||
#: js/files.js:813
|
||||
msgid "{count} files"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:5
|
||||
msgid "File handling"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:7
|
||||
msgid "Maximum upload size"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:10
|
||||
msgid "max. possible: "
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:15
|
||||
msgid "Needed for multi-file and folder downloads."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:17
|
||||
msgid "Enable ZIP-download"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:20
|
||||
msgid "0 is unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:22
|
||||
msgid "Maximum input size for ZIP files"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin.php:26
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:7
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:10
|
||||
msgid "Text file"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:12
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:14
|
||||
msgid "From link"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:35
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:43
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:58
|
||||
msgid "Nothing in here. Upload something!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:72
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:104
|
||||
msgid "Upload too large"
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:106
|
||||
msgid ""
|
||||
"The files you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:111
|
||||
msgid "Files are being scanned, please wait."
|
||||
msgstr ""
|
||||
|
||||
#: templates/index.php:114
|
||||
msgid "Current scanning"
|
||||
msgstr ""
|
34
l10n/hu/files_encryption.po
Normal file
34
l10n/hu/files_encryption.po
Normal file
|
@ -0,0 +1,34 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-08-12 22:33+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:6
|
||||
msgid "Enable Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:7
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:12
|
||||
msgid "Exclude the following file types from encryption"
|
||||
msgstr ""
|
120
l10n/hu/files_external.po
Normal file
120
l10n/hu/files_external.po
Normal file
|
@ -0,0 +1,120 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-08-12 22:34+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23
|
||||
msgid "Access granted"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86
|
||||
msgid "Error configuring Dropbox storage"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40
|
||||
msgid "Grant access"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:73 js/google.js:72
|
||||
msgid "Fill out all required fields"
|
||||
msgstr ""
|
||||
|
||||
#: js/dropbox.js:85
|
||||
msgid "Please provide a valid Dropbox app key and secret."
|
||||
msgstr ""
|
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78
|
||||
msgid "Error configuring Google Drive storage"
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:434
|
||||
msgid ""
|
||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares "
|
||||
"is not possible. Please ask your system administrator to install it."
|
||||
msgstr ""
|
||||
|
||||
#: lib/config.php:435
|
||||
msgid ""
|
||||
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting"
|
||||
" of FTP shares is not possible. Please ask your system administrator to "
|
||||
"install it."
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:8 templates/settings.php:22
|
||||
msgid "Mount point"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:9
|
||||
msgid "Backend"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:11
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:12
|
||||
msgid "Applicable"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:27
|
||||
msgid "Add mount point"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:85
|
||||
msgid "None set"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:86
|
||||
msgid "All Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:87
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:95
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:108 templates/settings.php:109
|
||||
#: templates/settings.php:144 templates/settings.php:145
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:124
|
||||
msgid "Enable User External Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:125
|
||||
msgid "Allow users to mount their own external storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:136
|
||||
msgid "SSL root certificates"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:153
|
||||
msgid "Import Root Certificate"
|
||||
msgstr ""
|
48
l10n/hu/files_sharing.po
Normal file
48
l10n/hu/files_sharing.po
Normal file
|
@ -0,0 +1,48 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-08-12 22:35+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: templates/authenticate.php:4
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/authenticate.php:6
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: templates/public.php:17
|
||||
#, php-format
|
||||
msgid "%s shared the folder %s with you"
|
||||
msgstr ""
|
||||
|
||||
#: templates/public.php:19
|
||||
#, php-format
|
||||
msgid "%s shared the file %s with you"
|
||||
msgstr ""
|
||||
|
||||
#: templates/public.php:22 templates/public.php:38
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: templates/public.php:37
|
||||
msgid "No preview available for"
|
||||
msgstr ""
|
||||
|
||||
#: templates/public.php:43
|
||||
msgid "web services under your control"
|
||||
msgstr ""
|
42
l10n/hu/files_versions.po
Normal file
42
l10n/hu/files_versions.po
Normal file
|
@ -0,0 +1,42 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-08-12 22:37+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js/settings-personal.js:31 templates/settings-personal.php:7
|
||||
msgid "Expire all versions"
|
||||
msgstr ""
|
||||
|
||||
#: js/versions.js:16
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings-personal.php:4
|
||||
msgid "Versions"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings-personal.php:10
|
||||
msgid "This will delete all existing backup versions of your files"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "Files Versioning"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:4
|
||||
msgid "Enable"
|
||||
msgstr ""
|
152
l10n/hu/lib.po
Normal file
152
l10n/hu/lib.po
Normal file
|
@ -0,0 +1,152 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2012-07-27 22:23+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: app.php:287
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: app.php:294
|
||||
msgid "Personal"
|
||||
msgstr ""
|
||||
|
||||
#: app.php:299
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: app.php:304
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: app.php:311
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: app.php:313
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: files.php:365
|
||||
msgid "ZIP download is turned off."
|
||||
msgstr ""
|
||||
|
||||
#: files.php:366
|
||||
msgid "Files need to be downloaded one by one."
|
||||
msgstr ""
|
||||
|
||||
#: files.php:366 files.php:391
|
||||
msgid "Back to Files"
|
||||
msgstr ""
|
||||
|
||||
#: files.php:390
|
||||
msgid "Selected files too large to generate zip file."
|
||||
msgstr ""
|
||||
|
||||
#: json.php:28
|
||||
msgid "Application is not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: json.php:39 json.php:64 json.php:77 json.php:89
|
||||
msgid "Authentication error"
|
||||
msgstr ""
|
||||
|
||||
#: json.php:51
|
||||
msgid "Token expired. Please reload page."
|
||||
msgstr ""
|
||||
|
||||
#: search/provider/file.php:17 search/provider/file.php:35
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: search/provider/file.php:26 search/provider/file.php:33
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: search/provider/file.php:29
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:103
|
||||
msgid "seconds ago"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:104
|
||||
msgid "1 minute ago"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:105
|
||||
#, php-format
|
||||
msgid "%d minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:106
|
||||
msgid "1 hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:107
|
||||
#, php-format
|
||||
msgid "%d hours ago"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:108
|
||||
msgid "today"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:109
|
||||
msgid "yesterday"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:110
|
||||
#, php-format
|
||||
msgid "%d days ago"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:111
|
||||
msgid "last month"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:112
|
||||
#, php-format
|
||||
msgid "%d months ago"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:113
|
||||
msgid "last year"
|
||||
msgstr ""
|
||||
|
||||
#: template.php:114
|
||||
msgid "years ago"
|
||||
msgstr ""
|
||||
|
||||
#: updater.php:75
|
||||
#, php-format
|
||||
msgid "%s is available. Get <a href=\"%s\">more information</a>"
|
||||
msgstr ""
|
||||
|
||||
#: updater.php:77
|
||||
msgid "up to date"
|
||||
msgstr ""
|
||||
|
||||
#: updater.php:80
|
||||
msgid "updates check is disabled"
|
||||
msgstr ""
|
||||
|
||||
#: vcategories.php:188 vcategories.php:249
|
||||
#, php-format
|
||||
msgid "Could not find category \"%s\""
|
||||
msgstr ""
|
271
l10n/hu/settings.po
Normal file
271
l10n/hu/settings.po
Normal file
|
@ -0,0 +1,271 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-01-03 00:04+0100\n"
|
||||
"PO-Revision-Date: 2011-07-25 16:05+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/projects/p/owncloud/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ajax/apps/ocs.php:20
|
||||
msgid "Unable to load list from App Store"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/creategroup.php:10
|
||||
msgid "Group already exists"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/creategroup.php:19
|
||||
msgid "Unable to add group"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/enableapp.php:12
|
||||
msgid "Could not enable app. "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/lostpassword.php:12
|
||||
msgid "Email saved"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/lostpassword.php:14
|
||||
msgid "Invalid email"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/openid.php:13
|
||||
msgid "OpenID Changed"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20
|
||||
msgid "Invalid request"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/removegroup.php:13
|
||||
msgid "Unable to delete group"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18
|
||||
msgid "Authentication error"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/removeuser.php:24
|
||||
msgid "Unable to delete user"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/setlanguage.php:15
|
||||
msgid "Language changed"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/togglegroups.php:12
|
||||
msgid "Admins can't remove themself from the admin group"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/togglegroups.php:28
|
||||
#, php-format
|
||||
msgid "Unable to add user to group %s"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/togglegroups.php:34
|
||||
#, php-format
|
||||
msgid "Unable to remove user from group %s"
|
||||
msgstr ""
|
||||
|
||||
#: js/apps.js:28 js/apps.js:67
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: js/apps.js:28 js/apps.js:55
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: js/personal.js:69
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: personal.php:42 personal.php:43
|
||||
msgid "__language_name__"
|
||||
msgstr ""
|
||||
|
||||
#: templates/apps.php:10
|
||||
msgid "Add your App"
|
||||
msgstr ""
|
||||
|
||||
#: templates/apps.php:11
|
||||
msgid "More Apps"
|
||||
msgstr ""
|
||||
|
||||
#: templates/apps.php:27
|
||||
msgid "Select an App"
|
||||
msgstr ""
|
||||
|
||||
#: templates/apps.php:31
|
||||
msgid "See application page at apps.owncloud.com"
|
||||
msgstr ""
|
||||
|
||||
#: templates/apps.php:32
|
||||
msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/help.php:3
|
||||
msgid "User Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: templates/help.php:4
|
||||
msgid "Administrator Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: templates/help.php:6
|
||||
msgid "Online Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: templates/help.php:7
|
||||
msgid "Forum"
|
||||
msgstr ""
|
||||
|
||||
#: templates/help.php:9
|
||||
msgid "Bugtracker"
|
||||
msgstr ""
|
||||
|
||||
#: templates/help.php:11
|
||||
msgid "Commercial Support"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:8
|
||||
#, php-format
|
||||
msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:12
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:13
|
||||
msgid "Download Desktop Clients"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:14
|
||||
msgid "Download Android Client"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:15
|
||||
msgid "Download iOS Client"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:21 templates/users.php:23 templates/users.php:82
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:22
|
||||
msgid "Your password was changed"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:23
|
||||
msgid "Unable to change your password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:24
|
||||
msgid "Current password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:25
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:26
|
||||
msgid "show"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:27
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:33
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:34
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:35
|
||||
msgid "Fill in an email address to enable password recovery"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:41 templates/personal.php:42
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:47
|
||||
msgid "Help translate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:52
|
||||
msgid "WebDAV"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:54
|
||||
msgid "Use this address to connect to your ownCloud in your file manager"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:63
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: templates/personal.php:65
|
||||
msgid ""
|
||||
"Developed by the <a href=\"http://ownCloud.org/contact\" "
|
||||
"target=\"_blank\">ownCloud community</a>, the <a "
|
||||
"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is "
|
||||
"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
|
||||
"target=\"_blank\"><abbr title=\"Affero General Public "
|
||||
"License\">AGPL</abbr></a>."
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:21 templates/users.php:81
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:26 templates/users.php:83 templates/users.php:103
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:32
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:35
|
||||
msgid "Default Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:42 templates/users.php:138
|
||||
msgid "Unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:60 templates/users.php:153
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:85 templates/users.php:117
|
||||
msgid "Group Admin"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:87
|
||||
msgid "Storage"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:133
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: templates/users.php:161
|
||||
msgid "Delete"
|
||||
msgstr ""
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue