diff --git a/3rdparty/Archive/Tar.php b/3rdparty/Archive/Tar.php index 33c7d395d0978fcdd47ad4523ccf8814059d1f22..fd2d5d7d9b816ecc4a5f3caa4d358635a43e7566 100644 --- a/3rdparty/Archive/Tar.php +++ b/3rdparty/Archive/Tar.php @@ -981,7 +981,7 @@ class Archive_Tar extends PEAR // }}} // {{{ _addFile() - function _addFile($p_filename, &$p_header, $p_add_dir, $p_remove_dir) + function _addFile($p_filename, &$p_header, $p_add_dir, $p_remove_dir, $v_stored_filename=null) { if (!$this->_file) { $this->_error('Invalid file descriptor'); @@ -993,28 +993,31 @@ class Archive_Tar extends PEAR return false; } - // ----- Calculate the stored filename - $p_filename = $this->_translateWinPath($p_filename, false);; - $v_stored_filename = $p_filename; - if (strcmp($p_filename, $p_remove_dir) == 0) { - return true; - } - if ($p_remove_dir != '') { - if (substr($p_remove_dir, -1) != '/') - $p_remove_dir .= '/'; + // ownCloud change to make it possible to specify the filename to use + if(is_null($v_stored_filename)) { + // ----- Calculate the stored filename + $p_filename = $this->_translateWinPath($p_filename, false); + $v_stored_filename = $p_filename; + if (strcmp($p_filename, $p_remove_dir) == 0) { + return true; + } + if ($p_remove_dir != '') { + if (substr($p_remove_dir, -1) != '/') + $p_remove_dir .= '/'; - if (substr($p_filename, 0, strlen($p_remove_dir)) == $p_remove_dir) - $v_stored_filename = substr($p_filename, strlen($p_remove_dir)); - } - $v_stored_filename = $this->_translateWinPath($v_stored_filename); - if ($p_add_dir != '') { - if (substr($p_add_dir, -1) == '/') - $v_stored_filename = $p_add_dir.$v_stored_filename; - else - $v_stored_filename = $p_add_dir.'/'.$v_stored_filename; - } + if (substr($p_filename, 0, strlen($p_remove_dir)) == $p_remove_dir) + $v_stored_filename = substr($p_filename, strlen($p_remove_dir)); + } + $v_stored_filename = $this->_translateWinPath($v_stored_filename); + if ($p_add_dir != '') { + if (substr($p_add_dir, -1) == '/') + $v_stored_filename = $p_add_dir.$v_stored_filename; + else + $v_stored_filename = $p_add_dir.'/'.$v_stored_filename; + } - $v_stored_filename = $this->_pathReduction($v_stored_filename); + $v_stored_filename = $this->_pathReduction($v_stored_filename); + } if ($this->_isArchive($p_filename)) { if (($v_file = @fopen($p_filename, "rb")) == 0) { diff --git a/README b/README index 7c60e81a7bc9ef94f20eecfd8b7e2f1a52aa1f7a..e11ff7d10cdf1cf09b3f11b16aefa02edef47f96 100644 --- a/README +++ b/README @@ -11,3 +11,9 @@ IRC channel: https://webchat.freenode.net/?channels=owncloud Diaspora: https://joindiaspora.com/u/owncloud Identi.ca: https://identi.ca/owncloud +Important notice on translations: +Please submit translations via Transifex: +https://www.transifex.com/projects/p/owncloud/ + +For more detailed information about translations: +http://owncloud.org/dev/translation/ \ No newline at end of file diff --git a/apps/files/admin.php b/apps/files/admin.php index 547f2bd7ddba5483693a8198c08fa848749a4edc..e8b3cb0aca0715fa3a38e865164a66798e7db32d 100644 --- a/apps/files/admin.php +++ b/apps/files/admin.php @@ -63,4 +63,3 @@ $tmpl->assign( 'maxPossibleUploadSize', $maxUploadFilesizePossible); $tmpl->assign( 'allowZipDownload', $allowZipDownload); $tmpl->assign( 'maxZipInputSize', $maxZipInputSize); return $tmpl->fetchPage(); - diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f15cd514241831ae16c6821e07ae0019c5f513a8..14482c5edb5f674a0a5c64ba26926599b781ef2e 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -89,4 +89,3 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; } div.crumb a{ padding: 0.9em 0 0.7em 0; } - diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 100a236872242e88d8db3f31a5ef9e306838088e..870437ae672de8319e6711536fac3ade12951b2d 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -150,7 +150,7 @@ var FileList={ if (newname != name) { if (FileList.checkName(name, newname, false)) { newname = name; - } else { + } else { $.get(OC.filePath('files','ajax','rename.php'), { dir : $('#dir').val(), newname: newname, file: name },function(result) { if (!result || result.status == 'error') { OC.dialogs.alert(result.data.message, 'Error moving file'); @@ -158,7 +158,7 @@ var FileList={ } tr.data('renaming',false); }); - + } } tr.attr('data-file', newname); @@ -264,9 +264,9 @@ var FileList={ if (FileList.lastAction) { FileList.lastAction(); } - + FileList.prepareDeletion(files); - + if (!FileList.useUndo) { FileList.lastAction(); } else { diff --git a/apps/files/js/files.js b/apps/files/js/files.js index c5333f2fafb16d9a0b058a9f19d3faebe40c0b35..777a5ec647e0a4470f0e97c3a13beae6def394f9 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -199,7 +199,7 @@ $(document).ready(function() { $(document).bind('drop dragover', function (e) { e.preventDefault(); // prevent browser from doing anything, if file isn't dropped in dropZone }); - + if ( document.getElementById("data-upload-form") ) { $(function() { $('.file_upload_start').fileupload({ diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index fc07c9b911e3b2d191d321eb0a863fc77c42779d..d8b3cf4227c5f8bee0b63871da84b72323e922fe 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -20,13 +20,13 @@ "unshared" => "Nicht mehr freigegeben", "deleted" => "gelöscht", "generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", -"Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", "Upload Error" => "Fehler beim Upload", "Pending" => "Ausstehend", "1 file uploading" => "Eine Datei wird hoch geladen", "files uploading" => "Dateien werden hoch geladen", "Upload cancelled." => "Upload abgebrochen.", -"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", "Invalid name, '/' is not allowed." => "Ungültiger Name: \"/\" ist nicht erlaubt.", "files scanned" => "Dateien gescannt", "error while scanning" => "Fehler beim Scannen", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..2ed409d2a50fc7279589f0dd0e30bb8318f3a87a --- /dev/null +++ b/apps/files/l10n/de_DE.php @@ -0,0 +1,71 @@ +<?php $TRANSLATIONS = array( +"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 Größe der hochzuladenden Datei überschreitet die upload_max_filesize-Richtlinie in php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde", +"The uploaded file was only partially uploaded" => "Die Datei wurde nur teilweise hochgeladen.", +"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", +"Files" => "Dateien", +"Unshare" => "Nicht mehr freigeben", +"Delete" => "Löschen", +"Rename" => "Umbenennen", +"already exists" => "ist bereits vorhanden", +"replace" => "ersetzen", +"suggest name" => "Name vorschlagen", +"cancel" => "abbrechen", +"replaced" => "ersetzt", +"undo" => "rückgängig machen", +"with" => "mit", +"unshared" => "Nicht mehr freigegeben", +"deleted" => "gelöscht", +"generating ZIP-file, it may take some time." => "Erstelle ZIP-Datei. Dies kann eine Weile dauern.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", +"Upload Error" => "Fehler beim Upload", +"Pending" => "Ausstehend", +"1 file uploading" => "Eine Datei wird hoch geladen", +"files uploading" => "Dateien werden hoch geladen", +"Upload cancelled." => "Upload abgebrochen.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", +"Invalid name, '/' is not allowed." => "Ungültiger Name: \"/\" ist nicht erlaubt.", +"files scanned" => "Dateien gescannt", +"error while scanning" => "Fehler beim Scannen", +"Name" => "Name", +"Size" => "Größe", +"Modified" => "Bearbeitet", +"folder" => "Ordner", +"folders" => "Ordner", +"file" => "Datei", +"files" => "Dateien", +"seconds ago" => "Sekunden her", +"minute ago" => "Minute her", +"minutes ago" => "Minuten her", +"today" => "Heute", +"yesterday" => "Gestern", +"days ago" => "Tage her", +"last month" => "Letzten Monat", +"months ago" => "Monate her", +"last year" => "Letztes Jahr", +"years ago" => "Jahre her", +"File handling" => "Dateibehandlung", +"Maximum upload size" => "Maximale Upload-Größe", +"max. possible: " => "maximal möglich:", +"Needed for multi-file and folder downloads." => "Für Mehrfachdatei- und Ordnerdownloads benötigt:", +"Enable ZIP-download" => "ZIP-Download aktivieren", +"0 is unlimited" => "0 bedeutet unbegrenzt", +"Maximum input size for ZIP files" => "Maximale Größe für ZIP-Dateien", +"Save" => "Speichern", +"New" => "Neu", +"Text file" => "Textdatei", +"Folder" => "Ordner", +"From url" => "Von einer URL", +"Upload" => "Hochladen", +"Cancel upload" => "Upload abbrechen", +"Nothing in here. Upload something!" => "Alles leer. Bitte laden Sie etwas hoch!", +"Share" => "Teilen", +"Download" => "Herunterladen", +"Upload too large" => "Upload zu groß", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", +"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", +"Current scanning" => "Scanne" +); diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 03d44587448fc292133609ff8d21b4a89b97c92b..e9d8eb9e9af2ffc101804275f4f5189f8b7fd10e 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -9,6 +9,7 @@ "Files" => "Dosieroj", "Unshare" => "Malkunhavigi", "Delete" => "Forigi", +"Rename" => "Alinomigi", "already exists" => "jam ekzistas", "replace" => "anstataŭigi", "suggest name" => "sugesti nomon", @@ -22,9 +23,13 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", "Upload Error" => "Alŝuta eraro", "Pending" => "Traktotaj", +"1 file uploading" => "1 dosiero estas alŝutata", +"files uploading" => "dosieroj estas alŝutataj", "Upload cancelled." => "La alŝuto nuliĝis.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", "Invalid name, '/' is not allowed." => "Nevalida nomo, “/” ne estas permesata.", +"files scanned" => "dosieroj skanitaj", +"error while scanning" => "eraro dum skano", "Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", @@ -32,6 +37,16 @@ "folders" => "dosierujoj", "file" => "dosiero", "files" => "dosieroj", +"seconds ago" => "sekundoj antaŭe", +"minute ago" => "minuto antaŭe", +"minutes ago" => "minutoj antaŭe", +"today" => "hodiaŭ", +"yesterday" => "hieraŭ", +"days ago" => "tagoj antaŭe", +"last month" => "lastamonate", +"months ago" => "monatoj antaŭe", +"last year" => "lastajare", +"years ago" => "jaroj antaŭe", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", "max. possible: " => "maks. ebla: ", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index cda1d51ed2f80ec9044664f2306ef544f14439fc..f1cd054b1dfc1e474df513ae69fbd6b69e54a86a 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -7,20 +7,29 @@ "Missing a temporary folder" => "Mangler en midlertidig mappe", "Failed to write to disk" => "Klarte ikke å skrive til disk", "Files" => "Filer", +"Unshare" => "Avslutt deling", "Delete" => "Slett", +"Rename" => "Omdøp", "already exists" => "eksisterer allerede", "replace" => "erstatt", +"suggest name" => "foreslå navn", "cancel" => "avbryt", "replaced" => "erstattet", "undo" => "angre", "with" => "med", +"unshared" => "deling avsluttet", "deleted" => "slettet", "generating ZIP-file, it may take some time." => "opprettet ZIP-fil, dette kan ta litt tid", "Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes", "Upload Error" => "Opplasting feilet", "Pending" => "Ventende", +"1 file uploading" => "1 fil lastes opp", +"files uploading" => "filer lastes opp", "Upload cancelled." => "Opplasting avbrutt.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", "Invalid name, '/' is not allowed." => "Ugyldig navn, '/' er ikke tillatt. ", +"files scanned" => "Filer skannet", +"error while scanning" => "feil under skanning", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", @@ -28,6 +37,16 @@ "folders" => "mapper", "file" => "fil", "files" => "filer", +"seconds ago" => "sekunder siden", +"minute ago" => "minutt siden", +"minutes ago" => "minutter siden", +"today" => "i dag", +"yesterday" => "i går", +"days ago" => "dager siden", +"last month" => "forrige måned", +"months ago" => "måneder siden", +"last year" => "forrige år", +"years ago" => "år siden", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimum opplastingsstørrelse", "max. possible: " => "max. mulige:", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 016f7341ab73524588537ed5535c39ccb6814465..5f7f03a3d819073d4b8bd072d4328700c93bf522 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -23,6 +23,8 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", "Upload Error" => "Upload Fout", "Pending" => "Wachten", +"1 file uploading" => "1 bestand wordt ge-upload", +"files uploading" => "Bestanden aan het uploaden", "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "Invalid name, '/' is not allowed." => "Ongeldige naam, '/' is niet toegestaan.", @@ -35,6 +37,16 @@ "folders" => "mappen", "file" => "bestand", "files" => "bestanden", +"seconds ago" => "seconden geleden", +"minute ago" => "minuut geleden", +"minutes ago" => "minuten geleden", +"today" => "vandaag", +"yesterday" => "gisteren", +"days ago" => "dagen geleden", +"last month" => "vorige maand", +"months ago" => "maanden geleden", +"last year" => "vorig jaar", +"years ago" => "jaar geleden", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", "max. possible: " => "max. mogelijk: ", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index d21d6e3a6d8f685d20d843308bff9af28d3b27a6..64010937fdb24f72997980bc3a1d716d42bfe7b9 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -9,6 +9,7 @@ "Files" => "Файлы", "Unshare" => "Отменить публикацию", "Delete" => "Удалить", +"Rename" => "Переименовать", "already exists" => "уже существует", "replace" => "заменить", "suggest name" => "предложить название", @@ -22,6 +23,8 @@ "Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", "Upload Error" => "Ошибка загрузки", "Pending" => "Ожидание", +"1 file uploading" => "загружается 1 файл", +"files uploading" => "загружаются файлы", "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", "Invalid name, '/' is not allowed." => "Неверное имя, '/' не допускается.", @@ -32,6 +35,10 @@ "folders" => "папки", "file" => "файл", "files" => "файлы", +"minute ago" => "минуту назад", +"today" => "сегодня", +"yesterday" => "вчера", +"last month" => "в прошлом месяце", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", "max. possible: " => "макс. возможно: ", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php new file mode 100644 index 0000000000000000000000000000000000000000..97a125faff188e03e0b00fe420f549ca6704788a --- /dev/null +++ b/apps/files/l10n/si_LK.php @@ -0,0 +1,18 @@ +<?php $TRANSLATIONS = array( +"There is no error, the file uploaded with success" => "නිවැරදි ව ගොනුව උඩුගත කෙරිනි", +"The uploaded file was only partially uploaded" => "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය", +"No file was uploaded" => "කිසිදු ගොනවක් උඩුගත නොවිනි", +"Files" => "ගොනු", +"Name" => "නම", +"Size" => "ප්රමාණය", +"folder" => "ෆෝල්ඩරය", +"folders" => "ෆෝල්ඩර", +"file" => "ගොනුව", +"files" => "ගොනු", +"Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්රමාණය", +"New" => "නව", +"Folder" => "ෆෝල්ඩරය", +"Upload" => "උඩුගත කිරීම", +"Nothing in here. Upload something!" => "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න", +"Download" => "බාගත කිරීම" +); diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 7f8c35650dd6b640c3cfc1701e3300851875c36d..787e903ac8e2d1b8b563024c5d0b460d37eb3064 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -21,11 +21,11 @@ "deleted" => "zmazané", "generating ZIP-file, it may take some time." => "generujem ZIP-súbor, môže to chvíľu trvať.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov.", -"Upload Error" => "Chyba nahrávania", +"Upload Error" => "Chyba odosielania", "Pending" => "Čaká sa", "1 file uploading" => "1 súbor sa posiela ", "files uploading" => "súbory sa posielajú", -"Upload cancelled." => "Nahrávanie zrušené", +"Upload cancelled." => "Odosielanie zrušené", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", "Invalid name, '/' is not allowed." => "Chybný názov, \"/\" nie je povolené", "files scanned" => "skontrolovaných súborov", @@ -59,13 +59,13 @@ "Text file" => "Textový súbor", "Folder" => "Priečinok", "From url" => "Z url", -"Upload" => "Nahrať", +"Upload" => "Odoslať", "Cancel upload" => "Zrušiť odosielanie", "Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!", "Share" => "Zdielať", "Download" => "Stiahnuť", "Upload too large" => "Odosielaný súbor je príliš veľký", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory ktoré sa snažíte nahrať presahujú maximálnu veľkosť pre nahratie súborov na tento server.", -"Files are being scanned, please wait." => "Súbory sa práve prehľadávajú, prosím čakajte.", +"Files are being scanned, please wait." => "Čakajte, súbory sú prehľadávané..", "Current scanning" => "Práve prehliadané" ); diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index d6593022d8b7ae7d76c26daf8a70b1d5e8b4fa47..a519c1a2ba1892d2921393643d04e5e0dc35804d 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -9,6 +9,7 @@ "Files" => "Tập tin", "Unshare" => "Không chia sẽ", "Delete" => "Xóa", +"Rename" => "Sửa tên", "already exists" => "đã tồn tại", "replace" => "thay thế", "suggest name" => "tên gợi ý", @@ -16,14 +17,19 @@ "replaced" => "đã được thay thế", "undo" => "lùi lại", "with" => "với", +"unshared" => "gỡ chia sẻ", "deleted" => "đã xóa", "generating ZIP-file, it may take some time." => "Tạo tập tinh ZIP, điều này có thể mất một ít thời gian", "Unable to upload your file as it is a directory or has 0 bytes" => "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte", "Upload Error" => "Tải lên lỗi", "Pending" => "Chờ", +"1 file uploading" => "1 tệp tin đang được tải lên", +"files uploading" => "tệp tin đang được tải lên", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", "Invalid name, '/' is not allowed." => "Tên không hợp lệ ,không được phép dùng '/'", +"files scanned" => "tệp tin đã quét", +"error while scanning" => "lỗi trong khi quét", "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", @@ -31,8 +37,19 @@ "folders" => "folders", "file" => "file", "files" => "files", +"seconds ago" => "giây trước", +"minute ago" => "một phút trước", +"minutes ago" => "phút trước", +"today" => "hôm nay", +"yesterday" => "hôm qua", +"days ago" => "ngày trước", +"last month" => "tháng trước", +"months ago" => "tháng trước", +"last year" => "năm trước", +"years ago" => "năm trước", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", +"max. possible: " => "tối đa cho phép", "Needed for multi-file and folder downloads." => "Cần thiết cho tải nhiều tập tin và thư mục.", "Enable ZIP-download" => "Cho phép ZIP-download", "0 is unlimited" => "0 là không giới hạn", diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 1329b5dc5cd0a5cbab338baf453188e7b8c45964..0f5b839b180a52c65aa3b258c2ef7c84872b38cd 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -6,7 +6,7 @@ } ?> </script> - + <?php foreach($_['files'] as $file): $simple_file_size = OCP\simple_file_size($file['size']); $simple_size_color = intval(200-$file['size']/(1024*1024)*2); // the bigger the file, the darker the shade of grey; megabytes*2 diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..d486a82322bb7f4c1e6f73ce9976d2ada7d60747 --- /dev/null +++ b/apps/files_encryption/l10n/de_DE.php @@ -0,0 +1,6 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "Verschlüsselung", +"Exclude the following file types from encryption" => "Die folgenden Dateitypen von der Verschlüsselung ausnehmen", +"None" => "Keine", +"Enable Encryption" => "Verschlüsselung aktivieren" +); diff --git a/apps/files_external/ajax/removeRootCertificate.php b/apps/files_external/ajax/removeRootCertificate.php index 6871b0fd1d4eaea09c6bd9e0110fd2e0d98cd5da..664b3937e97bd6f84c04d27f3de36f6097fb0083 100644 --- a/apps/files_external/ajax/removeRootCertificate.php +++ b/apps/files_external/ajax/removeRootCertificate.php @@ -11,4 +11,3 @@ if ( $view->file_exists($file) ) { $view->unlink($file); OC_Mount_Config::createCertificateBundle(); } - diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..5d57e5e4598129c1e3193045366bbb249a73abfa --- /dev/null +++ b/apps/files_external/l10n/de_DE.php @@ -0,0 +1,24 @@ +<?php $TRANSLATIONS = array( +"Access granted" => "Zugriff gestattet", +"Error configuring Dropbox storage" => "Fehler beim Einrichten von Dropbox", +"Grant access" => "Zugriff gestatten", +"Fill out all required fields" => "Bitte alle notwendigen Felder füllen", +"Please provide a valid Dropbox app key and secret." => "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein.", +"Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive", +"External Storage" => "Externer Speicher", +"Mount point" => "Mount-Point", +"Backend" => "Backend", +"Configuration" => "Konfiguration", +"Options" => "Optionen", +"Applicable" => "Zutreffend", +"Add mount point" => "Mount-Point hinzufügen", +"None set" => "Nicht definiert", +"All Users" => "Alle Benutzer", +"Groups" => "Gruppen", +"Users" => "Benutzer", +"Delete" => "Löschen", +"Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", +"Allow users to mount their own external storage" => "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden", +"SSL root certificates" => "SSL-Root-Zertifikate", +"Import Root Certificate" => "Root-Zertifikate importieren" +); diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index c518fca149ee93dfa77ac917e781368e644227aa..a1dae9d488890c17d601c82000e185c87fecd670 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -1,4 +1,10 @@ <?php $TRANSLATIONS = array( +"Access granted" => "Προσβαση παρασχέθηκε", +"Error configuring Dropbox storage" => "Σφάλμα ρυθμίζωντας αποθήκευση Dropbox ", +"Grant access" => "Παροχή πρόσβασης", +"Fill out all required fields" => "Συμπληρώστε όλα τα απαιτούμενα πεδία", +"Please provide a valid Dropbox app key and secret." => "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό.", +"Error configuring Google Drive storage" => "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive ", "External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο", "Mount point" => "Σημείο προσάρτησης", "Backend" => "Σύστημα υποστήριξης", @@ -7,7 +13,7 @@ "Applicable" => "Εφαρμόσιμο", "Add mount point" => "Προσθήκη σημείου προσάρτησης", "None set" => "Κανένα επιλεγμένο", -"All Users" => "Όλοι οι χρήστες", +"All Users" => "Όλοι οι Χρήστες", "Groups" => "Ομάδες", "Users" => "Χρήστες", "Delete" => "Διαγραφή", diff --git a/apps/files_external/l10n/eo.php b/apps/files_external/l10n/eo.php index 90819e3352cbde401555a375d3afb68e118d7cc0..97453aafedb92eabac851765877f9cd71cc37799 100644 --- a/apps/files_external/l10n/eo.php +++ b/apps/files_external/l10n/eo.php @@ -1,4 +1,10 @@ <?php $TRANSLATIONS = array( +"Access granted" => "Alirpermeso donita", +"Error configuring Dropbox storage" => "Eraro dum agordado de la memorservo Dropbox", +"Grant access" => "Doni alirpermeson", +"Fill out all required fields" => "Plenigu ĉiujn neprajn kampojn", +"Please provide a valid Dropbox app key and secret." => "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan.", +"Error configuring Google Drive storage" => "Eraro dum agordado de la memorservo Google Drive", "External Storage" => "Malena memorilo", "Mount point" => "Surmetingo", "Backend" => "Motoro", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 04257a8014480abcfefab4a8b00805f61436a47e..04d5e3c7ee42d4f23887635c20ac88c255d2a27b 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "Access granted" => "Prístup povolený", +"Error configuring Dropbox storage" => "Chyba pri konfigurácii úložiska Dropbox", "Grant access" => "Povoliť prístup", "Fill out all required fields" => "Vyplňte všetky vyžadované kolónky", "Please provide a valid Dropbox app key and secret." => "Zadajte platný kľúč aplikácie a heslo Dropbox", diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 3ba86cf148bcdcaf9d05aea389dca0a2cd876284..c68369c72b2e3e804c0a1b1d3eca6d6b7848c651 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -120,10 +120,10 @@ class OC_Mount_Config { $dir = $dir.'/'.$pathPart; if ( !$view->file_exists($dir)) { $view->mkdir($dir); - } + } } } - + /** * Add a mount point to the filesystem @@ -160,7 +160,7 @@ class OC_Mount_Config { self::addMountPointDirectory($view, $path); } break; - case 'group' : + case 'group' : $groupMembers = OC_Group::usersInGroups(array($applicable)); foreach ( $groupMembers as $user ) { $path = $user.'/files/'.ltrim($mountPoint, '/'); diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..c2fec2154516581bba078f51bca092d4f046c653 --- /dev/null +++ b/apps/files_sharing/l10n/de_DE.php @@ -0,0 +1,9 @@ +<?php $TRANSLATIONS = array( +"Password" => "Passwort", +"Submit" => "Absenden", +"%s shared the folder %s with you" => "%s hat den Ordner %s für dich freigegeben", +"%s shared the file %s with you" => "%s hat die Datei %s für dich freigegeben", +"Download" => "Download", +"No preview available for" => "Es ist keine Vorschau verfügbar für", +"web services under your control" => "Web-Services unter Deiner Kontrolle" +); diff --git a/apps/files_sharing/l10n/eo.php b/apps/files_sharing/l10n/eo.php index e71715f0f1f06e47e0f1d0fa200f5e660ace03f5..c598d3aa2c4ac84a3bde24f6ce48d28c377fbb36 100644 --- a/apps/files_sharing/l10n/eo.php +++ b/apps/files_sharing/l10n/eo.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Password" => "Pasvorto", "Submit" => "Sendi", +"%s shared the folder %s with you" => "%s kunhavigis la dosierujon %s kun vi", +"%s shared the file %s with you" => "%s kunhavigis la dosieron %s kun vi", "Download" => "Elŝuti", "No preview available for" => "Ne haveblas antaŭvido por", "web services under your control" => "TTT-servoj regataj de vi" diff --git a/apps/files_sharing/lib/share/folder.php b/apps/files_sharing/lib/share/folder.php index e29e9b7e002fba685424a6b7d1a2f8a7f572314c..bddda99f8bbac0c6e21d0e899b0d0264e687218a 100644 --- a/apps/files_sharing/lib/share/folder.php +++ b/apps/files_sharing/lib/share/folder.php @@ -59,7 +59,7 @@ class OC_Share_Backend_Folder extends OC_Share_Backend_File implements OCP\Share $parents = array(); while ($file = $result->fetchRow()) { $children[] = array('source' => $file['id'], 'file_path' => $file['name']); - // If a child folder is found look inside it + // If a child folder is found look inside it if ($file['mimetype'] == 'httpd/unix-directory') { $parents[] = $file['id']; } diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 96d0f0de05c948ca1d0ef1076f6eadbcffc0235c..a71d9d8d9cd94cabaa8468c847d29b1587e340ee 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -24,12 +24,12 @@ if (isset($_GET['token'])) { if (isset($_GET['file']) || isset($_GET['dir'])) { if (isset($_GET['dir'])) { $type = 'folder'; - $path = $_GET['dir']; + $path = OC_Filesystem::normalizePath($_GET['dir']); $baseDir = $path; $dir = $baseDir; } else { $type = 'file'; - $path = $_GET['file']; + $path = OC_Filesystem::normalizePath($_GET['file']); } $uidOwner = substr($path, 1, strpos($path, '/', 1) - 1); if (OCP\User::userExists($uidOwner)) { @@ -45,10 +45,10 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { } if (isset($linkItem['share_with'])) { // Check password - if (isset($_GET['file'])) { - $url = OCP\Util::linkToPublic('files').'&file='.$_GET['file']; - } else { - $url = OCP\Util::linkToPublic('files').'&dir='.$_GET['dir']; + if (isset($_GET['file'])) { + $url = OCP\Util::linkToPublic('files').'&file='.$_GET['file']; + } else { + $url = OCP\Util::linkToPublic('files').'&dir='.$_GET['dir']; } if (isset($_POST['password'])) { $password = $_POST['password']; @@ -98,7 +98,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { } else { // download a single shared file OC_Files::get("", $path, $_SERVER['REQUEST_METHOD'] == 'HEAD' ? true : false); } - + } else { OCP\Util::addStyle('files_sharing', 'public'); OCP\Util::addScript('files_sharing', 'public'); @@ -134,7 +134,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { if ($i != '') { if ($i != $baseDir) { $pathtohere .= '/'.$i; - } + } if ( strlen($pathtohere) < strlen($_GET['dir'])) { continue; } diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index 07c5655560e0dbf28991b025f49c2574490ca168..426d521df828134f55f9fc3ee805dc6b60b27f65 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -68,7 +68,7 @@ function createVersionsDropdown(filename, files) { data: { source: files }, async: false, success: function( versions ) { - + if (versions) { $.each( versions, function(index, row ) { addVersion( row ); @@ -128,7 +128,7 @@ function createVersionsDropdown(filename, files) { version.appendTo('#found_versions'); } - + $('tr').filterAttr('data-file',filename).addClass('mouseOver'); $('#dropdown').show('blind'); @@ -144,6 +144,6 @@ $(this).click( }); } - + } ); diff --git a/apps/files_versions/l10n/de_DE.php b/apps/files_versions/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..092bbfbff70eeccf83fb66f5a160c35aa47fff24 --- /dev/null +++ b/apps/files_versions/l10n/de_DE.php @@ -0,0 +1,8 @@ +<?php $TRANSLATIONS = array( +"Expire all versions" => "Alle Versionen löschen", +"History" => "Historie", +"Versions" => "Versionen", +"This will delete all existing backup versions of your files" => "Dies löscht alle vorhandenen Sicherungsversionen Deiner Dateien.", +"Files Versioning" => "Dateiversionierung", +"Enable" => "Aktivieren" +); diff --git a/apps/files_versions/l10n/eo.php b/apps/files_versions/l10n/eo.php index d0f89c576d458056ef965838114dd19b7046c22a..0c3835373ef19f659619a00cd5a015d2283b74c7 100644 --- a/apps/files_versions/l10n/eo.php +++ b/apps/files_versions/l10n/eo.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Eksvalidigi ĉiujn eldonojn", +"History" => "Historio", "Versions" => "Eldonoj", -"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj" +"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj", +"Files Versioning" => "Dosiereldonigo", +"Enable" => "Kapabligi" ); diff --git a/apps/files_versions/l10n/vi.php b/apps/files_versions/l10n/vi.php index 992c0751d0aa79ba506ded52cdb286b30e9e98da..a92e85a017aa5467b01c00c039631e7c398af47a 100644 --- a/apps/files_versions/l10n/vi.php +++ b/apps/files_versions/l10n/vi.php @@ -1,5 +1,8 @@ <?php $TRANSLATIONS = array( "Expire all versions" => "Hết hạn tất cả các phiên bản", +"History" => "Lịch sử", "Versions" => "Phiên bản", -"This will delete all existing backup versions of your files" => "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có " +"This will delete all existing backup versions of your files" => "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có ", +"Files Versioning" => "Phiên bản tệp tin", +"Enable" => "Kích hoạtLịch sử" ); diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index fdbe374e74a732604c6cf72781e0190e7f14dbc2..52a10f77d7ef45c0ab92082ce6a2190ef894deb8 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -58,8 +58,10 @@ class Storage { public function store($filename) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { list($uid, $filename) = self::getUidAndFilename($filename); - $files_view = new \OC\Files\View('/'.$uid.'/files'); - $users_view = new \OC\Files\View('/'.$uid); + + $userHome = \OC_User::getHome($uid); + $files_view = new \OC\Files\View($userHome.'/files'); + $users_view = new \OC\Files\View($userHome); //check if source file already exist as version to avoid recursions. // todo does this check work? @@ -94,7 +96,7 @@ class Storage { // check mininterval if the file is being modified by the owner (all shared files should be versioned despite mininterval) if ($uid == \OCP\User::getUser()) { - $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); + $versions_fileview = new \OC\Files\View($userHome.'/files_versions'); $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); $matches=glob($versionsFolderName.'/'.$filename.'.v*'); sort($matches); @@ -106,7 +108,7 @@ class Storage { // create all parent folders - $info=pathinfo($filename); + $info=pathinfo($filename); if(!file_exists($versionsFolderName.'/'.$info['dirname'])) { mkdir($versionsFolderName.'/'.$info['dirname'],0750,true); } @@ -127,7 +129,7 @@ class Storage { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { list($uid, $filename) = self::getUidAndFilename($filename); - $users_view = new \OC\Files\View('/'.$uid); + $users_view = new \OC\Files\View(\OC_User::getHome($uid)); // rollback if( @$users_view->copy('files_versions'.$filename.'.v'.$revision, 'files'.$filename) ) { @@ -150,7 +152,7 @@ class Storage { public static function isversioned($filename) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { list($uid, $filename) = self::getUidAndFilename($filename); - $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); + $versions_fileview = new \OC\Files\View(\OC_User::getHome($uid).'/files_versions'); $versionsFolderName=\OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); @@ -178,7 +180,7 @@ class Storage { if( \OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true' ) { list($uid, $filename) = self::getUidAndFilename($filename); - $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); + $versions_fileview = new \OC\Files\View(\OC_User::getHome($uid).'/files_versions'); $versionsFolderName = \OCP\Config::getSystemValue('datadirectory'). $versions_fileview->getAbsolutePath(''); $versions = array(); @@ -190,7 +192,7 @@ class Storage { $i = 0; - $files_view = new \OC\Files\View('/'.$uid.'/files'); + $files_view = new \OC\Files\View(\OC_User::getHome($uid).'/files'); $local_file = $files_view->getLocalFile($filename); foreach( $matches as $ma ) { diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..97debcbab60671dc692872ae3c024198642af0cc --- /dev/null +++ b/apps/user_ldap/l10n/de_DE.php @@ -0,0 +1,37 @@ +<?php $TRANSLATIONS = array( +"Host" => "Host", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://", +"Base DN" => "Basis-DN", +"You can specify Base DN for users and groups in the Advanced tab" => "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren", +"User DN" => "Benutzer-DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer.", +"Password" => "Passwort", +"For anonymous access, leave DN and Password empty." => "Lasse die Felder von DN und Passwort für anonymen Zugang leer.", +"User Login Filter" => "Benutzer-Login-Filter", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch.", +"use %%uid placeholder, e.g. \"uid=%%uid\"" => "verwende %%uid Platzhalter, z. B. \"uid=%%uid\"", +"User List Filter" => "Benutzer-Filter-Liste", +"Defines the filter to apply, when retrieving users." => "Definiert den Filter für die Anfrage der Benutzer.", +"without any placeholder, e.g. \"objectClass=person\"." => "ohne Platzhalter, z.B.: \"objectClass=person\"", +"Group Filter" => "Gruppen-Filter", +"Defines the filter to apply, when retrieving groups." => "Definiert den Filter für die Anfrage der Gruppen.", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"", +"Port" => "Port", +"Base User Tree" => "Basis-Benutzerbaum", +"Base Group Tree" => "Basis-Gruppenbaum", +"Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", +"Use TLS" => "Nutze TLS", +"Do not use it for SSL connections, it will fail." => "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen.", +"Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", +"Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", +"Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", +"User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", +"The LDAP attribute to use to generate the user`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. ", +"Group Display Name Field" => "Feld für den Anzeigenamen der Gruppe", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. ", +"in bytes" => "in Bytes", +"in seconds. A change empties the cache." => "in Sekunden. Eine Änderung leert den Cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein.", +"Help" => "Hilfe" +); diff --git a/apps/user_ldap/l10n/eo.php b/apps/user_ldap/l10n/eo.php index 683c60ef840e5f6404b1983c0831b993008f91d0..ef8aff8a39092171a12e83ab913b37e339ca2438 100644 --- a/apps/user_ldap/l10n/eo.php +++ b/apps/user_ldap/l10n/eo.php @@ -22,6 +22,7 @@ "Do not use it for SSL connections, it will fail." => "Ne uzu ĝin por SSL-konektoj, ĝi malsukcesos.", "Case insensitve LDAP server (Windows)" => "LDAP-servilo blinda je litergrandeco (Vindozo)", "Turn off SSL certificate validation." => "Malkapabligi validkontrolon de SSL-atestiloj.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se la konekto nur funkcias kun ĉi tiu malnepro, enportu la SSL-atestilo de la LDAP-servilo en via ownCloud-servilo.", "Not recommended, use for testing only." => "Ne rekomendata, uzu ĝin nur por testoj.", "User Display Name Field" => "Kampo de vidignomo de uzanto", "The LDAP attribute to use to generate the user`s ownCloud name." => "La atributo de LDAP uzota por generi la ownCloud-an nomon de la uzanto.", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index bf32a295371ed19fd4ab62478f661cb35f8b7e12..a85b2a6f1b4635f25966e277a8f38588445301d7 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -1,10 +1,18 @@ <?php $TRANSLATIONS = array( "Host" => "Anfitrião", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://", +"Base DN" => "DN base", "You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar o ND Base para utilizadores e grupos no separador Avançado", +"User DN" => "DN do utilizador", "Password" => "Palavra-passe", +"For anonymous access, leave DN and Password empty." => "Para acesso anónimo, deixe DN e a Palavra-passe vazios.", "Group Filter" => "Filtrar por grupo", "Port" => "Porto", +"Use TLS" => "Usar TLS", +"Do not use it for SSL connections, it will fail." => "Não use para ligações SSL, irá falhar.", +"Turn off SSL certificate validation." => "Desligar a validação de certificado SSL.", "in bytes" => "em bytes", "in seconds. A change empties the cache." => "em segundos. Uma alteração esvazia a cache.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.", "Help" => "Ajuda" ); diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php index 8433f39e83cca1bae3875ae51f0010998519e309..d5adb9fffd3dd14930412a99646d053f7dbb2e90 100644 --- a/apps/user_ldap/l10n/ru_RU.php +++ b/apps/user_ldap/l10n/ru_RU.php @@ -4,23 +4,31 @@ "Base DN" => "База DN", "You can specify Base DN for users and groups in the Advanced tab" => "Вы можете задать Base DN для пользователей и групп во вкладке «Дополнительно»", "User DN" => "DN пользователя", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN клиентского пользователя, с которого должна осуществляться привязка, например, uid=agent,dc=example,dc=com. Для анонимного доступа оставьте поля DN и Пароль пустыми.", "Password" => "Пароль", "For anonymous access, leave DN and Password empty." => "Для анонимного доступа оставьте поля DN и пароль пустыми.", "User Login Filter" => "Фильтр имен пользователей", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Задает фильтр, применяемый при загрузке пользователя. %%uid заменяет имя пользователя при входе.", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "используйте %%uid заполнитель, например, \"uid=%%uid\"", +"User List Filter" => "Фильтр списка пользователей", +"Defines the filter to apply, when retrieving users." => "Задает фильтр, применяемый при получении пользователей.", "without any placeholder, e.g. \"objectClass=person\"." => "без каких-либо заполнителей, например, \"objectClass=person\".", "Group Filter" => "Групповой фильтр", +"Defines the filter to apply, when retrieving groups." => "Задает фильтр, применяемый при получении групп.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без каких-либо заполнителей, например, \"objectClass=posixGroup\".", "Port" => "Порт", "Base User Tree" => "Базовое дерево пользователей", +"Base Group Tree" => "Базовое дерево групп", "Group-Member association" => "Связь член-группа", "Use TLS" => "Использовать TLS", "Do not use it for SSL connections, it will fail." => "Не используйте это SSL-соединений, это не будет выполнено.", "Case insensitve LDAP server (Windows)" => "Нечувствительный к регистру LDAP-сервер (Windows)", "Turn off SSL certificate validation." => "Выключить проверку сертификата SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Если соединение работает только с этой опцией, импортируйте SSL-сертификат LDAP сервера в ваш ownCloud сервер.", "Not recommended, use for testing only." => "Не рекомендовано, используйте только для тестирования.", "User Display Name Field" => "Поле, отображаемое как имя пользователя", "The LDAP attribute to use to generate the user`s ownCloud name." => "Атрибут LDAP, используемый для создания имени пользователя в ownCloud.", +"Group Display Name Field" => "Поле, отображаемое как имя группы", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Атрибут LDAP, используемый для создания группового имени в ownCloud.", "in bytes" => "в байтах", "in seconds. A change empties the cache." => "в секундах. Изменение очищает кэш.", diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 66007d0953601e94394f7f9593e14c8893b96d7d..a500e1bf5b43b81d6f49403ceab237eded4de886 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -339,7 +339,8 @@ abstract class Access { $ownCloudNames = array(); foreach($ldapObjects as $ldapObject) { - $ocname = $this->dn2ocname($ldapObject['dn'], $ldapObject[$nameAttribute], $isUsers); + $nameByLDAP = isset($ldapObject[$nameAttribute]) ? $ldapObject[$nameAttribute] : null; + $ocname = $this->dn2ocname($ldapObject['dn'], $nameByLDAP, $isUsers); if($ocname) { $ownCloudNames[] = $ocname; } diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index 53a65129108faf0a010b5df2729c8caa216ed4a3..e104c8d1764925cde9d016d4d024ecbeb02ded9d 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -29,11 +29,13 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { private function updateQuota($dn) { $quota = null; - if(!empty($this->connection->ldapQuotaDefault)) { - $quota = $this->connection->ldapQuotaDefault; + $quotaDefault = $this->connection->ldapQuotaDefault; + $quotaAttribute = $this->connection->ldapQuotaAttribute; + if(!empty($quotaDefault)) { + $quota = $quotaDefault; } - if(!empty($this->connection->ldapQuotaAttribute)) { - $aQuota = $this->readAttribute($dn, $this->connection->ldapQuotaAttribute); + if(!empty($quotaAttribute)) { + $aQuota = $this->readAttribute($dn, $quotaAttribute); if($aQuota && (count($aQuota) > 0)) { $quota = $aQuota[0]; @@ -46,8 +48,9 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { private function updateEmail($dn) { $email = null; - if(!empty($this->connection->ldapEmailAttribute)) { - $aEmail = $this->readAttribute($dn, $this->connection->ldapEmailAttribute); + $emailAttribute = $this->connection->ldapEmailAttribute; + if(!empty($emailAttribute)) { + $aEmail = $this->readAttribute($dn, $emailAttribute); if($aEmail && (count($aEmail) > 0)) { $email = $aEmail[0]; } diff --git a/config/config.sample.php b/config/config.sample.php index 09eb6053c240989bddfc332cf3f029b2c1eeaa9a..3d0a70db1d81c13a804a4aeb62b541fb06f5c35b 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -30,6 +30,12 @@ $CONFIG = array( /* Force use of HTTPS connection (true = use HTTPS) */ "forcessl" => false, +/* Enhanced auth forces users to enter their password again when performing potential sensitive actions like creating or deleting users */ +"enhancedauth" => true, + +/* Time in seconds how long an user is authenticated without entering his password again before performing sensitive actions like creating or deleting users etc...*/ +"enhancedauthtime" => 15 * 60, + /* Theme to use for ownCloud */ "theme" => "", @@ -86,6 +92,9 @@ $CONFIG = array( /* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */ "loglevel" => "", +/* Lifetime of the remember login cookie, default is 15 days */ +"remember_login_cookie_lifetime" => 60*60*24*15, + /* The directory where the user data is stored, default to data in the owncloud * directory. The sqlite database is also stored here, when sqlite is used. */ @@ -104,4 +113,4 @@ $CONFIG = array( 'writable' => true, ), ), -); \ No newline at end of file +); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 70286040bfd35036c7d47a4c0224d7575f844171..d329b9203029714ffea36d76ffdc2fa79ba9ce5e 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -69,6 +69,10 @@ "Cloud not found" => "No s'ha trobat el núvol", "Edit categories" => "Edita les categories", "Add" => "Afegeix", +"Security Warning" => "Avís de seguretat", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No està disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte.", +"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." => "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web.", "Create an <strong>admin account</strong>" => "Crea un <strong>compte d'administrador</strong>", "Advanced" => "Avançat", "Data folder" => "Carpeta de dades", @@ -82,10 +86,16 @@ "Finish setup" => "Acaba la configuració", "web services under your control" => "controleu els vostres serveis web", "Log out" => "Surt", +"Automatic logon rejected!" => "L'ha rebutjat l'acceditació automàtica!", +"If you did not change your password recently, your account may be compromised!" => "Se no heu canviat la contrasenya recentment el vostre compte pot estar compromès!", +"Please change your password to secure your account again." => "Canvieu la contrasenya de nou per assegurar el vostre compte.", "Lost your password?" => "Heu perdut la contrasenya?", "remember" => "recorda'm", "Log in" => "Inici de sessió", "You are logged out." => "Heu tancat la sessió.", "prev" => "anterior", -"next" => "següent" +"next" => "següent", +"Security Warning!" => "Avís de seguretat!", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Comproveu la vostra contrasenya. <br/>Per raons de seguretat se us pot demanar escriure de nou la vostra contrasenya.", +"Verify" => "Comprova" ); diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 461bed99334bbd268dd5a89684592098ea6a58f4..a6e0d42dac3ba254a8008c22ca631f07a03f5a79 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -69,6 +69,10 @@ "Cloud not found" => "Cloud nebyl nalezen", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", +"Security Warning" => "Bezpečnostní upozornění", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem.", +"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." => "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess, který je poskytován ownCloud, nefunguje. Důrazně Vám doporučujeme nastavit váš webový server tak, aby nebyl adresář dat přístupný, nebo přesunout adresář dat mimo kořenovou složku dokumentů webového serveru.", "Create an <strong>admin account</strong>" => "Vytvořit <strong>účet správce</strong>", "Advanced" => "Pokročilé", "Data folder" => "Složka s daty", @@ -82,10 +86,16 @@ "Finish setup" => "Dokončit nastavení", "web services under your control" => "webové služby pod Vaší kontrolou", "Log out" => "Odhlásit se", +"Automatic logon rejected!" => "Automatické přihlášení odmítnuto.", +"If you did not change your password recently, your account may be compromised!" => "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován.", +"Please change your password to secure your account again." => "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu.", "Lost your password?" => "Ztratili jste své heslo?", "remember" => "zapamatovat si", "Log in" => "Přihlásit", "You are logged out." => "Jste odhlášeni.", "prev" => "předchozí", -"next" => "následující" +"next" => "následující", +"Security Warning!" => "Bezpečnostní upozornění.", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Ověřte, prosím, své heslo. <br/>Z bezpečnostních důvodů můžete být občas požádáni o jeho opětovné zadání.", +"Verify" => "Ověřit" ); diff --git a/core/l10n/de.php b/core/l10n/de.php index 31cfa764f98507a7cfbc123a0bd50d84bbf68fa2..cb6df3b6d1096df256f3ccd18934269ce5428553 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -69,6 +69,10 @@ "Cloud not found" => "Cloud nicht gefunden", "Edit categories" => "Kategorien bearbeiten", "Add" => "Hinzufügen", +"Security Warning" => "Sicherheitswarnung", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Konten zu übernehmen.", +"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." => "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass du deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass du dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst.", "Create an <strong>admin account</strong>" => "<strong>Administrator-Konto</strong> anlegen", "Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", @@ -82,10 +86,16 @@ "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", "Log out" => "Abmelden", +"Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", +"If you did not change your password recently, your account may be compromised!" => "Wenn du Dein Passwort nicht änderst, könnte dein Account kompromitiert werden!", +"Please change your password to secure your account again." => "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen.", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", "You are logged out." => "Du wurdest abgemeldet.", "prev" => "Zurück", -"next" => "Weiter" +"next" => "Weiter", +"Security Warning!" => "Sicherheitswarnung!", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Bitte bestätige Dein Passwort. <br/> Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben.", +"Verify" => "Bestätigen" ); diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..1d2daeef03710585595300ff9e4424bfa8d9ecaa --- /dev/null +++ b/core/l10n/de_DE.php @@ -0,0 +1,94 @@ +<?php $TRANSLATIONS = array( +"Application name not provided." => "Der Anwendungsname wurde nicht angegeben.", +"No category to add?" => "Keine Kategorie hinzuzufügen?", +"This category already exists: " => "Kategorie existiert bereits:", +"Settings" => "Einstellungen", +"January" => "Januar", +"February" => "Februar", +"March" => "März", +"April" => "April", +"May" => "Mai", +"June" => "Juni", +"July" => "Juli", +"August" => "August", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "Dezember", +"Choose" => "Auswählen", +"Cancel" => "Abbrechen", +"No" => "Nein", +"Yes" => "Ja", +"Ok" => "OK", +"No categories selected for deletion." => "Es wurde keine Kategorien zum Löschen ausgewählt.", +"Error" => "Fehler", +"Error while sharing" => "Fehler beim Freigeben", +"Error while unsharing" => "Fehler beim Aufheben der Freigabe", +"Error while changing permissions" => "Fehler beim Ändern der Rechte", +"Shared with you and the group" => "Für Dich und folgende Gruppe freigegeben", +"by" => "mit", +"Shared with you by" => "Dies wurde mit dir geteilt von", +"Share with" => "Freigeben für", +"Share with link" => "Über einen Link freigeben", +"Password protect" => "Passwortschutz", +"Password" => "Passwort", +"Set expiration date" => "Setze ein Ablaufdatum", +"Expiration date" => "Ablaufdatum", +"Share via email:" => "Über eine E-Mail freigeben:", +"No people found" => "Niemand gefunden", +"Resharing is not allowed" => "Weiterverteilen ist nicht erlaubt", +"Shared in" => "Freigegeben in", +"with" => "mit", +"Unshare" => "Freigabe aufheben", +"can edit" => "kann bearbeiten", +"access control" => "Zugriffskontrolle", +"create" => "erstellen", +"update" => "aktualisieren", +"delete" => "löschen", +"share" => "teilen", +"Password protected" => "Durch ein Passwort geschützt", +"Error unsetting expiration date" => "Fehler beim entfernen des Ablaufdatums", +"Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", +"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", +"Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", +"You will receive a link to reset your password via Email." => "Du erhälst einen Link per E-Mail, um Dein Passwort zurückzusetzen.", +"Requested" => "Angefragt", +"Login failed!" => "Login fehlgeschlagen!", +"Username" => "Benutzername", +"Request reset" => "Beantrage Zurücksetzung", +"Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", +"To login page" => "Zur Login-Seite", +"New password" => "Neues Passwort", +"Reset password" => "Passwort zurücksetzen", +"Personal" => "Persönlich", +"Users" => "Benutzer", +"Apps" => "Anwendungen", +"Admin" => "Admin", +"Help" => "Hilfe", +"Access forbidden" => "Zugriff verboten", +"Cloud not found" => "Cloud nicht gefunden", +"Edit categories" => "Kategorien bearbeiten", +"Add" => "Hinzufügen", +"Security Warning" => "Sicherheitshinweis", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und damit können Konten übernommen.", +"Create an <strong>admin account</strong>" => "<strong>Administrator-Konto</strong> anlegen", +"Advanced" => "Fortgeschritten", +"Data folder" => "Datenverzeichnis", +"Configure the database" => "Datenbank einrichten", +"will be used" => "wird verwendet", +"Database user" => "Datenbank-Benutzer", +"Database password" => "Datenbank-Passwort", +"Database name" => "Datenbank-Name", +"Database tablespace" => "Datenbank-Tablespace", +"Database host" => "Datenbank-Host", +"Finish setup" => "Installation abschließen", +"web services under your control" => "Web-Services unter Ihrer Kontrolle", +"Log out" => "Abmelden", +"Lost your password?" => "Passwort vergessen?", +"remember" => "merken", +"Log in" => "Einloggen", +"You are logged out." => "Du wurdest abgemeldet.", +"prev" => "Zurück", +"next" => "Weiter" +); diff --git a/core/l10n/el.php b/core/l10n/el.php index 0e0c43b899ecd69b36bc60ef52d750328ed18d99..f2b9a48fe12ad9e95a6b6562694ba36031a46d0d 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -69,6 +69,7 @@ "Cloud not found" => "Δεν βρέθηκε σύννεφο", "Edit categories" => "Επεξεργασία κατηγορίας", "Add" => "Προσθήκη", +"Security Warning" => "Προειδοποίηση Ασφαλείας", "Create an <strong>admin account</strong>" => "Δημιουργήστε έναν <strong>λογαριασμό διαχειριστή</strong>", "Advanced" => "Για προχωρημένους", "Data folder" => "Φάκελος δεδομένων", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 9e03abfdc233b9035a760914c05c507b39972dd0..a8f5b38a303df1bb01f831594524a60c1e458222 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -15,13 +15,40 @@ "October" => "Oktobro", "November" => "Novembro", "December" => "Decembro", +"Choose" => "Elekti", "Cancel" => "Nuligi", "No" => "Ne", "Yes" => "Jes", "Ok" => "Akcepti", "No categories selected for deletion." => "Neniu kategorio elektiĝis por forigo.", "Error" => "Eraro", +"Error while sharing" => "Eraro dum kunhavigo", +"Error while unsharing" => "Eraro dum malkunhavigo", +"Error while changing permissions" => "Eraro dum ŝanĝo de permesoj", +"Shared with you and the group" => "Kunhavigita kun vi kaj la grupo", +"by" => "de", +"Shared with you by" => "Kunhavigita kun vi de", +"Share with" => "Kunhavigi kun", +"Share with link" => "Kunhavigi per ligilo", +"Password protect" => "Protekti per pasvorto", "Password" => "Pasvorto", +"Set expiration date" => "Agordi limdaton", +"Expiration date" => "Limdato", +"Share via email:" => "Kunhavigi per retpoŝto:", +"No people found" => "Ne troviĝis gento", +"Resharing is not allowed" => "Rekunhavigo ne permesatas", +"Shared in" => "Kunhavigita en", +"with" => "kun", +"Unshare" => "Malkunhavigi", +"can edit" => "povas redakti", +"access control" => "alirkontrolo", +"create" => "krei", +"update" => "ĝisdatigi", +"delete" => "forigi", +"share" => "kunhavigi", +"Password protected" => "Protektita per pasvorto", +"Error unsetting expiration date" => "Eraro dum malagordado de limdato", +"Error setting expiration date" => "Eraro dum agordado de limdato", "ownCloud password reset" => "La pasvorto de ownCloud restariĝis.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", "You will receive a link to reset your password via Email." => "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.", diff --git a/core/l10n/es.php b/core/l10n/es.php index 204760720a2b05570dc723cd620d57f173646d45..6c929477453d178883383b2f8d1f46911f08589c 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -29,7 +29,7 @@ "by" => "por", "Shared with you by" => "Compartido contigo por", "Share with" => "Compartir con", -"Share with link" => "Enlace de compartir con ", +"Share with link" => "Compartir con enlace", "Password protect" => "Protegido por contraseña", "Password" => "Contraseña", "Set expiration date" => "Establecer fecha de caducidad", @@ -69,6 +69,10 @@ "Cloud not found" => "No se ha encontrado la nube", "Edit categories" => "Editar categorías", "Add" => "Añadir", +"Security Warning" => "Advertencia de seguridad", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de su contraseña y tomar control de su cuenta.", +"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." => "Su directorio de datos y sus archivos están probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no esté accesible o mueva el directorio de datos fuera del documento raíz de su servidor web.", "Create an <strong>admin account</strong>" => "Crea una <strong>cuenta de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", @@ -82,10 +86,16 @@ "Finish setup" => "Completar la instalación", "web services under your control" => "servicios web bajo tu control", "Log out" => "Salir", +"Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", +"If you did not change your password recently, your account may be compromised!" => "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", +"Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.", "Lost your password?" => "¿Has perdido tu contraseña?", "remember" => "recuérdame", "Log in" => "Entrar", "You are logged out." => "Has cerrado la sesión.", "prev" => "anterior", -"next" => "siguiente" +"next" => "siguiente", +"Security Warning!" => "¡Advertencia de seguridad!", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor verifique su contraseña. <br/>Por razones de seguridad se le puede volver a preguntar ocasionalmente la contraseña.", +"Verify" => "Verificar" ); diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 7cea266d14bd39e15be7c7139f55dfbdb559f46d..ecb909e2ed78817a8ecb9f6171e342f5ae4cd9ac 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -69,6 +69,10 @@ "Cloud not found" => "No se encontró owncloud", "Edit categories" => "Editar categorías", "Add" => "Añadir", +"Security Warning" => "Advertencia de seguridad", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta.", +"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." => "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no está funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no esté accesible, o que muevas el directorio de datos afuera del directorio raíz de tu servidor web.", "Create an <strong>admin account</strong>" => "Creá una <strong>cuenta de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", @@ -82,10 +86,16 @@ "Finish setup" => "Completar la instalación", "web services under your control" => "servicios web sobre los que tenés control", "Log out" => "Cerrar la sesión", +"Automatic logon rejected!" => "¡El inicio de sesión automático fue rechazado!", +"If you did not change your password recently, your account may be compromised!" => "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!", +"Please change your password to secure your account again." => "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta.", "Lost your password?" => "¿Perdiste tu contraseña?", "remember" => "recordame", "Log in" => "Entrar", "You are logged out." => "Terminaste la sesión.", "prev" => "anterior", -"next" => "siguiente" +"next" => "siguiente", +"Security Warning!" => "¡Advertencia de seguridad!", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Por favor, verificá tu contraseña. <br/>Por razones de seguridad, puede ser que que te pregunte ocasionalmente la contraseña.", +"Verify" => "Verificar" ); diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 4ab46a8a332f9de5733d7134892566fc80839bc5..0bdc3a33bddbc71ca8b2903a65d3d74d75df98d8 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -69,6 +69,10 @@ "Cloud not found" => "Introuvable", "Edit categories" => "Modifier les catégories", "Add" => "Ajouter", +"Security Warning" => "Avertissement de sécutité", +"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.", "Create an <strong>admin account</strong>" => "Créer un <strong>compte administrateur</strong>", "Advanced" => "Avancé", "Data folder" => "Répertoire des données", @@ -82,10 +86,16 @@ "Finish setup" => "Terminer l'installation", "web services under your control" => "services web sous votre contrôle", "Log out" => "Se déconnecter", +"Automatic logon rejected!" => "Connexion automatique rejetée !", +"If you did not change your password recently, your account may be compromised!" => "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !", +"Please change your password to secure your account again." => "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte.", "Lost your password?" => "Mot de passe perdu ?", "remember" => "se souvenir de moi", "Log in" => "Connexion", "You are logged out." => "Vous êtes désormais déconnecté.", "prev" => "précédent", -"next" => "suivant" +"next" => "suivant", +"Security Warning!" => "Alerte de sécurité !", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Veuillez vérifier votre mot de passe. <br/>Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau.", +"Verify" => "Vérification" ); diff --git a/core/l10n/it.php b/core/l10n/it.php index c586171275dccd08bf6ddb0c159b191e76bb4276..950517f9d07f64fde147dd6efe677b934fc27d2e 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -69,6 +69,10 @@ "Cloud not found" => "Nuvola non trovata", "Edit categories" => "Modifica le categorie", "Add" => "Aggiungi", +"Security Warning" => "Avviso di sicurezza", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non è disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account.", +"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." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito.", "Create an <strong>admin account</strong>" => "Crea un <strong>account amministratore</strong>", "Advanced" => "Avanzate", "Data folder" => "Cartella dati", @@ -82,10 +86,16 @@ "Finish setup" => "Termina la configurazione", "web services under your control" => "servizi web nelle tue mani", "Log out" => "Esci", +"Automatic logon rejected!" => "Accesso automatico rifiutato.", +"If you did not change your password recently, your account may be compromised!" => "Se non hai cambiato la password recentemente, il tuo account potrebbe essere stato compromesso.", +"Please change your password to secure your account again." => "Cambia la password per rendere nuovamente sicuro il tuo account.", "Lost your password?" => "Hai perso la password?", "remember" => "ricorda", "Log in" => "Accedi", "You are logged out." => "Sei uscito.", "prev" => "precedente", -"next" => "successivo" +"next" => "successivo", +"Security Warning!" => "Avviso di sicurezza", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Verifica la tua password.<br/>Per motivi di sicurezza, potresti ricevere una richiesta di digitare nuovamente la password.", +"Verify" => "Verifica" ); diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 94e1d4dd4fb74eb0584ea815b5c4fe1beabe1b2f..cb3f02a2efdf0080650fd96120deed972e5703d1 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -69,6 +69,10 @@ "Cloud not found" => "見つかりません", "Edit categories" => "カテゴリを編集", "Add" => "追加", +"Security Warning" => "セキュリティ警告", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "セキュアな乱数生成器が無い場合、攻撃者はパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。", +"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." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。 ", "Create an <strong>admin account</strong>" => "<strong>管理者アカウント</strong>を作成してください", "Advanced" => "詳細設定", "Data folder" => "データフォルダ", @@ -82,10 +86,16 @@ "Finish setup" => "セットアップを完了します", "web services under your control" => "管理下にあるウェブサービス", "Log out" => "ログアウト", +"Automatic logon rejected!" => "自動ログインは拒否されました!", +"If you did not change your password recently, your account may be compromised!" => "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。", +"Please change your password to secure your account again." => "アカウント保護の為、パスワードを再度の変更をお願いいたします。", "Lost your password?" => "パスワードを忘れましたか?", "remember" => "パスワードを記憶する", "Log in" => "ログイン", "You are logged out." => "ログアウトしました。", "prev" => "前", -"next" => "次" +"next" => "次", +"Security Warning!" => "セキュリティ警告!", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "パスワードの確認をお願いします。<br/>セキュリティ上の理由により、時々パスワードの再入力をお願いする場合があります。", +"Verify" => "確認" ); diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index c332585325bed7f090ce10d38cbecfaf30d45bf1..54a442bc2f27e79cafd9f19b93b10b7d902a7187 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -69,6 +69,9 @@ "Cloud not found" => "Cloud não encontrado", "Edit categories" => "Editar categorias", "Add" => "Adicionar", +"Security Warning" => "Aviso de Segurança", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nenhum gerador de número aleatório de segurança disponível. Habilite a extensão OpenSSL do PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sem um gerador de número aleatório de segurança, um invasor pode ser capaz de prever os símbolos de redefinição de senhas e assumir sua conta.", "Create an <strong>admin account</strong>" => "Criar uma <strong>conta</strong> de <strong>administrador</strong>", "Advanced" => "Avançado", "Data folder" => "Pasta de dados", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 60e15b996ec8c8ee89eaa347a30b804170e5ea33..d658ecb18e5ec3f4579634fa533d0d2bd9c09f75 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -30,6 +30,7 @@ "Password" => "Пароль", "Set expiration date" => "Установить срок действия", "Expiration date" => "Дата истечения срока действия", +"Share via email:" => "Сделать общедоступным посредством email:", "No people found" => "Не найдено людей", "Resharing is not allowed" => "Рекурсивный общий доступ не разрешен", "with" => "с", @@ -41,6 +42,8 @@ "delete" => "удалить", "share" => "сделать общим", "Password protected" => "Пароль защищен", +"Error unsetting expiration date" => "Ошибка при отключении даты истечения срока действия", +"Error setting expiration date" => "Ошибка при установке даты истечения срока действия", "ownCloud password reset" => "Переназначение пароля", "Use the following link to reset your password: {link}" => "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}", "You will receive a link to reset your password via Email." => "Вы получите ссылку для восстановления пароля по электронной почте.", @@ -61,6 +64,8 @@ "Cloud not found" => "Облако не найдено", "Edit categories" => "Редактирование категорий", "Add" => "Добавить", +"Security Warning" => "Предупреждение системы безопасности", +"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." => "Ваши каталоги данных и файлы, вероятно, доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить вебсервер таким образом, чтобы каталоги данных больше не были доступны, или переместить их за пределы корневого каталога документов веб-сервера.", "Create an <strong>admin account</strong>" => "Создать <strong>admin account</strong>", "Advanced" => "Расширенный", "Data folder" => "Папка данных", @@ -74,10 +79,16 @@ "Finish setup" => "Завершение настройки", "web services under your control" => "веб-сервисы под Вашим контролем", "Log out" => "Выйти", +"Automatic logon rejected!" => "Автоматический вход в систему отклонен!", +"If you did not change your password recently, your account may be compromised!" => "Если Вы недавно не меняли пароль, Ваш аккаунт может быть подвергнут опасности!", +"Please change your password to secure your account again." => "Пожалуйста, измените пароль, чтобы защитить ваш аккаунт еще раз.", "Lost your password?" => "Забыли пароль?", "remember" => "запомнить", "Log in" => "Войти", "You are logged out." => "Вы вышли из системы.", "prev" => "предыдущий", -"next" => "следующий" +"next" => "следующий", +"Security Warning!" => "Предупреждение системы безопасности!", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "Пожалуйста, проверьте свой пароль. <br/>По соображениям безопасности Вам может быть иногда предложено ввести пароль еще раз.", +"Verify" => "Проверить" ); diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php new file mode 100644 index 0000000000000000000000000000000000000000..bfccbfd3e8e6f6632fd00a028d2f7751ed227dfb --- /dev/null +++ b/core/l10n/si_LK.php @@ -0,0 +1,29 @@ +<?php $TRANSLATIONS = array( +"Application name not provided." => "යෙදුම් නාමය සපයා නැත.", +"Settings" => "සැකසුම්", +"January" => "ජනවාරි", +"February" => "පෙබරවාරි", +"March" => "මාර්තු", +"April" => "අප්රේල්", +"May" => "මැයි", +"June" => "ජූනි", +"July" => "ජූලි", +"August" => "අගෝස්තු", +"September" => "සැප්තැම්බර්", +"October" => "ඔක්තෝබර්", +"November" => "නොවැම්බර්", +"December" => "දෙසැම්බර්", +"Choose" => "තෝරන්න", +"Cancel" => "එපා", +"No" => "නැහැ", +"Yes" => "ඔව්", +"Ok" => "හරි", +"Password" => "මුර පදය ", +"To login page" => "පිවිසුම් පිටුවට", +"New password" => "නව මුර පදයක්", +"Apps" => "යෙදුම්", +"Help" => "උදව්", +"Add" => "එක් කරන්න", +"Data folder" => "දත්ත ෆෝල්ඩරය", +"next" => "ඊළඟ" +); diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 20ad151778a5a9f02f79e3ffae68aeea99e50aaa..935f9ab16f4fdd2bd8d26b7d9d5e66e2c44cc941 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -38,6 +38,7 @@ "No people found" => "Užívateľ nenájdený", "with" => "s", "Unshare" => "Zrušiť zdieľanie", +"can edit" => "môže upraviť", "access control" => "riadenie prístupu", "create" => "vytvoriť", "delete" => "zmazať", @@ -63,6 +64,7 @@ "Cloud not found" => "Nenájdené", "Edit categories" => "Úprava kategórií", "Add" => "Pridať", +"Security Warning" => "Bezpečnostné varovanie", "Create an <strong>admin account</strong>" => "Vytvoriť <strong>administrátorský účet</strong>", "Advanced" => "Pokročilé", "Data folder" => "Priečinok dát", @@ -75,10 +77,13 @@ "Finish setup" => "Dokončiť inštaláciu", "web services under your control" => "webové služby pod vašou kontrolou", "Log out" => "Odhlásiť", +"Automatic logon rejected!" => "Automatické prihlásenie bolo zamietnuté!", "Lost your password?" => "Zabudli ste heslo?", "remember" => "zapamätať", "Log in" => "Prihlásiť sa", "You are logged out." => "Ste odhlásený.", "prev" => "späť", -"next" => "ďalej" +"next" => "ďalej", +"Security Warning!" => "Bezpečnostné varovanie!", +"Verify" => "Overenie" ); diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 90e416fc737c3b6fde8bc06d74496d33045cffc8..2833792e0b7e7f30e067872037e25554ee50d3fc 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -69,6 +69,9 @@ "Cloud not found" => "Hittade inget moln", "Edit categories" => "Redigera kategorier", "Add" => "Lägg till", +"Security Warning" => "Säkerhetsvarning", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Utan en säker slumptalsgenerator kan angripare få möjlighet att förutsäga lösenordsåterställningar och ta över ditt konto.", "Create an <strong>admin account</strong>" => "Skapa ett <strong>administratörskonto</strong>", "Advanced" => "Avancerat", "Data folder" => "Datamapp", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 26155a18663766be106be24c3308e8d90b6e45cd..758bd7274ff43ef6112332c99c4097f45b7f63b1 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -15,13 +15,36 @@ "October" => "Tháng 10", "November" => "Tháng 11", "December" => "Tháng 12", +"Choose" => "Chọn", "Cancel" => "Hủy", "No" => "No", "Yes" => "Yes", "Ok" => "Ok", "No categories selected for deletion." => "Không có thể loại nào được chọn để xóa.", "Error" => "Lỗi", +"Error while sharing" => "Lỗi trong quá trình chia sẻ", +"Error while unsharing" => "Lỗi trong quá trình gỡ chia sẻ", +"Error while changing permissions" => "Lỗi trong quá trình phân quyền", +"Shared with you and the group" => "Được chia sẻ với bạn và Nhóm", +"Shared with you by" => "Được chia sẻ với bạn qua", +"Share with" => "Chia sẻ với", +"Share with link" => "Chia sẻ với link", "Password" => "Mật khẩu", +"Set expiration date" => "Đặt ngày kết thúc", +"Expiration date" => "Ngày kết thúc", +"Share via email:" => "Chia sẻ thông qua email", +"No people found" => "Không tìm thấy người nào", +"Shared in" => "Chi sẻ trong", +"with" => "với", +"Unshare" => "Gỡ bỏ chia sẻ", +"access control" => "quản lý truy cập", +"create" => "tạo", +"update" => "cập nhật", +"delete" => "xóa", +"share" => "chia sẻ", +"Password protected" => "Mật khẩu bảo vệ", +"Error unsetting expiration date" => "Lỗi trong quá trình gỡ bỏ ngày kết thúc", +"Error setting expiration date" => "Lỗi cấu hình ngày kết thúc", "ownCloud password reset" => "Khôi phục mật khẩu Owncloud ", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", "You will receive a link to reset your password via Email." => "Vui lòng kiểm tra Email để khôi phục lại mật khẩu.", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 2f87278bf58766df06def95b6ed0552476018f7f..a69bbec0b2672c162a43143bc7612da6912e0b0d 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -69,6 +69,10 @@ "Cloud not found" => "云 没有被找到", "Edit categories" => "编辑分类", "Add" => "添加", +"Security Warning" => "安全警告", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "没有安全随机码生成器,请启用 PHP OpenSSL 扩展。", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,黑客可以预测密码重置令牌并接管你的账户。", +"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." => "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。", "Create an <strong>admin account</strong>" => "建立一个 <strong>管理帐户</strong>", "Advanced" => "进阶", "Data folder" => "数据存放文件夹", @@ -82,10 +86,16 @@ "Finish setup" => "完成安装", "web services under your control" => "你控制下的网络服务", "Log out" => "注销", +"Automatic logon rejected!" => "自动登录被拒绝!", +"If you did not change your password recently, your account may be compromised!" => "如果您最近没有修改您的密码,那您的帐号可能被攻击了!", +"Please change your password to secure your account again." => "请修改您的密码以保护账户。", "Lost your password?" => "忘记密码?", "remember" => "备忘", "Log in" => "登陆", "You are logged out." => "你已经注销了", "prev" => "后退", -"next" => "前进" +"next" => "前进", +"Security Warning!" => "安全警告!", +"Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again." => "请确认您的密码。<br/>处于安全原因你偶尔也会被要求再次输入您的密码。", +"Verify" => "确认" ); diff --git a/core/lostpassword/index.php b/core/lostpassword/index.php index 4cd8b9079fd4c419e89e46c13d9b60fa61f94437..906208dcbc4b52e3d79796111ac5934336760f94 100644 --- a/core/lostpassword/index.php +++ b/core/lostpassword/index.php @@ -13,8 +13,8 @@ require_once '../../lib/base.php'; // Someone lost their password: if (isset($_POST['user'])) { if (OC_User::userExists($_POST['user'])) { - $token = hash("sha256", $_POST['user'].OC_Util::generate_random_bytes(10)); - OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', $token); + $token = hash("sha256", OC_Util::generate_random_bytes(30).OC_Config::getValue('passwordsalt', '')); + OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword', hash("sha256", $token)); // Hash the token again to prevent timing attacks $email = OC_Preferences::getValue($_POST['user'], 'settings', 'email', ''); if (!empty($email)) { $link = OC_Helper::linkToAbsolute('core/lostpassword', 'resetpassword.php', array('user' => $_POST['user'], 'token' => $token)); diff --git a/core/lostpassword/resetpassword.php b/core/lostpassword/resetpassword.php index 28a0063fc647c5d7b7bf21076fa921173bcbf05d..896c8da76e091a30cb6d03da853972217bc91692 100644 --- a/core/lostpassword/resetpassword.php +++ b/core/lostpassword/resetpassword.php @@ -10,7 +10,7 @@ $RUNTIME_NOAPPS = TRUE; //no apps require_once '../../lib/base.php'; // Someone wants to reset their password: -if(isset($_GET['token']) && isset($_GET['user']) && OC_Preferences::getValue($_GET['user'], 'owncloud', 'lostpassword') === $_GET['token']) { +if(isset($_GET['token']) && isset($_GET['user']) && OC_Preferences::getValue($_GET['user'], 'owncloud', 'lostpassword') === hash("sha256", $_GET['token'])) { if (isset($_POST['password'])) { if (OC_User::setPassword($_GET['user'], $_POST['password'])) { OC_Preferences::deleteKey($_GET['user'], 'owncloud', 'lostpassword'); diff --git a/core/templates/installation.php b/core/templates/installation.php index 1a05c3fb762e562d0ef506af9064eecfe833dc91..c0b29ea909de8bf232f95644e875ee0af5f36e32 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -3,7 +3,6 @@ <input type='hidden' id='hasPostgreSQL' value='<?php echo $_['hasPostgreSQL'] ?>'></input> <input type='hidden' id='hasOracle' value='<?php echo $_['hasOracle'] ?>'></input> <form action="index.php" method="post"> - <input type="hidden" name="install" value="true" /> <?php if(count($_['errors']) > 0): ?> <ul class="errors"> @@ -19,7 +18,20 @@ <?php endforeach; ?> </ul> <?php endif; ?> - + <?php if(!$_['secureRNG']): ?> + <fieldset style="color: #B94A48; background-color: #F2DEDE; border-color: #EED3D7;"> + <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> + <span><?php echo $l->t('No secure random number generator is available, please enable the PHP OpenSSL extension.');?></span> + <br/> + <span><?php echo $l->t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?></span> + </fieldset> + <?php endif; ?> + <?php if(!$_['htaccessWorking']): ?> + <fieldset style="color: #B94A48; background-color: #F2DEDE; border-color: #EED3D7;"> + <legend><strong><?php echo $l->t('Security Warning');?></strong></legend> + <span><?php echo $l->t('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.');?></span> + </fieldset> + <?php endif; ?> <fieldset> <legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend> <p class="infield"> diff --git a/core/templates/login.php b/core/templates/login.php index bb7a8337523aad6f3b0dc05fd0faf3fbee2b8ae6..0768b664c6f35008acdaa5b9ede185b1a714ec0a 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -2,9 +2,20 @@ <form method="post"> <fieldset> <?php if(!empty($_['redirect'])) { echo '<input type="hidden" name="redirect_url" value="'.$_['redirect'].'" />'; } ?> - <?php if($_['display_lostpassword']): ?> - <a href="./core/lostpassword/"><?php echo $l->t('Lost your password?'); ?></a> + <ul> + <?php if(isset($_['invalidcookie']) && ($_['invalidcookie'])): ?> + <li class="errors"> + <?php echo $l->t('Automatic logon rejected!'); ?><br> + <small><?php echo $l->t('If you did not change your password recently, your account may be compromised!'); ?></small><br> + <small><?php echo $l->t('Please change your password to secure your account again.'); ?></small> + </li> <?php endif; ?> + <?php if(isset($_['invalidpassword']) && ($_['invalidpassword'])): ?> + <a href="./core/lostpassword/"><li class="errors"> + <?php echo $l->t('Lost your password?'); ?> + </li></a> + <?php endif; ?> + </ul> <p class="infield"> <label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label> <input type="text" name="user" id="user" value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus']?' autofocus':''; ?> autocomplete="on" required /> diff --git a/core/templates/verify.php b/core/templates/verify.php new file mode 100644 index 0000000000000000000000000000000000000000..600eaca05b753d73795b29dfb8e28c583db3510b --- /dev/null +++ b/core/templates/verify.php @@ -0,0 +1,18 @@ +<form method="post"> + <fieldset> + <ul> + <li class="errors"> + <?php echo $l->t('Security Warning!'); ?><br> + <small><?php echo $l->t("Please verify your password. <br/>For security reasons you may be occasionally asked to enter your password again."); ?></small> + </li> + </ul> + <p class="infield"> + <input type="text" value="<?php echo $_['username']; ?>" disabled="disabled" /> + </p> + <p class="infield"> + <label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label> + <input type="password" name="password" id="password" value="" required /> + </p> + <input type="submit" id="submit" class="login" value="<?php echo $l->t( 'Verify' ); ?>" /> + </fieldset> +</form> diff --git a/l10n/af/admin_dependencies_chk.po b/l10n/af/admin_dependencies_chk.po deleted file mode 100644 index cc514c3f092edce328f17ca3dd6c5936af895192..0000000000000000000000000000000000000000 --- a/l10n/af/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/af/admin_migrate.po b/l10n/af/admin_migrate.po deleted file mode 100644 index 6801bee56d5ded11ff930dd5ca1f6670250c8af0..0000000000000000000000000000000000000000 --- a/l10n/af/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/af/bookmarks.po b/l10n/af/bookmarks.po deleted file mode 100644 index f9c5316dd5dc3cb48676e28fd33226a87e564466..0000000000000000000000000000000000000000 --- a/l10n/af/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/af/calendar.po b/l10n/af/calendar.po deleted file mode 100644 index c4363ac1ae7eadb1efcce2717602a376c262f81d..0000000000000000000000000000000000000000 --- a/l10n/af/calendar.po +++ /dev/null @@ -1,813 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "" - -#: lib/object.php:373 -msgid "Daily" -msgstr "" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/af/contacts.po b/l10n/af/contacts.po deleted file mode 100644 index f8979aa76870ac260b3d0b05d9db521aa1ee1f8b..0000000000000000000000000000000000000000 --- a/l10n/af/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/af/core.po b/l10n/af/core.po index b341411ef2f73738909887a799e99e69d317dfd5..61c871deff82ea749358a4ddc9805d70a0f31599 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -29,55 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -182,39 +183,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -238,12 +239,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -299,52 +300,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/af/files_odfviewer.po b/l10n/af/files_odfviewer.po deleted file mode 100644 index ec66648874b39049a3c707ddba594ef14d939ee8..0000000000000000000000000000000000000000 --- a/l10n/af/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/af/files_pdfviewer.po b/l10n/af/files_pdfviewer.po deleted file mode 100644 index 142a114dc5cb1a77f744765323a9a6925eaaef47..0000000000000000000000000000000000000000 --- a/l10n/af/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/af/files_texteditor.po b/l10n/af/files_texteditor.po deleted file mode 100644 index 167f82535888035f71d30d46bd019643fabe2aea..0000000000000000000000000000000000000000 --- a/l10n/af/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/af/gallery.po b/l10n/af/gallery.po deleted file mode 100644 index 4b3c3a0b90705f649821b60e4c2d217fb17685f5..0000000000000000000000000000000000000000 --- a/l10n/af/gallery.po +++ /dev/null @@ -1,94 +0,0 @@ -# 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: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Afrikaans (http://www.transifex.net/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/af/impress.po b/l10n/af/impress.po deleted file mode 100644 index ad04eff39f12fab8a892afda7d225d3e3543a478..0000000000000000000000000000000000000000 --- a/l10n/af/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/af/media.po b/l10n/af/media.po deleted file mode 100644 index 6ef8fb90646ea65388c89ad9756f7d341b2fc422..0000000000000000000000000000000000000000 --- a/l10n/af/media.po +++ /dev/null @@ -1,66 +0,0 @@ -# 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: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Afrikaans (http://www.transifex.net/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "" - -#: templates/music.php:5 -msgid "Previous" -msgstr "" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "" - -#: templates/music.php:7 -msgid "Mute" -msgstr "" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "" - -#: templates/music.php:37 -msgid "Artist" -msgstr "" - -#: templates/music.php:38 -msgid "Album" -msgstr "" - -#: templates/music.php:39 -msgid "Title" -msgstr "" diff --git a/l10n/af/tasks.po b/l10n/af/tasks.po deleted file mode 100644 index ced9b6ce1218ef1125ae3e02b45e92e4bf50b836..0000000000000000000000000000000000000000 --- a/l10n/af/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/af/user_migrate.po b/l10n/af/user_migrate.po deleted file mode 100644 index f1829f1329f45acf7fcdb0ee96d9e73cc9b55f8d..0000000000000000000000000000000000000000 --- a/l10n/af/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/af/user_openid.po b/l10n/af/user_openid.po deleted file mode 100644 index 7d05e13987686e13711578133001cb941b5fb955..0000000000000000000000000000000000000000 --- a/l10n/af/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: af\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/ar/admin_dependencies_chk.po b/l10n/ar/admin_dependencies_chk.po deleted file mode 100644 index cd7fa85a2b223bd3de4d03ea871da089794ab036..0000000000000000000000000000000000000000 --- a/l10n/ar/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/ar/admin_migrate.po b/l10n/ar/admin_migrate.po deleted file mode 100644 index 9dcf129cad3fcb7cf91afe45cd044b981079929f..0000000000000000000000000000000000000000 --- a/l10n/ar/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/ar/bookmarks.po b/l10n/ar/bookmarks.po deleted file mode 100644 index 50d8ccbf671c9225f0235cd3e6c846d619446564..0000000000000000000000000000000000000000 --- a/l10n/ar/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/ar/calendar.po b/l10n/ar/calendar.po deleted file mode 100644 index 947cca6fda01de8923d0b4fc137d02676e585a53..0000000000000000000000000000000000000000 --- a/l10n/ar/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <tarek.taha@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:47+0000\n" -"Last-Translator: blackcoder <tarek.taha@gmail.com>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "ليس جميع الجداول الزمنيه محفوضه مؤقة" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "كل شيء محفوض مؤقة" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "لم يتم العثور على جدول الزمني" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "لم يتم العثور على احداث" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "جدول زمني خاطئ" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "التوقيت الجديد" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "تم تغيير المنطقة الزمنية" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "طلب غير مفهوم" - -#: appinfo/app.php:37 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "الجدول الزمني" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "ddd M/d" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "عيد ميلاد" - -#: lib/app.php:122 -msgid "Business" -msgstr "عمل" - -#: lib/app.php:123 -msgid "Call" -msgstr "إتصال" - -#: lib/app.php:124 -msgid "Clients" -msgstr "الزبائن" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "المرسل" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "عطلة" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "أفكار" - -#: lib/app.php:128 -msgid "Journey" -msgstr "رحلة" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "يوبيل" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "إجتماع" - -#: lib/app.php:131 -msgid "Other" -msgstr "شيء آخر" - -#: lib/app.php:132 -msgid "Personal" -msgstr "شخصي" - -#: lib/app.php:133 -msgid "Projects" -msgstr "مشاريع" - -#: lib/app.php:134 -msgid "Questions" -msgstr "اسئلة" - -#: lib/app.php:135 -msgid "Work" -msgstr "العمل" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "من قبل" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "غير مسمى" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "جدول زمني جديد" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "لا يعاد" - -#: lib/object.php:373 -msgid "Daily" -msgstr "يومي" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "أسبوعي" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "كل نهاية الأسبوع" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "كل اسبوعين" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "شهري" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "سنوي" - -#: lib/object.php:388 -msgid "never" -msgstr "بتاتا" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "حسب تسلسل الحدوث" - -#: lib/object.php:390 -msgid "by date" -msgstr "حسب التاريخ" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "حسب يوم الشهر" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "حسب يوم الاسبوع" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "الأثنين" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "الثلاثاء" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "الاربعاء" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "الخميس" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "الجمعه" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "السبت" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "الاحد" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "الاحداث باسبوع الشهر" - -#: lib/object.php:428 -msgid "first" -msgstr "أول" - -#: lib/object.php:429 -msgid "second" -msgstr "ثاني" - -#: lib/object.php:430 -msgid "third" -msgstr "ثالث" - -#: lib/object.php:431 -msgid "fourth" -msgstr "رابع" - -#: lib/object.php:432 -msgid "fifth" -msgstr "خامس" - -#: lib/object.php:433 -msgid "last" -msgstr "أخير" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "كانون الثاني" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "شباط" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "آذار" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "نيسان" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "أيار" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "حزيران" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "تموز" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "آب" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "أيلول" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "تشرين الاول" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "تشرين الثاني" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "كانون الاول" - -#: lib/object.php:488 -msgid "by events date" -msgstr "حسب تاريخ الحدث" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "حسب يوم السنه" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "حسب رقم الاسبوع" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "حسب اليوم و الشهر" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "تاريخ" - -#: lib/search.php:43 -msgid "Cal." -msgstr "تقويم" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "أحد" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "أثن." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "ثلا." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "أرب." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "خمي." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "جمع." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "سبت" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "ك2" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "شبا." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "آذا." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "نيس." - -#: templates/calendar.php:8 -msgid "May." -msgstr "أيا." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "كل النهار" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "خانات خالية من المعلومات" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "عنوان" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "من تاريخ" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "إلى تاريخ" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "إلى يوم" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "إلى وقت" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "هذا الحدث ينتهي قبل أن يبدأ" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "خطأ في قاعدة البيانات" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "إسبوع" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "شهر" - -#: templates/calendar.php:41 -msgid "List" -msgstr "قائمة" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "اليوم" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "جداولك الزمنيه" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "وصلة CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "جداول زمنيه مشتركه" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "لا يوجد جداول زمنيه مشتركه" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "شارك الجدول الزمني" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "تحميل" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "تعديل" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "حذف" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "مشاركه من قبل" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "جدول زمني جديد" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "عادل الجدول الزمني" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "الاسم المرئي" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "حالي" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "لون الجدول الزمني" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "إحفظ" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "أرسل" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "إلغاء" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "عادل حدث" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "تصدير المعلومات" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "تفاصيل الحدث" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "يعاد" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "تنبيه" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "الحضور" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "شارك" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "عنوان الحدث" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "فئة" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "افصل الفئات بالفواصل" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "عدل الفئات" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "حدث في يوم كامل" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "من" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "إلى" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "خيارات متقدمة" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "مكان" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "مكان الحدث" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "مواصفات" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "وصف الحدث" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "إعادة" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "تعديلات متقدمه" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "اختر ايام الاسبوع" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "اختر الايام" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "و التواريخ حسب يوم السنه." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "و الاحداث حسب يوم الشهر." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "اختر الاشهر" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "اختر الاسابيع" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "و الاحداث حسب اسبوع السنه" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "المده الفاصله" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "نهايه" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "الاحداث" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "انشاء جدول زمني جديد" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "أدخل ملف التقويم" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "أسم الجدول الزمني الجديد" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "إدخال" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "أغلق الحوار" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "إضافة حدث جديد" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "شاهد الحدث" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "لم يتم اختيار الفئات" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "من" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "في" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "المنطقة الزمنية" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24 ساعة" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12 ساعة" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "المستخدمين" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "اختر المستخدمين" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "يمكن تعديله" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "مجموعات" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "اختر المجموعات" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "حدث عام" diff --git a/l10n/ar/contacts.po b/l10n/ar/contacts.po deleted file mode 100644 index 9740f17457ca5d34815db2af2d6906aed88c6fed..0000000000000000000000000000000000000000 --- a/l10n/ar/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <tarek.taha@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "خطء خلال توقيف كتاب العناوين." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "خطء خلال تعديل كتاب العناوين" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "خطء خلال اضافة معرفه جديده." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "لا يمكنك اضافه صفه خاليه." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "يجب ملء على الاقل خانه واحده من العنوان." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "المعلومات الموجودة في ال vCard غير صحيحة. الرجاء إعادة تحديث الصفحة." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "المعارف" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "هذا ليس دفتر عناوينك." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "لم يتم العثور على الشخص." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "الوظيفة" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "البيت" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "الهاتف المحمول" - -#: lib/app.php:203 -msgid "Text" -msgstr "معلومات إضافية" - -#: lib/app.php:204 -msgid "Voice" -msgstr "صوت" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "الفاكس" - -#: lib/app.php:207 -msgid "Video" -msgstr "الفيديو" - -#: lib/app.php:208 -msgid "Pager" -msgstr "الرنان" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "تاريخ الميلاد" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "معرفه" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "أضف شخص " - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "كتب العناوين" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "المؤسسة" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "حذف" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "مفضل" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "الهاتف" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "البريد الالكتروني" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "عنوان" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "انزال المعرفه" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "امحي المعرفه" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "نوع" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "العنوان البريدي" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "إضافة" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "المدينة" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "المنطقة" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "رقم المنطقة" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "البلد" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "كتاب العناوين" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "انزال" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "تعديل" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "كتاب عناوين جديد" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "حفظ" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "الغاء" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index d15bbe4a7cd3b26191554c5432271719c86608a4..7338fcb1fa5e0711093c72f536d3c2e370554ce0 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "تعديلات" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -106,8 +106,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "كلمة السر" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "تم طلب" msgid "Login failed!" msgstr "محاولة دخول فاشلة!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "إسم المستخدم" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "طلب تعديل" @@ -300,52 +301,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "أضف </strong>مستخدم رئيسي <strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "خيارات متقدمة" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "أسس قاعدة البيانات" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "انهاء التعديلات" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "خدمات الوب تحت تصرفك" @@ -353,15 +379,29 @@ msgstr "خدمات الوب تحت تصرفك" msgid "Log out" msgstr "الخروج" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "تذكر" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "أدخل" @@ -376,3 +416,17 @@ msgstr "السابق" #: templates/part.pagenavi.php:20 msgid "next" msgstr "التالي" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/ar/files_odfviewer.po b/l10n/ar/files_odfviewer.po deleted file mode 100644 index 75c766b017b41575f4a235dd129d3271b7798b30..0000000000000000000000000000000000000000 --- a/l10n/ar/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ar/files_pdfviewer.po b/l10n/ar/files_pdfviewer.po deleted file mode 100644 index 91492d720c39bde7d5c8b159a6fc247c9516b31e..0000000000000000000000000000000000000000 --- a/l10n/ar/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ar/files_texteditor.po b/l10n/ar/files_texteditor.po deleted file mode 100644 index ed1f96fd6c30e0d142bc98245d13e19adbd23485..0000000000000000000000000000000000000000 --- a/l10n/ar/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ar/gallery.po b/l10n/ar/gallery.po deleted file mode 100644 index ad8e0279b35bdc7d99e0e69f902fe46f764a1dc0..0000000000000000000000000000000000000000 --- a/l10n/ar/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <tarek.taha@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Arabic (http://www.transifex.net/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "اعادة البحث" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "رجوع" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/ar/impress.po b/l10n/ar/impress.po deleted file mode 100644 index 5bbc9f2fbc1394d3cae1e8af8003cff2bcd592cd..0000000000000000000000000000000000000000 --- a/l10n/ar/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ar/media.po b/l10n/ar/media.po deleted file mode 100644 index b72ad0a3ec11ec3d4df1e9b0a8a473d9a54276ad..0000000000000000000000000000000000000000 --- a/l10n/ar/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <tarek.taha@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:27+0000\n" -"Last-Translator: blackcoder <tarek.taha@gmail.com>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "الموسيقى" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "أضف الالبوم الى القائمه" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "إلعب" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "تجميد" - -#: templates/music.php:5 -msgid "Previous" -msgstr "السابق" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "التالي" - -#: templates/music.php:7 -msgid "Mute" -msgstr "إلغاء الصوت" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "تشغيل الصوت" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "إعادة البحث عن ملفات الموسيقى" - -#: templates/music.php:37 -msgid "Artist" -msgstr "الفنان" - -#: templates/music.php:38 -msgid "Album" -msgstr "الألبوم" - -#: templates/music.php:39 -msgid "Title" -msgstr "العنوان" diff --git a/l10n/ar/tasks.po b/l10n/ar/tasks.po deleted file mode 100644 index baa311388ff5b76ed4679aafe4b1b150159383c9..0000000000000000000000000000000000000000 --- a/l10n/ar/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/ar/user_migrate.po b/l10n/ar/user_migrate.po deleted file mode 100644 index 6a29ae80a3dd49175b324995d291d8968acf360f..0000000000000000000000000000000000000000 --- a/l10n/ar/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/ar/user_openid.po b/l10n/ar/user_openid.po deleted file mode 100644 index 7063958b17353ced2fe57ebbcbd7968027d0d2dc..0000000000000000000000000000000000000000 --- a/l10n/ar/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/ar_SA/admin_dependencies_chk.po b/l10n/ar_SA/admin_dependencies_chk.po deleted file mode 100644 index defa48d8f6f7ff051d4cf915e5f6d3ce057fa858..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/ar_SA/admin_migrate.po b/l10n/ar_SA/admin_migrate.po deleted file mode 100644 index 04ac5b2dfb18b7439f2d7a9ccc8fd3b6140b2d71..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/ar_SA/bookmarks.po b/l10n/ar_SA/bookmarks.po deleted file mode 100644 index 476c475f4605662f4a38bf1923458b49608da5e5..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/ar_SA/calendar.po b/l10n/ar_SA/calendar.po deleted file mode 100644 index 8229289fd361457e13bed1adc70ad94e2265e40c..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/calendar.po +++ /dev/null @@ -1,813 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "" - -#: lib/object.php:373 -msgid "Daily" -msgstr "" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/ar_SA/contacts.po b/l10n/ar_SA/contacts.po deleted file mode 100644 index 26cc5d2266eefcc46448d4090d389e8be17f1e8a..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/ar_SA/core.po b/l10n/ar_SA/core.po index e63e571d91db15facc957378edbd09246c724052..d567806a4436fa0bf3374f90481b88fa30f161e2 100644 --- a/l10n/ar_SA/core.po +++ b/l10n/ar_SA/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" "MIME-Version: 1.0\n" @@ -29,55 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -182,39 +183,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -238,12 +239,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -299,52 +300,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/ar_SA/files_odfviewer.po b/l10n/ar_SA/files_odfviewer.po deleted file mode 100644 index abff78f829aff9a72f85ed68776dc0e1be01628d..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ar_SA/files_pdfviewer.po b/l10n/ar_SA/files_pdfviewer.po deleted file mode 100644 index 8a2c2b3fff1f8e202f0b06f0b390f189386b4d3f..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ar_SA/files_texteditor.po b/l10n/ar_SA/files_texteditor.po deleted file mode 100644 index 384e4edc4d05ed62db1cba169dbc10ce167fefdd..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ar_SA/gallery.po b/l10n/ar_SA/gallery.po deleted file mode 100644 index 9d60ea7bc6d39c94187393fe0dfe3e164443c1dd..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/gallery.po +++ /dev/null @@ -1,58 +0,0 @@ -# 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: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:30+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/ar_SA/impress.po b/l10n/ar_SA/impress.po deleted file mode 100644 index 5c3c10d5df46c8dc0d93b3485c617bbf9a6ac519..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ar_SA/media.po b/l10n/ar_SA/media.po deleted file mode 100644 index 9f152efa4215a791af3ca716e367b0471c3a9891..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/media.po +++ /dev/null @@ -1,66 +0,0 @@ -# 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: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "" - -#: templates/music.php:5 -msgid "Previous" -msgstr "" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "" - -#: templates/music.php:7 -msgid "Mute" -msgstr "" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "" - -#: templates/music.php:37 -msgid "Artist" -msgstr "" - -#: templates/music.php:38 -msgid "Album" -msgstr "" - -#: templates/music.php:39 -msgid "Title" -msgstr "" diff --git a/l10n/ar_SA/tasks.po b/l10n/ar_SA/tasks.po deleted file mode 100644 index 69ac800c5e75cab8d5207a86276dce123850edd5..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/ar_SA/user_migrate.po b/l10n/ar_SA/user_migrate.po deleted file mode 100644 index c49cdec6c68e6012baad87884539eabf0a1ca0de..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/ar_SA/user_openid.po b/l10n/ar_SA/user_openid.po deleted file mode 100644 index bf485303a2e91827e48870849fd29941ef6b8c63..0000000000000000000000000000000000000000 --- a/l10n/ar_SA/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Arabic (Saudi Arabia) (http://www.transifex.com/projects/p/owncloud/language/ar_SA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar_SA\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/bg_BG/admin_dependencies_chk.po b/l10n/bg_BG/admin_dependencies_chk.po deleted file mode 100644 index a90db6fe74f5058ce0934de60d6f41f5bfc27914..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/bg_BG/admin_migrate.po b/l10n/bg_BG/admin_migrate.po deleted file mode 100644 index 758123404549467c278c4c29a0b83351c0ad8c9f..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/bg_BG/bookmarks.po b/l10n/bg_BG/bookmarks.po deleted file mode 100644 index b55c57ce25185855130c4ef8fb0608966f466568..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Yasen Pramatarov <yasen@lindeas.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 09:53+0000\n" -"Last-Translator: Yasen Pramatarov <yasen@lindeas.com>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Отметки" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "неозаглавено" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Завлачете това в лентата с отметки на браузъра си и го натискайте, когато искате да отметнете бързо някоя страница:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Отмятане" - -#: templates/list.php:13 -msgid "Address" -msgstr "Адрес" - -#: templates/list.php:14 -msgid "Title" -msgstr "Заглавие" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Етикети" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Запис на отметката" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Нямате отметки" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Бутон за отметки <br />" diff --git a/l10n/bg_BG/calendar.po b/l10n/bg_BG/calendar.po deleted file mode 100644 index 856d98f8e4348dd940e3a00e839259cc0636363f..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Stefan Ilivanov <ilivanov@gmail.com>, 2011. -# Yasen Pramatarov <yasen@lindeas.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Не са открити календари." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Не са открити събития." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Грешка при внасяне" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Нов часови пояс:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Часовата зона е сменена" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Невалидна заявка" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Календар" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Роджен ден" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Клиенти" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Празници" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Идеи" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Пътуване" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Среща" - -#: lib/app.php:131 -msgid "Other" -msgstr "Друго" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Лично" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Проекти" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Въпроси" - -#: lib/app.php:135 -msgid "Work" -msgstr "Работа" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Нов календар" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Не се повтаря" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Дневно" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Седмично" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Всеки делничен ден" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Двуседмично" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Месечно" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Годишно" - -#: lib/object.php:388 -msgid "never" -msgstr "никога" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Понеделник" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Вторник" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Сряда" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Четвъртък" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Петък" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Събота" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Неделя" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Всички дни" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Липсват полета" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Заглавие" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Седмица" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Месец" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Списък" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Днес" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Вашите календари" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Споделени календари" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Няма споделени календари" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Споделяне на календар" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Изтегляне" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Промяна" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Изтриване" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Нов календар" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Промени календар" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Екранно име" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Активен" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Цвят на календара" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Запис" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Продължи" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Отказ" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Промяна на събитие" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Изнасяне" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Споделяне" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Наименование" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Категория" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Отделете категориите със запетаи" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Редактиране на категориите" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Целодневно събитие" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "От" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "До" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Разширени настройки" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Локация" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Локация" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Описание" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Описание" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Повтори" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "създаване на нов календар" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Изберете календар" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Име на новия календар" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Внасяне" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Затваряне на прозореца" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Ново събитие" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Преглед на събитие" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Няма избрани категории" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Часова зона" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Групи" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/bg_BG/contacts.po b/l10n/bg_BG/contacts.po deleted file mode 100644 index 28690adf4db6858ac2cc2145d9a00c3aa87f5248..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index ff661733f9fc408e5f583161cd5240be29103458..cbc25fc2b3069b0f920f52f274eaef4176162431 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "" msgid "This category already exists: " msgstr "Категорията вече съществува:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Януари" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Февруари" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Март" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Април" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Май" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Юни" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Юли" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Август" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Септември" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Октомври" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Ноември" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Декември" @@ -109,8 +109,8 @@ msgstr "Добре" msgid "No categories selected for deletion." msgstr "Няма избрани категории за изтриване" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Грешка" @@ -150,7 +150,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Парола" @@ -186,39 +187,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -242,12 +243,12 @@ msgstr "Заявено" msgid "Login failed!" msgstr "Входа пропадна!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Потребител" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Нулиране на заявка" @@ -303,52 +304,77 @@ msgstr "Редактиране на категориите" msgid "Add" msgstr "Добавяне" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Създаване на <strong>админ профил</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Разширено" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Директория за данни" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Конфигуриране на базата" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "ще се ползва" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Потребител за базата" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Парола за базата" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Име на базата" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Хост за базата" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Завършване на настройките" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -356,15 +382,29 @@ msgstr "" msgid "Log out" msgstr "Изход" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Забравена парола?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "запомни" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Вход" @@ -379,3 +419,17 @@ msgstr "пред." #: templates/part.pagenavi.php:20 msgid "next" msgstr "следващо" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/bg_BG/files_odfviewer.po b/l10n/bg_BG/files_odfviewer.po deleted file mode 100644 index 255b592f4981b28e063ea9b5e25d8fac7547d325..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/bg_BG/files_pdfviewer.po b/l10n/bg_BG/files_pdfviewer.po deleted file mode 100644 index e38e0c3fcb88bb11df700df29953a7399ca139d0..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/bg_BG/files_texteditor.po b/l10n/bg_BG/files_texteditor.po deleted file mode 100644 index 17803a57746e1351d91166d0fd9bc016cf2aaf1c..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/bg_BG/gallery.po b/l10n/bg_BG/gallery.po deleted file mode 100644 index 2bf1a654c1d47bd07320cbb3843bcb2f563a0609..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/gallery.po +++ /dev/null @@ -1,94 +0,0 @@ -# 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: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/bg_BG/impress.po b/l10n/bg_BG/impress.po deleted file mode 100644 index 35269e2e7009ac827607e551904dbb205e0b5581..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/bg_BG/media.po b/l10n/bg_BG/media.po deleted file mode 100644 index 48b61366ff7ffbff83a05df0e90256ca05e40d89..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Stefan Ilivanov <ilivanov@gmail.com>, 2011. -# Yasen Pramatarov <yasen@lindeas.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 09:39+0000\n" -"Last-Translator: Yasen Pramatarov <yasen@lindeas.com>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "Музика" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "Добавяне на албума към списъка за изпълнение" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Пусни" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Пауза" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Предишна" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Следваща" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Отнеми" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Върни" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Повторно сканиране" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Артист" - -#: templates/music.php:38 -msgid "Album" -msgstr "Албум" - -#: templates/music.php:39 -msgid "Title" -msgstr "Заглавие" diff --git a/l10n/bg_BG/tasks.po b/l10n/bg_BG/tasks.po deleted file mode 100644 index 3f26e086ecc49b940df0de9592da774fe2bbeab8..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/bg_BG/user_migrate.po b/l10n/bg_BG/user_migrate.po deleted file mode 100644 index 37fb22aebf7b326cd9852a7b8efd92ffaa9ac43e..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/bg_BG/user_openid.po b/l10n/bg_BG/user_openid.po deleted file mode 100644 index be71873b6429ed3e8ecea64d38e2a158ffe3021e..0000000000000000000000000000000000000000 --- a/l10n/bg_BG/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/ca/admin_dependencies_chk.po b/l10n/ca/admin_dependencies_chk.po deleted file mode 100644 index 1c5aef0e667155102b2f8a6a88fac7b27392c169..0000000000000000000000000000000000000000 --- a/l10n/ca/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rcalvoi@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 18:28+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "El mòdul php-json és necessari per moltes aplicacions per comunicacions internes" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "El mòdul php-curl és necessari per mostrar el títol de la pàgina quan s'afegeixen adreces d'interès" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "El mòdul php-gd és necessari per generar miniatures d'imatges" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "El mòdul php-ldap és necessari per connectar amb el servidor ldap" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "El mòdul php-zip és necessari per baixar múltiples fitxers de cop" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "El mòdul php-mb_multibyte és necessari per gestionar correctament la codificació." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "El mòdul php-ctype és necessari per validar dades." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "El mòdul php-xml és necessari per compatir els fitxers amb webdav." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "La directiva allow_url_fopen de php.ini hauria d'establir-se en 1 per accedir a la base de coneixements dels servidors OCS" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "El mòdul php-pdo és necessari per desar les dades d'ownCloud en una base de dades." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Estat de dependències" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Usat per:" diff --git a/l10n/ca/admin_migrate.po b/l10n/ca/admin_migrate.po deleted file mode 100644 index 285f752c6ad5f7c0abb3bf38ed4bcc2a3eb5d0b7..0000000000000000000000000000000000000000 --- a/l10n/ca/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rcalvoi@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 18:22+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Exporta aquesta instància de ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Això crearà un fitxer comprimit amb les dades d'aquesta instància ownCloud.\n Escolliu el tipus d'exportació:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Exporta" diff --git a/l10n/ca/bookmarks.po b/l10n/ca/bookmarks.po deleted file mode 100644 index c7e3b09a6052db6e61b2617194ffc6bb660e72b9..0000000000000000000000000000000000000000 --- a/l10n/ca/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rcalvoi@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" -"PO-Revision-Date: 2012-07-28 13:38+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Adreces d'interès" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "sense nom" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Arrossegueu-ho al navegador i feu-hi un clic quan volgueu marcar ràpidament una adreça d'interès:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Llegeix més tard" - -#: templates/list.php:13 -msgid "Address" -msgstr "Adreça" - -#: templates/list.php:14 -msgid "Title" -msgstr "Títol" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Etiquetes" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Desa l'adreça d'interès" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "No teniu adreces d'interès" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Bookmarklet <br />" diff --git a/l10n/ca/calendar.po b/l10n/ca/calendar.po deleted file mode 100644 index 3976c559bb6c15e85e61a8f544859d9e4818aca2..0000000000000000000000000000000000000000 --- a/l10n/ca/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <joan@montane.cat>, 2012. -# <rcalvoi@yahoo.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-12 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 11:20+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "No tots els calendaris estan en memòria" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Sembla que tot està en memòria" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "No s'han trobat calendaris." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "No s'han trobat events." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Calendari erroni" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "El fitxer no contenia esdeveniments o aquests ja estaven desats en el vostre caledari" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "els esdeveniments s'han desat en el calendari nou" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Ha fallat la importació" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "els esdveniments s'han desat en el calendari" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nova zona horària:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "La zona horària ha canviat" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Sol.licitud no vàlida" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendari" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd d/M" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd d/M" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "d [MMM ][yyyy ]{'—' d MMM yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, d MMM, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Aniversari" - -#: lib/app.php:122 -msgid "Business" -msgstr "Feina" - -#: lib/app.php:123 -msgid "Call" -msgstr "Trucada" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clients" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Remitent" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Vacances" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idees" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Viatge" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Sant" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Reunió" - -#: lib/app.php:131 -msgid "Other" -msgstr "Altres" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Personal" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projectes" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Preguntes" - -#: lib/app.php:135 -msgid "Work" -msgstr "Feina" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "per" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "sense nom" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Calendari nou" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "No es repeteix" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Diari" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Mensual" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Cada setmana" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Bisetmanalment" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mensualment" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Cada any" - -#: lib/object.php:388 -msgid "never" -msgstr "mai" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "per aparicions" - -#: lib/object.php:390 -msgid "by date" -msgstr "per data" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "per dia del mes" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "per dia de la setmana" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Dilluns" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Dimarts" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Dimecres" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Dijous" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Divendres" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Dissabte" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Diumenge" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "esdeveniments la setmana del mes" - -#: lib/object.php:428 -msgid "first" -msgstr "primer" - -#: lib/object.php:429 -msgid "second" -msgstr "segon" - -#: lib/object.php:430 -msgid "third" -msgstr "tercer" - -#: lib/object.php:431 -msgid "fourth" -msgstr "quart" - -#: lib/object.php:432 -msgid "fifth" -msgstr "cinquè" - -#: lib/object.php:433 -msgid "last" -msgstr "últim" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Gener" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Febrer" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Març" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Abril" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maig" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juny" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juliol" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Agost" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Setembre" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Octubre" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Novembre" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Desembre" - -#: lib/object.php:488 -msgid "by events date" -msgstr "per data d'esdeveniments" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "per ahir(s)" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "per número(s) de la setmana" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "per dia del mes" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Dg." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Dl." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Dm." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Dc." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Dj." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Dv." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Ds." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Gen." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Febr." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Març" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Abr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Maig" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Juny" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Ag." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Set." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Oct." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Des." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Tot el dia" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Els camps que falten" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Títol" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Des de la data" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Des de l'hora" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Fins a la data" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Fins a l'hora" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "L'esdeveniment acaba abans que comenci" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Hi ha un error de base de dades" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Setmana" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mes" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Llista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Avui" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Configuració" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Els vostres calendaris" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Enllaç CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Calendaris compartits" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "No hi ha calendaris compartits" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Comparteix el calendari" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Baixa" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Edita" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Suprimeix" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "compartit amb vós" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Calendari nou" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Edita el calendari" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Mostra el nom" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Actiu" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Color del calendari" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Desa" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Envia" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Cancel·la" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Edició d'un esdeveniment" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exporta" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Eventinfo" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Repetició" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarma" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Assistents" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Comparteix" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Títol de l'esdeveniment" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categoria" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Separeu les categories amb comes" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Edita categories" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Esdeveniment de tot el dia" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Des de" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Fins a" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Opcions avançades" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Ubicació" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Ubicació de l'esdeveniment" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Descripció" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Descripció de l'esdeveniment" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Repetició" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avançat" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Dies de la setmana seleccionats" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Seleccionar dies" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "i dies d'esdeveniment de l'any." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "i dies d'esdeveniment del mes." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Seleccionar mesos" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Seleccionar setmanes" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "i setmanes d'esdeveniment de l'any." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Interval" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Final" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "aparicions" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "crea un nou calendari" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importa un fitxer de calendari" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Escolliu un calendari" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nom del nou calendari" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Escolliu un nom disponible!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Ja hi ha un calendari amb aquest nom. Si continueu, els calendaris es combinaran." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importa" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Tanca el diàleg" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Crea un nou esdeveniment" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Mostra un event" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "No hi ha categories seleccionades" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "de" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "a" - -#: templates/settings.php:10 -msgid "General" -msgstr "General" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Zona horària" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Actualitza la zona horària automàticament" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Format horari" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Comença la setmana en " - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Memòria de cau" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Neteja la memòria de cau pels esdeveniments amb repetició" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URLs" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Adreça de sincronització del calendari CalDAV" - -#: templates/settings.php:87 -msgid "more info" -msgstr "més informació" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Adreça primària (Kontact et al)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "IOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Enllaç(os) iCalendar només de lectura" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Usuaris" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "seleccioneu usuaris" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Editable" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grups" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "seleccioneu grups" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "fes-ho public" diff --git a/l10n/ca/contacts.po b/l10n/ca/contacts.po deleted file mode 100644 index d7fbb584694b83cd3f147abcf1172be67c50ab5f..0000000000000000000000000000000000000000 --- a/l10n/ca/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <joan@montane.cat>, 2012. -# <rcalvoi@yahoo.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 08:24+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Error en (des)activar la llibreta d'adreces." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "no s'ha establert la id." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "No es pot actualitzar la llibreta d'adreces amb un nom buit" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Error en actualitzar la llibreta d'adreces." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "No heu facilitat cap ID" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Error en establir la suma de verificació." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "No heu seleccionat les categories a eliminar." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "No s'han trobat llibretes d'adreces." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "No s'han trobat contactes." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "S'ha produït un error en afegir el contacte." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "no s'ha establert el nom de l'element." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "No s'ha pogut processar el contacte:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "No es pot afegir una propietat buida." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Almenys heu d'omplir un dels camps d'adreça." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Esteu intentant afegir una propietat duplicada:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Falta el paràmetre IM." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "IM desconegut:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "La informació de la vCard és incorrecta. Carregueu la pàgina de nou." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Falta la ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Error en analitzar la ID de la VCard: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "no s'ha establert la suma de verificació." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "La informació de la vCard és incorrecta. Carregueu de nou la pàgina:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Alguna cosa ha anat FUBAR." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "No s'ha tramès cap ID de contacte." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Error en llegir la foto del contacte." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Error en desar el fitxer temporal." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "La foto carregada no és vàlida." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "falta la ID del contacte." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "No heu tramès el camí de la foto." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "El fitxer no existeix:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Error en carregar la imatge." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Error en obtenir l'objecte contacte." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Error en obtenir la propietat PHOTO." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Error en desar el contacte." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Error en modificar la mida de la imatge" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Error en retallar la imatge" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Error en crear la imatge temporal" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Error en trobar la imatge:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Error en carregar contactes a l'emmagatzemament." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "No hi ha errors, el fitxer s'ha carregat correctament" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "El fitxer carregat supera la directiva upload_max_filesize de php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "El fitxer només s'ha carregat parcialment" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "No s'ha carregat cap fitxer" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Falta un fitxer temporal" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "No s'ha pogut desar la imatge temporal: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "No s'ha pogut carregar la imatge temporal: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "No s'ha carregat cap fitxer. Error desconegut" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Contactes" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Aquesta funcionalitat encara no està implementada" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "No implementada" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "No s'ha pogut obtenir una adreça vàlida." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Error" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "No teniu permisos per afegir contactes a " - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Seleccioneu una de les vostres llibretes d'adreces" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Error de permisos" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Aquesta propietat no pot ser buida." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "No s'han pogut serialitzar els elements." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' s'ha cridat sense argument de tipus. Informeu-ne a bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Edita el nom" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "No s'han seleccionat fitxers per a la pujada." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "El fitxer que intenteu pujar excedeix la mida màxima de pujada en aquest servidor." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Error en carregar la imatge de perfil." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Seleccioneu un tipus" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Heu marcat eliminar alguns contactes, però encara no s'han eliminat. Espereu mentre s'esborren." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Voleu fusionar aquestes llibretes d'adreces?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultat: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " importat, " - -#: js/loader.js:49 -msgid " failed." -msgstr " fallada." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "El nom a mostrar no pot ser buit" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "No s'ha trobat la llibreta d'adreces: " - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Aquesta no és la vostra llibreta d'adreces" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "No s'ha trobat el contacte." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Feina" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Casa" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Altres" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mòbil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Text" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Veu" - -#: lib/app.php:205 -msgid "Message" -msgstr "Missatge" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Vídeo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Paginador" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Aniversari" - -#: lib/app.php:253 -msgid "Business" -msgstr "Negocis" - -#: lib/app.php:254 -msgid "Call" -msgstr "Trucada" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Clients" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Emissari" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Vacances" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Idees" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Viatge" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Aniversari" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Reunió" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Personal" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projectes" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Preguntes" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Aniversari de {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contacte" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "No teniu permisos per editar aquest contacte" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "No teniu permisos per esborrar aquest contacte" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Afegeix un contacte" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importa" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Configuració" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Llibretes d'adreces" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Tanca" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Dreceres de teclat" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navegació" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Següent contacte de la llista" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Contacte anterior de la llista" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Expandeix/col·lapsa la llibreta d'adreces" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Llibreta d'adreces següent" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Llibreta d'adreces anterior" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Accions" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Carrega de nou la llista de contactes" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Afegeix un contacte nou" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Afegeix una llibreta d'adreces nova" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Esborra el contacte" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Elimina la foto a carregar" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Elimina la foto actual" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Edita la foto actual" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Carrega una foto nova" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Selecciona una foto de ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format personalitzat, Nom curt, Nom sencer, Invertit o Invertit amb coma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Edita detalls del nom" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organització" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Suprimeix" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Sobrenom" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Escriviu el sobrenom" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Adreça web" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Vés a la web" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grups" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Separeu els grups amb comes" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Edita els grups" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferit" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Especifiqueu una adreça de correu electrònic correcta" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Escriviu una adreça de correu electrònic" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Envia per correu electrònic a l'adreça" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Elimina l'adreça de correu electrònic" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Escriviu el número de telèfon" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Elimina el número de telèfon" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Instant Messenger" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Elimina IM" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Visualitza al mapa" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Edita els detalls de l'adreça" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Afegiu notes aquí." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Afegeix un camp" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telèfon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Correu electrònic" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Missatgeria instantània" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adreça" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Nota" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Baixa el contacte" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Suprimeix el contacte" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "La imatge temporal ha estat eliminada de la memòria de cau." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Edita l'adreça" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tipus" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Adreça postal" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Adreça" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Carrer i número" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Addicional" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Número d'apartament, etc." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Ciutat" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Comarca" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "p. ex. Estat o província " - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Codi postal" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Codi postal" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "País" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Llibreta d'adreces" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Prefix honorífic:" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Srta" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Sra" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Sr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Senyor" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Sra" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Nom específic" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Noms addicionals" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Nom de familia" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Sufix honorífic:" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importa un fitxer de contactes" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Escolliu la llibreta d'adreces" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "crea una llibreta d'adreces nova" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nom de la nova llibreta d'adreces" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "S'estan important contactes" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "No teniu contactes a la llibreta d'adreces." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Afegeix un contacte" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Selecccioneu llibretes d'adreces" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Escriviu un nom" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Escriviu una descripció" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Adreces de sincronització CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "més informació" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Adreça primària (Kontact i al)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Mostra l'enllaç CardDav" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Mostra l'enllaç VCF només de lectura" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Comparteix" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Baixa" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Edita" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nova llibreta d'adreces" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nom" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Descripció" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Desa" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Cancel·la" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Més..." diff --git a/l10n/ca/core.po b/l10n/ca/core.po index dcfd7d3d0c390d665d71c1b1f3189e9dfdca98ae..c8709a4ef414bd2b796b2915760e9959c28d6b74 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 02:03+0200\n" -"PO-Revision-Date: 2012-10-01 08:49+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 06:19+0000\n" "Last-Translator: rogerc <rcalvoi@yahoo.com>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -31,55 +31,55 @@ msgstr "No voleu afegir cap categoria?" msgid "This category already exists: " msgstr "Aquesta categoria ja existeix:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Arranjament" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Gener" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Febrer" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Març" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Abril" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Maig" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Juny" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Juliol" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Agost" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Setembre" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Octubre" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Novembre" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Desembre" @@ -107,8 +107,8 @@ msgstr "D'acord" msgid "No categories selected for deletion." msgstr "No hi ha categories per eliminar." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:493 -#: js/share.js:505 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Error" @@ -148,7 +148,8 @@ msgstr "Comparteix amb enllaç" msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Contrasenya" @@ -208,15 +209,15 @@ msgstr "elimina" msgid "share" msgstr "comparteix" -#: js/share.js:321 js/share.js:480 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:493 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data d'expiració" -#: js/share.js:505 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Error en establir la data d'expiració" @@ -240,8 +241,8 @@ msgstr "Sol·licitat" msgid "Login failed!" msgstr "No s'ha pogut iniciar la sessió" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nom d'usuari" @@ -301,52 +302,77 @@ msgstr "Edita les categories" msgid "Add" msgstr "Afegeix" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Avís de seguretat" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "No està disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL." + +#: 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 "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte." + +#: 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 "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web." + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>compte d'administrador</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "s'usarà" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "controleu els vostres serveis web" @@ -354,15 +380,29 @@ msgstr "controleu els vostres serveis web" msgid "Log out" msgstr "Surt" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "L'ha rebutjat l'acceditació automàtica!" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Se no heu canviat la contrasenya recentment el vostre compte pot estar compromès!" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "recorda'm" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Inici de sessió" @@ -377,3 +417,17 @@ msgstr "anterior" #: templates/part.pagenavi.php:20 msgid "next" msgstr "següent" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "Avís de seguretat!" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "Comproveu la vostra contrasenya. <br/>Per raons de seguretat se us pot demanar escriure de nou la vostra contrasenya." + +#: templates/verify.php:16 +msgid "Verify" +msgstr "Comprova" diff --git a/l10n/ca/files_odfviewer.po b/l10n/ca/files_odfviewer.po deleted file mode 100644 index e41b59b03caac87c35a14ab14ae10c5ead0a213c..0000000000000000000000000000000000000000 --- a/l10n/ca/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ca/files_pdfviewer.po b/l10n/ca/files_pdfviewer.po deleted file mode 100644 index 9645c269ddde967f337bd4d651e7eb39a77ef526..0000000000000000000000000000000000000000 --- a/l10n/ca/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ca/files_texteditor.po b/l10n/ca/files_texteditor.po deleted file mode 100644 index 9e62b3f7a2cae5d4a43573423ade2b949bd20d1f..0000000000000000000000000000000000000000 --- a/l10n/ca/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ca/gallery.po b/l10n/ca/gallery.po deleted file mode 100644 index 7be2fa1525474d376035efa0672440cac74c8b5a..0000000000000000000000000000000000000000 --- a/l10n/ca/gallery.po +++ /dev/null @@ -1,59 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rcalvoi@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 07:08+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Fotos" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Comperteix la galeria" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Error: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Error intern" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Passi de diapositives" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Enrera" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Elimina la confirmació" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Voleu eliminar l'àlbum" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Canvia el nom de l'àlbum" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nom nou de l'àlbum" diff --git a/l10n/ca/impress.po b/l10n/ca/impress.po deleted file mode 100644 index 198ff99c6d45fac7e4d4d8107cf78ed25c31d729..0000000000000000000000000000000000000000 --- a/l10n/ca/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ca/media.po b/l10n/ca/media.po deleted file mode 100644 index 4d41f39ffe580eee085336b93043ef71fc97dbe9..0000000000000000000000000000000000000000 --- a/l10n/ca/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rcalvoi@yahoo.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Música" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Reprodueix" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pausa" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Anterior" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Següent" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Mut" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Activa el so" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Explora de nou la col·lecció" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artista" - -#: templates/music.php:38 -msgid "Album" -msgstr "Àlbum" - -#: templates/music.php:39 -msgid "Title" -msgstr "Títol" diff --git a/l10n/ca/tasks.po b/l10n/ca/tasks.po deleted file mode 100644 index b96519e57fad302f962ac1a2e5984367c13f04a5..0000000000000000000000000000000000000000 --- a/l10n/ca/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rcalvoi@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 18:37+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "data/hora incorrecta" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Tasques" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Cap categoria" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Sense especificar" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=major" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=mitjana" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=inferior" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Elimina el resum" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Percentatge completat no vàlid" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Prioritat no vàlida" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Afegeix una tasca" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Ordena per" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Ordena per llista" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Ordena els complets" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Ordena per ubicació" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Ordena per prioritat" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Ordena per etiqueta" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Carregant les tasques..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Important" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Més" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Menys" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Elimina" diff --git a/l10n/ca/user_migrate.po b/l10n/ca/user_migrate.po deleted file mode 100644 index c603e775e46ab2ac3a3787cf482ff0f9ee82f811..0000000000000000000000000000000000000000 --- a/l10n/ca/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rcalvoi@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 08:04+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Exporta" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Alguna cosa ha anat malament en generar el fitxer d'exportació" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "S'ha produït un error" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Exportar el compte d'usuari" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Això crearà un fitxer comprimit que conté el vostre compte ownCloud." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Importar el compte d'usuari" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "zip d'usuari ownCloud" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Importa" diff --git a/l10n/ca/user_openid.po b/l10n/ca/user_openid.po deleted file mode 100644 index 35c53f5627fba29e05a663ea1975030bc166460b..0000000000000000000000000000000000000000 --- a/l10n/ca/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rcalvoi@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 18:41+0000\n" -"Last-Translator: rogerc <rcalvoi@yahoo.com>\n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Això és un punt final de servidor OpenID. Per més informació consulteu" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identitat:<b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Domini:<b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Usuari:<b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Inici de sessió" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Error:<b>No heu seleccionat cap usuari" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "podeu autenticar altres llocs web amb aquesta adreça" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Servidor OpenID autoritzat" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "La vostra adreça a Wordpress, Identi.ca …" diff --git a/l10n/cs_CZ/admin_dependencies_chk.po b/l10n/cs_CZ/admin_dependencies_chk.po deleted file mode 100644 index 82774f6a248961ec325b02af7df7bd5e33ec2180..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Martin <fireball@atlas.cz>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-17 15:37+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Modul php-json je třeba pro vzájemnou komunikaci mnoha aplikací" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Modul php-curl je třeba pro zobrazení titulu strany v okamžiku přidání záložky" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Modul php-gd je třeba pro tvorbu náhledů Vašich obrázků" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Modul php-ldap je třeba pro připojení na Váš ldap server" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Modul php-zip je třeba pro souběžné stahování souborů" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Modul php-mb_multibyte je třeba pro správnou funkci kódování." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Modul php-ctype je třeba k ověřování dat." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Modul php-xml je třeba ke sdílení souborů prostřednictvím WebDAV." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "Příkaz allow_url_fopen ve Vašem php.ini souboru by měl být nastaven na 1 kvůli získávání informací z OCS serverů" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Modul php-pdo je třeba pro ukládání dat ownCloud do databáze" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Status závislostí" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Používáno:" diff --git a/l10n/cs_CZ/admin_migrate.po b/l10n/cs_CZ/admin_migrate.po deleted file mode 100644 index a43f6e5be06d4795098c7d3eb0a7e82ffbc0c839..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Martin <fireball@atlas.cz>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 10:35+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Export této instance ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Bude vytvořen komprimovaný soubor obsahující data této instance ownCloud.⏎ Zvolte typ exportu:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Export" diff --git a/l10n/cs_CZ/bookmarks.po b/l10n/cs_CZ/bookmarks.po deleted file mode 100644 index a6d7d19a244329c0d02625bfbb065fdfd7030779..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Martin <fireball@atlas.cz>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 09:44+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Záložky" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "nepojmenovaný" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Přetáhněte do Vašeho prohlížeče a kliněte, pokud si přejete rychle uložit stranu do záložek:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Přečíst později" - -#: templates/list.php:13 -msgid "Address" -msgstr "Adresa" - -#: templates/list.php:14 -msgid "Title" -msgstr "Název" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Tagy" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Uložit záložku" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Nemáte žádné záložky" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Záložky <br />" diff --git a/l10n/cs_CZ/calendar.po b/l10n/cs_CZ/calendar.po deleted file mode 100644 index f06317221c05fbe9366b1168c58f57714ec1f24c..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/calendar.po +++ /dev/null @@ -1,816 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jan Krejci <krejca85@gmail.com>, 2011, 2012. -# Martin <fireball@atlas.cz>, 2011, 2012. -# Michal Hrušecký <Michal@hrusecky.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 09:41+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "V paměti nejsou uloženy kompletně všechny kalendáře" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Zdá se, že vše je kompletně uloženo v paměti" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Žádné kalendáře nenalezeny." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Žádné události nenalezeny." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Nesprávný kalendář" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Soubor, obsahující všechny záznamy nebo je prázdný, je již uložen ve Vašem kalendáři." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "Záznam byl uložen v novém kalendáři" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Import selhal" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "záznamů bylo uloženo ve Vašem kalendáři" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nová časová zóna:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Časová zóna byla změněna" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Chybný požadavek" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalendář" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM rrrr" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "d. MMM[ yyyy]{ '—' d.[ MMM] yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, rrrr" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Narozeniny" - -#: lib/app.php:122 -msgid "Business" -msgstr "Obchodní" - -#: lib/app.php:123 -msgid "Call" -msgstr "Hovor" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klienti" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Doručovatel" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Prázdniny" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Nápady" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Cesta" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Výročí" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Schůzka" - -#: lib/app.php:131 -msgid "Other" -msgstr "Další" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Osobní" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekty" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Dotazy" - -#: lib/app.php:135 -msgid "Work" -msgstr "Pracovní" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "od" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "nepojmenováno" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nový kalendář" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Neopakuje se" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Denně" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Týdně" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Každý všední den" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Jednou za dva týdny" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Měsíčně" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Ročně" - -#: lib/object.php:388 -msgid "never" -msgstr "nikdy" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "podle výskytu" - -#: lib/object.php:390 -msgid "by date" -msgstr "podle data" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "podle dne v měsíci" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "podle dne v týdnu" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Pondělí" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Úterý" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Středa" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Čtvrtek" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Pátek" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sobota" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Neděle" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "týdenní události v měsíci" - -#: lib/object.php:428 -msgid "first" -msgstr "první" - -#: lib/object.php:429 -msgid "second" -msgstr "druhý" - -#: lib/object.php:430 -msgid "third" -msgstr "třetí" - -#: lib/object.php:431 -msgid "fourth" -msgstr "čtvrtý" - -#: lib/object.php:432 -msgid "fifth" -msgstr "pátý" - -#: lib/object.php:433 -msgid "last" -msgstr "poslední" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Leden" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Únor" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Březen" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Duben" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Květen" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Červen" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Červenec" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Srpen" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Září" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Říjen" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Listopad" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Prosinec" - -#: lib/object.php:488 -msgid "by events date" -msgstr "podle data události" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "po dni (dnech)" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "podle čísel týdnů" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "podle dne a měsíce" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Datum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Ne" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Po" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Út" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "St" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Čt" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Pá" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "So" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Ne" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "únor" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "březen" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "duben" - -#: templates/calendar.php:8 -msgid "May." -msgstr "květen" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "červen" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "červenec" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "srpen" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "září" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "říjen" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "listopad" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "prosinec" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Celý den" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Chybějící pole" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Název" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Od data" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Od" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Do data" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Do" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Akce končí před zahájením" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Chyba v databázi" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "týden" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "měsíc" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Seznam" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "dnes" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Nastavení" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Vaše kalendáře" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav odkaz" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Sdílené kalendáře" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Žádné sdílené kalendáře" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Sdílet kalendář" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Stáhnout" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Editovat" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Odstranit" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "sdíleno s vámi uživatelem" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nový kalendář" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Editovat kalendář" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Zobrazované jméno" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktivní" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Barva kalendáře" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Uložit" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Potvrdit" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Storno" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Editovat událost" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Export" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informace o události" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Opakující se" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Účastníci" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Sdílet" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Název události" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategorie" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Kategorie oddělené čárkami" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Upravit kategorie" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Celodenní událost" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "od" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "do" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Pokročilé volby" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Umístění" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Místo konání události" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Popis" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Popis události" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Opakování" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Pokročilé" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Vybrat dny v týdnu" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Vybrat dny" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "a denní události v roce" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "a denní události v měsíci" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Vybrat měsíce" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Vybrat týdny" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "a týden s událostmi v roce" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Interval" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Konec" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "výskyty" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "vytvořit nový kalendář" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importovat soubor kalendáře" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Vyberte prosím kalendář" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Název nového kalendáře" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Použijte volné jméno!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Kalendář s trímto názvem již existuje. Pokud název použijete, stejnojmenné kalendáře budou sloučeny." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Import" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Zavřít dialog" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Vytvořit novou událost" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Zobrazit událost" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Žádné kategorie nevybrány" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "z" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "v" - -#: templates/settings.php:10 -msgid "General" -msgstr "Hlavní" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Časové pásmo" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Obnovit auronaricky časovou zónu." - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Formát času" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Týden začína v" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Paměť" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Vymazat paměť pro opakuijísí se záznamy" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URLs" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Kalendář CalDAV synchronizuje adresy" - -#: templates/settings.php:87 -msgid "more info" -msgstr "podrobnosti" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Primární adresa (veřejná)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Odkaz(y) kalendáře pouze pro čtení" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Uživatelé" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "vybrat uživatele" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Upravovatelné" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Skupiny" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "vybrat skupiny" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "zveřejnit" diff --git a/l10n/cs_CZ/contacts.po b/l10n/cs_CZ/contacts.po deleted file mode 100644 index 9b1fa750be141502c2e3f37d31dd88e1664b1b39..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jan Krejci <krejca85@gmail.com>, 2011, 2012. -# Martin <fireball@atlas.cz>, 2011, 2012. -# Michal Hrušecký <Michal@hrusecky.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:58+0000\n" -"Last-Translator: Jan Krejci <krejca85@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Chyba při (de)aktivaci adresáře." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id neni nastaveno." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Nelze aktualizovat adresář s prázdným jménem." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Chyba při aktualizaci adresáře." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "ID nezadáno" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Chyba při nastavování kontrolního součtu." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Žádné kategorie nebyly vybrány k smazání." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Žádný adresář nenalezen." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Žádné kontakty nenalezeny." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Během přidávání kontaktu nastala chyba." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "jméno elementu není nastaveno." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Nelze analyzovat kontakty" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Nelze přidat prazdný údaj." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Musí být uveden nejméně jeden z adresních údajů" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Pokoušíte se přidat duplicitní atribut: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Chybějící parametr IM" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "Neznámý IM:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informace o vCard je nesprávná. Obnovte stránku, prosím." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Chybí ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Chyba při parsování VCard pro ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "kontrolní součet není nastaven." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informace o vCard je nesprávná. Obnovte stránku, prosím." - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Něco se pokazilo. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Nebylo nastaveno ID kontaktu." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Chyba při načítání fotky kontaktu." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Chyba při ukládání dočasného souboru." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Načítaná fotka je vadná." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Chybí ID kontaktu." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Žádná fotka nebyla nahrána." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Soubor neexistuje:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Chyba při načítání obrázku." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Chyba při převzetí objektu kontakt." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Chyba při získávání fotky." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Chyba při ukládání kontaktu." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Chyba při změně velikosti obrázku." - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Chyba při osekávání obrázku." - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Chyba při vytváření dočasného obrázku." - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Chyba při hledání obrázku:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Chyba při nahrávání kontaktů do úložiště." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Nevyskytla se žádná chyba, soubor byl úspěšně nahrán" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Nahrávaný soubor překračuje nastavení upload_max_filesize directive v php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Nahrávaný soubor překračuje nastavení MAX_FILE_SIZE z voleb HTML formuláře" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Nahrávaný soubor se nahrál pouze z části" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Žádný soubor nebyl nahrán" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Chybí dočasný adresář" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Nemohu uložit dočasný obrázek: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Nemohu načíst dočasný obrázek: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Soubor nebyl odeslán. Neznámá chyba" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Kontakty" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Bohužel, tato funkce nebyla ještě implementována." - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Neimplementováno" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Nelze získat platnou adresu." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Chyba" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "Nemáte práva přidat kontakt do" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Prosím vyberte jeden z vašich adresářů" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Chyba přístupových práv" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Tento parametr nemuže zůstat nevyplněn." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Prvky nelze převést.." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' voláno bez argumentu. Prosím oznamte chybu na bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Upravit jméno" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Žádné soubory nebyly vybrány k nahrání." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Soubor, který se pokoušíte odeslat, přesahuje maximální povolenou velikost." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Chyba při otevírání obrázku profilu" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Vybrat typ" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Některé kontakty jsou označeny ke smazání. Počkete prosím na dokončení operace." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Chcete spojit tyto adresáře?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Výsledek: " - -#: js/loader.js:49 -msgid " imported, " -msgstr "importováno v pořádku," - -#: js/loader.js:49 -msgid " failed." -msgstr "neimportováno." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Zobrazované jméno nemůže zůstat prázdné." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Adresář nenalezen:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Toto není Váš adresář." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontakt nebyl nalezen." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Pracovní" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Domácí" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Ostatní" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Text" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Hlas" - -#: lib/app.php:205 -msgid "Message" -msgstr "Zpráva" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Narozeniny" - -#: lib/app.php:253 -msgid "Business" -msgstr "Pracovní" - -#: lib/app.php:254 -msgid "Call" -msgstr "Volat" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Klienti" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Dodavatel" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Prázdniny" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Nápady" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Cestování" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubileum" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Schůzka" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Osobní" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projekty" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Dotazy" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Narozeniny {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "Nemáte práva editovat tento kontakt" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "Nemáte práva smazat tento kontakt" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Přidat kontakt" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Import" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Nastavení" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adresáře" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Zavřít" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Klávesoví zkratky" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navigace" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Následující kontakt v seznamu" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Předchozí kontakt v seznamu" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Rozbalit/sbalit aktuální Adresář" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Následující Adresář" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Předchozí Adresář" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Akce" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Občerstvit seznam kontaktů" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Přidat kontakt" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Předat nový Adresář" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Odstranit aktuální kontakt" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Přetáhněte sem fotku pro její nahrání" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Smazat současnou fotku" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Upravit současnou fotku" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Nahrát novou fotku" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Vybrat fotku z ownCloudu" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formát vlastní, křestní, celé jméno, obráceně nebo obráceně oddelené čárkami" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Upravit podrobnosti jména" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizace" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Odstranit" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Přezdívka" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Zadejte přezdívku" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Web" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Přejít na web" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd. mm. yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Skupiny" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Oddělte skupiny čárkami" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Upravit skupiny" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferovaný" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Prosím zadejte platnou e-mailovou adresu" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Zadat e-mailovou adresu" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Odeslat na adresu" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Smazat e-mail" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Zadat telefoní číslo" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Smazat telefoní číslo" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Instant Messenger" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Smazat IM" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Zobrazit na mapě" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Upravit podrobnosti adresy" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Zde můžete připsat poznámky." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Přidat políčko" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Email" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Instant Messaging" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresa" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Poznámka" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Stáhnout kontakt" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Odstranit kontakt" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Obrázek byl odstraněn z dočasné paměti." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Upravit adresu" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Typ" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "PO box" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Ulice" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Ulice a číslo" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Rozšířené" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Byt číslo atd." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Město" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Kraj" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Např. stát nebo okres" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "PSČ" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "PSČ" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Země" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adresář" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Tituly před" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Slečna" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Ms" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Pan" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Paní" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Křestní jméno" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Další jména" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Příjmení" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Tituly za" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "JUDr." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "MUDr." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "ml." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "st." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importovat soubor kontaktů" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Prosím zvolte adresář" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "vytvořit nový adresář" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Jméno nového adresáře" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importování kontaktů" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Nemáte žádné kontakty v adresáři." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Přidat kontakt" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Vybrat Adresář" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Vložte jméno" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Vložte popis" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Adresa pro synchronizaci pomocí CardDAV:" - -#: templates/settings.php:3 -msgid "more info" -msgstr "víc informací" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Hlavní adresa (Kontakt etc)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Zobrazit odklaz CardDAV:" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Zobrazit odkaz VCF pouze pro čtení" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Sdílet" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Stažení" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Editovat" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nový adresář" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Název" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Popis" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Uložit" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Storno" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Více..." diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index b589fce4cd95def45069f81ab48b518f41b32729..356ffa03df511012e34debe69cd3bee1007258c0 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" -"PO-Revision-Date: 2012-09-29 08:16+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 08:31+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "Žádná kategorie k přidání?" msgid "This category already exists: " msgstr "Tato kategorie již existuje: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavení" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Leden" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Únor" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Březen" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Duben" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Květen" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Červen" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Červenec" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Srpen" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Září" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Říjen" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Listopad" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Prosinec" @@ -109,8 +109,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Žádné kategorie nebyly vybrány ke smazání." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Chyba" @@ -150,7 +150,8 @@ msgstr "Sdílet s odkazem" msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Heslo" @@ -186,39 +187,39 @@ msgstr "s" msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "vytvořit" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "aktualizovat" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "smazat" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "sdílet" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" @@ -242,8 +243,8 @@ msgstr "Požadováno" msgid "Login failed!" msgstr "Přihlášení selhalo." -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Uživatelské jméno" @@ -303,52 +304,77 @@ msgstr "Upravit kategorie" msgid "Add" msgstr "Přidat" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Bezpečnostní upozornění" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP." + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem." + +#: 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 "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess, který je poskytován ownCloud, nefunguje. Důrazně Vám doporučujeme nastavit váš webový server tak, aby nebyl adresář dat přístupný, nebo přesunout adresář dat mimo kořenovou složku dokumentů webového serveru." + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Vytvořit <strong>účet správce</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Dokončit nastavení" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" @@ -356,15 +382,29 @@ msgstr "webové služby pod Vaší kontrolou" msgid "Log out" msgstr "Odhlásit se" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "Automatické přihlášení odmítnuto." + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "zapamatovat si" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Přihlásit" @@ -379,3 +419,17 @@ msgstr "předchozí" #: templates/part.pagenavi.php:20 msgid "next" msgstr "následující" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "Bezpečnostní upozornění." + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "Ověřte, prosím, své heslo. <br/>Z bezpečnostních důvodů můžete být občas požádáni o jeho opětovné zadání." + +#: templates/verify.php:16 +msgid "Verify" +msgstr "Ověřit" diff --git a/l10n/cs_CZ/files_odfviewer.po b/l10n/cs_CZ/files_odfviewer.po deleted file mode 100644 index 68d606283518a27a94bf80236f7f9693eab50bfd..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/cs_CZ/files_pdfviewer.po b/l10n/cs_CZ/files_pdfviewer.po deleted file mode 100644 index 87f8e0f3ff922b151e9cc802418b85813968ad3c..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/cs_CZ/files_texteditor.po b/l10n/cs_CZ/files_texteditor.po deleted file mode 100644 index 6c9ac9a372c30fd6d297467069283c17f110c69d..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/cs_CZ/gallery.po b/l10n/cs_CZ/gallery.po deleted file mode 100644 index f24db5838a04eb4649bead8265d1ebc1a3eec773..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/gallery.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jan Krejci <krejca85@gmail.com>, 2012. -# Martin <fireball@atlas.cz>, 2012. -# Michal Hrušecký <Michal@hrusecky.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 09:30+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Obrázky" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Sdílet galerii" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Chyba: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Vnitřní chyba" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Přehrávání" diff --git a/l10n/cs_CZ/impress.po b/l10n/cs_CZ/impress.po deleted file mode 100644 index 0b19a018bc3bf10eab339f0355786eed2571a831..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/cs_CZ/media.po b/l10n/cs_CZ/media.po deleted file mode 100644 index adefdadc3b1835654f296d5c56edebe03fa99e5a..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/media.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jan Krejci <krejca85@gmail.com>, 2011. -# Martin <fireball@atlas.cz>, 2011. -# Michal Hrušecký <Michal@hrusecky.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/language/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Hudba" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Přehrát" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pauza" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Předchozí" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Další" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Vypnout zvuk" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Zapnout zvuk" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Znovu prohledat " - -#: templates/music.php:37 -msgid "Artist" -msgstr "Umělec" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Název" diff --git a/l10n/cs_CZ/tasks.po b/l10n/cs_CZ/tasks.po deleted file mode 100644 index 26605819167f1bef8755357a2983a8d5a65e6dd6..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Michal Hrušecký <Michal@hrusecky.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 19:57+0000\n" -"Last-Translator: Michal Hrušecký <Michal@hrusecky.net>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Neplatné datum/čas" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Úkoly" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Bez kategorie" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=nejvyšší" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=střední" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=nejnižší" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Neplatná priorita" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Přidat úkol" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Načítám úkoly..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Důležité" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Více" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Méně" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Smazat" diff --git a/l10n/cs_CZ/user_migrate.po b/l10n/cs_CZ/user_migrate.po deleted file mode 100644 index 74cee0cec42fcc2266069d08fb0cb9247c0d990f..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Martin <fireball@atlas.cz>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 09:51+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Export" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Během vytváření souboru exportu došlo k chybě" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Nastala chyba" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Export Vašeho uživatelského účtu" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Bude vytvořen komprimovaný soubor, obsahující Váš ownCloud účet." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Import uživatelského účtu" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "Zip soubor uživatele ownCloud" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Import" diff --git a/l10n/cs_CZ/user_openid.po b/l10n/cs_CZ/user_openid.po deleted file mode 100644 index f2fe13f33452c884e753627bc29fbd8334de1bbc..0000000000000000000000000000000000000000 --- a/l10n/cs_CZ/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Martin <fireball@atlas.cz>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 09:48+0000\n" -"Last-Translator: Martin <fireball@atlas.cz>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Toto je OpenID server endpoint. Více informací na" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identita: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Oblast: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Uživatel: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Login" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Chyba: <b>Uživatel není zvolen" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "s touto adresou se můžete autrorizovat na další strany" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Autorizovaný OpenID poskytovatel" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Vaše adresa na Wordpressu, Identi.ca, …" diff --git a/l10n/da/admin_dependencies_chk.po b/l10n/da/admin_dependencies_chk.po deleted file mode 100644 index a0e629c133936e95bfe44dcde7bd0fb9587d1470..0000000000000000000000000000000000000000 --- a/l10n/da/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/da/admin_migrate.po b/l10n/da/admin_migrate.po deleted file mode 100644 index 33fa6f79201f9c8b06d1cf98c57d20da06d2706a..0000000000000000000000000000000000000000 --- a/l10n/da/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <sr@ybnet.dk>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 14:56+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Eksporter ownCloud instans" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Eksporter" diff --git a/l10n/da/bookmarks.po b/l10n/da/bookmarks.po deleted file mode 100644 index 7d336705b21f1c60b95c212beaa7b95ccfe2bdbe..0000000000000000000000000000000000000000 --- a/l10n/da/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/da/calendar.po b/l10n/da/calendar.po deleted file mode 100644 index 5933d87709dfc8e9579b99d25c2e8c3c4d8c5a9f..0000000000000000000000000000000000000000 --- a/l10n/da/calendar.po +++ /dev/null @@ -1,819 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <mikkelbjerglarsen@gmail.com>, 2011. -# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011, 2012. -# Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. -# <sr@ybnet.dk>, 2012. -# 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-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 14:34+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Ikke alle kalendere er fuldstændig cached" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Der blev ikke fundet nogen kalendere." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Der blev ikke fundet nogen begivenheder." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Forkert kalender" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Filen indeholdt enten ingen begivenheder eller alle begivenheder er allerede gemt i din kalender." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "begivenheder er gemt i den nye kalender" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "import mislykkedes" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "begivenheder er gemt i din kalender" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Ny tidszone:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Tidszone ændret" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Ugyldig forespørgsel" - -#: appinfo/app.php:37 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM åååå" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ åååå]{ '—'[ MMM] d åååå}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, åååå" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Fødselsdag" - -#: lib/app.php:122 -msgid "Business" -msgstr "Forretning" - -#: lib/app.php:123 -msgid "Call" -msgstr "Ring" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Kunder" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Leverance" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Helligdage" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideér" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Rejse" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubilæum" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Møde" - -#: lib/app.php:131 -msgid "Other" -msgstr "Andet" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Privat" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekter" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Spørgsmål" - -#: lib/app.php:135 -msgid "Work" -msgstr "Arbejde" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "af" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "unavngivet" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Ny Kalender" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Gentages ikke" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Daglig" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Ugentlig" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Alle hverdage" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Hver anden uge" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Månedlig" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Årlig" - -#: lib/object.php:388 -msgid "never" -msgstr "aldrig" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "efter forekomster" - -#: lib/object.php:390 -msgid "by date" -msgstr "efter dato" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "efter dag i måneden" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "efter ugedag" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Mandag" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Tirsdag" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Onsdag" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Torsdag" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Fredag" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Lørdag" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "øndag" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "begivenhedens uge i måneden" - -#: lib/object.php:428 -msgid "first" -msgstr "første" - -#: lib/object.php:429 -msgid "second" -msgstr "anden" - -#: lib/object.php:430 -msgid "third" -msgstr "tredje" - -#: lib/object.php:431 -msgid "fourth" -msgstr "fjerde" - -#: lib/object.php:432 -msgid "fifth" -msgstr "femte" - -#: lib/object.php:433 -msgid "last" -msgstr "sidste" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januar" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februar" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Marts" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "April" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maj" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juni" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juli" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "August" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "December" - -#: lib/object.php:488 -msgid "by events date" -msgstr "efter begivenheders dato" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "efter dag(e) i året" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "efter ugenummer/-numre" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "efter dag og måned" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Dato" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Søn." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Man." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Tir." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Ons." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Tor." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Fre." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Lør." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Apr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Maj" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Aug." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Sep." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Okt." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Dec." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Hele dagen" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Manglende felter" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titel" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Fra dato" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Fra tidspunkt" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Til dato" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Til tidspunkt" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Begivenheden slutter, inden den begynder" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Der var en fejl i databasen" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Uge" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Måned" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Liste" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "I dag" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Indstillinger" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Dine kalendere" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav-link" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Delte kalendere" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Ingen delte kalendere" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Del kalender" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Hent" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Rediger" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Slet" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "delt af dig" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Ny kalender" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Rediger kalender" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Vist navn" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiv" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalenderfarve" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Gem" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Send" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Annuller" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Redigér en begivenhed" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Eksporter" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Begivenhedsinfo" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Gentagende" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Deltagere" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Del" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Titel på begivenheden" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategori" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Opdel kategorier med kommaer" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Rediger kategorier" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Heldagsarrangement" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Fra" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Til" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Avancerede indstillinger" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Sted" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Placering af begivenheden" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Beskrivelse" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Beskrivelse af begivenheden" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Gentag" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avanceret" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Vælg ugedage" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Vælg dage" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "og begivenhedens dag i året." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "og begivenhedens sag på måneden" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Vælg måneder" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Vælg uger" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "og begivenhedens uge i året." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Interval" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Afslutning" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "forekomster" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "opret en ny kalender" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importer en kalenderfil" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Vælg en kalender" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Navn på ny kalender" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "En kalender med dette navn findes allerede. Hvis du fortsætter alligevel, vil disse kalendere blive sammenlagt." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importer" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Luk dialog" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Opret en ny begivenhed" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Vis en begivenhed" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Ingen categorier valgt" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "fra" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "kl." - -#: templates/settings.php:10 -msgid "General" -msgstr "Generel" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Tidszone" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Opdater tidszone automatisk" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24T" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12T" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "flere oplysninger" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Brugere" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "Vælg brugere" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Redigerbar" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupper" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "Vælg grupper" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "Offentliggør" diff --git a/l10n/da/contacts.po b/l10n/da/contacts.po deleted file mode 100644 index 8a658ef13655ba0dfd0338c2d6dd8a96b6ea60d8..0000000000000000000000000000000000000000 --- a/l10n/da/contacts.po +++ /dev/null @@ -1,957 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <mikkelbjerglarsen@gmail.com>, 2011. -# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011, 2012. -# Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. -# 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-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Fejl ved (de)aktivering af adressebogen" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "Intet ID medsendt." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Kan ikke opdatére adressebogen med et tomt navn." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Fejl ved opdatering af adressebog" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Intet ID medsendt" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Kunne ikke sætte checksum." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Der ikke valgt nogle grupper at slette." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Der blev ikke fundet nogen adressebøger." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Der blev ikke fundet nogen kontaktpersoner." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Der opstod en fejl ved tilføjelse af kontaktpersonen." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "Elementnavnet er ikke medsendt." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Kan ikke tilføje en egenskab uden indhold." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Der skal udfyldes mindst et adressefelt." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Kan ikke tilføje overlappende element." - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informationen om vCard er forkert. Genindlæs siden." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Manglende ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Kunne ikke indlæse VCard med ID'et: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "Checksum er ikke medsendt." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informationen om dette VCard stemmer ikke. Genindlæs venligst siden: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Noget gik grueligt galt. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Ingen ID for kontakperson medsendt." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Kunne ikke indlæse foto for kontakperson." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Kunne ikke gemme midlertidig fil." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Billedet under indlæsning er ikke gyldigt." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Kontaktperson ID mangler." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Der blev ikke medsendt en sti til fotoet." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Filen eksisterer ikke:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Kunne ikke indlæse billede." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Fejl ved indlæsning af kontaktpersonobjektet." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Fejl ved indlæsning af PHOTO feltet." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Kunne ikke gemme kontaktpersonen." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Kunne ikke ændre billedets størrelse" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Kunne ikke beskære billedet" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Kunne ikke oprette midlertidigt billede" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Kunne ikke finde billedet: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Kunne ikke uploade kontaktepersoner til midlertidig opbevaring." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Den uploadede fil er større end upload_max_filesize indstillingen i php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Filen blev kun delvist uploadet." - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Ingen fil uploadet" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Manglende midlertidig mappe." - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Kunne ikke gemme midlertidigt billede: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Kunne ikke indlæse midlertidigt billede" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Ingen fil blev uploadet. Ukendt fejl." - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontaktpersoner" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Denne funktion er desværre ikke implementeret endnu" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Ikke implementeret" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Kunne ikke finde en gyldig adresse." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Fejl" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Dette felt må ikke være tomt." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Kunne ikke serialisere elementerne." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' kaldet uden typeargument. Indrapporter fejl på bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Rediger navn" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Der er ikke valgt nogen filer at uploade." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Dr." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Vælg type" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultat:" - -#: js/loader.js:49 -msgid " imported, " -msgstr " importeret " - -#: js/loader.js:49 -msgid " failed." -msgstr " fejl." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Dette er ikke din adressebog." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontaktperson kunne ikke findes." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Arbejde" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Hjemme" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "SMS" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Telefonsvarer" - -#: lib/app.php:205 -msgid "Message" -msgstr "Besked" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Personsøger" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Fødselsdag" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name}s fødselsdag" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontaktperson" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Tilføj kontaktperson" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importer" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adressebøger" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Luk" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Drop foto for at uploade" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Slet nuværende foto" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Rediger nuværende foto" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Upload nyt foto" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Vælg foto fra ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formatter som valgfrit, fuldt navn, efternavn først eller efternavn først med komma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Rediger navnedetaljer." - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisation" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Slet" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Kaldenavn" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Indtast kaldenavn" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-åååå" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupper" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Opdel gruppenavne med kommaer" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Rediger grupper" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Foretrukken" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Indtast venligst en gyldig email-adresse." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Indtast email-adresse" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Send mail til adresse" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Slet email-adresse" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Indtast telefonnummer" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Slet telefonnummer" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Vis på kort" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Rediger adresse detaljer" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Tilføj noter her." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Tilføj element" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Email" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresse" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Note" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Download kontaktperson" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Slet kontaktperson" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Det midlertidige billede er ikke længere tilgængeligt." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Rediger adresse" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Type" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postboks" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Udvidet" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "By" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Region" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postnummer" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Land" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adressebog" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Foranstillede titler" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Frøken" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Fru" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Hr." - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Fru" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Fornavn" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Mellemnavne" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Efternavn" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Efterstillede titler" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "Cand. Jur." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importer fil med kontaktpersoner" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Vælg venligst adressebog" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Opret ny adressebog" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Navn på ny adressebog" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importerer kontaktpersoner" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Du har ingen kontaktpersoner i din adressebog." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Tilføj kontaktpeson." - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV synkroniserings adresse" - -#: templates/settings.php:3 -msgid "more info" -msgstr "mere info" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Primær adresse (Kontak m. fl.)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Download" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Rediger" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Ny adressebog" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Gem" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Fortryd" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 0612baf36cc4a014227e9eeac88c45cf5e93786c..98ece178a5dfe29e9489f84a1755ef95a018b92d 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" -"PO-Revision-Date: 2012-10-12 17:45+0000\n" -"Last-Translator: Ole Holm Frandsen <froksen@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@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" @@ -153,7 +153,8 @@ msgstr "Del med link" msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Kodeord" @@ -245,8 +246,8 @@ msgstr "Forespugt" msgid "Login failed!" msgstr "Login fejlede!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Brugernavn" @@ -306,48 +307,73 @@ msgstr "Rediger kategorier" msgid "Add" msgstr "Tilføj" +#: 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 "Opret en <strong>administratorkonto</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Afslut opsætning" @@ -359,15 +385,29 @@ msgstr "Webtjenester under din kontrol" msgid "Log out" msgstr "Log ud" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "husk" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Log ind" @@ -382,3 +422,17 @@ msgstr "forrige" #: templates/part.pagenavi.php:20 msgid "next" msgstr "næste" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/da/files_odfviewer.po b/l10n/da/files_odfviewer.po deleted file mode 100644 index 755f4010e9d47b5b5d081df4bbaa24474580dfb0..0000000000000000000000000000000000000000 --- a/l10n/da/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/da/files_pdfviewer.po b/l10n/da/files_pdfviewer.po deleted file mode 100644 index 781bfdac2e42bd79e7cd35ef6c8d7e0d35a4ca8c..0000000000000000000000000000000000000000 --- a/l10n/da/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/da/files_texteditor.po b/l10n/da/files_texteditor.po deleted file mode 100644 index cb994d6b9227ce148de2cab04c620c552889e510..0000000000000000000000000000000000000000 --- a/l10n/da/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/da/gallery.po b/l10n/da/gallery.po deleted file mode 100644 index 43c5fd2a9e27b1a222e483ca463b600e5466f829..0000000000000000000000000000000000000000 --- a/l10n/da/gallery.po +++ /dev/null @@ -1,97 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <mikkelbjerglarsen@gmail.com>, 2012. -# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012. -# Thomas Tanghus <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/language/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Billeder" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Indstillinger" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Genindlæs" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Stop" - -#: templates/index.php:18 -msgid "Share" -msgstr "Del" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Tilbage" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Fjern bekræftelse" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Ønsker du at fjerne albummet" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Ændre albummets navn" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nyt album navn" diff --git a/l10n/da/impress.po b/l10n/da/impress.po deleted file mode 100644 index 80c9eb2ed8055ae33d137a4e5d8e5c0e545df3fe..0000000000000000000000000000000000000000 --- a/l10n/da/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/da/media.po b/l10n/da/media.po deleted file mode 100644 index ba051b121a5eb45742b24b2413084ce2c73011fb..0000000000000000000000000000000000000000 --- a/l10n/da/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2011. -# Pascal d'Hermilly <pascal@dhermilly.dk>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/language/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musik" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Afspil" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pause" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Forrige" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Næste" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Lydløs" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Lyd til" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Genskan Samling" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Kunstner" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titel" diff --git a/l10n/da/tasks.po b/l10n/da/tasks.po deleted file mode 100644 index 5c9900db1eb621bfef418c7e720297ba5c11ee68..0000000000000000000000000000000000000000 --- a/l10n/da/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <sr@ybnet.dk>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 14:43+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Ugyldig dato/tid" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Opgaver" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Ingen kategori" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Uspecificeret" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=højeste" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=mellem" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=laveste" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Tom beskrivelse" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Tilføj opgave" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Indlæser opgaver..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "vigtigt" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Mere" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Mindre" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Slet" diff --git a/l10n/da/user_migrate.po b/l10n/da/user_migrate.po deleted file mode 100644 index 3c03fa73962e3370c1b88d9001e6529636dd162f..0000000000000000000000000000000000000000 --- a/l10n/da/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/da/user_openid.po b/l10n/da/user_openid.po deleted file mode 100644 index a9fdd710c8abda4ea9a98ce034c60fba6faa16a2..0000000000000000000000000000000000000000 --- a/l10n/da/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/de/admin_dependencies_chk.po b/l10n/de/admin_dependencies_chk.po deleted file mode 100644 index f36baa4f39016c2caf9710313049e19620fe4eee..0000000000000000000000000000000000000000 --- a/l10n/de/admin_dependencies_chk.po +++ /dev/null @@ -1,77 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Maurice Preuß <>, 2012. -# <niko@nik-o-mat.de>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:01+0200\n" -"PO-Revision-Date: 2012-08-23 10:05+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Das Modul php-json wird von vielen Anwendungen zur internen Kommunikation benötigt." - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Das Modul php-curl wird benötigt, um den Titel der Seite für die Lesezeichen hinzuzufügen." - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Das Modul php-gd wird für die Erzeugung der Vorschaubilder benötigt." - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Das Modul php-ldap wird für die Verbindung mit dem LDAP-Server benötigt." - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Das Modul php-zip wird für den gleichzeitigen Download mehrerer Dateien benötigt." - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Das Modul php_mb_multibyte wird benötigt, um das Encoding richtig zu handhaben." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Das Modul php-ctype wird benötigt, um Daten zu prüfen." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Das Modul php-xml wird benötigt, um Dateien über WebDAV zu teilen." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "Die Richtlinie allow_url_fopen in Ihrer php.ini sollte auf 1 gesetzt werden, um die Wissensbasis vom OCS-Server abrufen." - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Das Modul php-pdo wird benötigt, um Daten in der Datenbank zu speichern." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Status der Abhängigkeiten" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Benutzt von:" diff --git a/l10n/de/admin_migrate.po b/l10n/de/admin_migrate.po deleted file mode 100644 index d4a6b315a18786a9932397b9aa9a2740b865271d..0000000000000000000000000000000000000000 --- a/l10n/de/admin_migrate.po +++ /dev/null @@ -1,34 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <niko@nik-o-mat.de>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 13:34+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Diese ownCloud-Instanz exportieren." - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Dies wird eine komprimierte Datei erzeugen, welche die Daten dieser ownCloud-Instanz enthält.\n Bitte wählen Sie den Exporttyp:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Exportieren" diff --git a/l10n/de/bookmarks.po b/l10n/de/bookmarks.po deleted file mode 100644 index 8383c62a138556714651d7f8c24f53988ebc806a..0000000000000000000000000000000000000000 --- a/l10n/de/bookmarks.po +++ /dev/null @@ -1,63 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Phi Lieb <>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:38+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "unbenannt" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Ziehen Sie dies zu Ihren Browser-Lesezeichen und klicken Sie darauf, wenn Sie eine Website schnell den Lesezeichen hinzufügen wollen." - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Später lesen" - -#: templates/list.php:13 -msgid "Address" -msgstr "Adresse" - -#: templates/list.php:14 -msgid "Title" -msgstr "Titel" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Tags" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Lesezeichen speichern" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Sie haben keine Lesezeichen" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Bookmarklet <br />" diff --git a/l10n/de/calendar.po b/l10n/de/calendar.po deleted file mode 100644 index 5ef155057e94ea91d9187d7fd39171d6cdc06aed..0000000000000000000000000000000000000000 --- a/l10n/de/calendar.po +++ /dev/null @@ -1,824 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <admin@s-goecker.de>, 2011, 2012. -# <driz@i2pmail.org>, 2012. -# <georg.stefan.germany@googlemail.com>, 2011, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# Jan-Christoph Borchardt <jan@unhosted.org>, 2011. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012. -# <niko@nik-o-mat.de>, 2012. -# <peddn@web.de>, 2012. -# Phi Lieb <>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:20+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Noch sind nicht alle Kalender zwischengespeichert." - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Es sieht so aus, als wäre alles vollständig zwischengespeichert." - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Keine Kalender gefunden." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Keine Termine gefunden." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Falscher Kalender" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Entweder enthielt die Datei keine Termine oder alle Termine waren bereits im Kalender gespeichert." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "Der Termin wurde im neuen Kalender gespeichert." - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Import fehlgeschlagen" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "Der Termin wurde im Kalender gespeichert." - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Neue Zeitzone:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Zeitzone geändert" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Fehlerhafte Anfrage" - -#: appinfo/app.php:37 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd d.M" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd d.M" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, d. MMM yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Geburtstag" - -#: lib/app.php:122 -msgid "Business" -msgstr "Geschäftlich" - -#: lib/app.php:123 -msgid "Call" -msgstr "Anruf" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Kunden" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Lieferant" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Urlaub" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideen" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Reise" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubiläum" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Treffen" - -#: lib/app.php:131 -msgid "Other" -msgstr "Anderes" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Persönlich" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekte" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Fragen" - -#: lib/app.php:135 -msgid "Work" -msgstr "Arbeit" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "von" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "unbenannt" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Neuer Kalender" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "einmalig" - -#: lib/object.php:373 -msgid "Daily" -msgstr "täglich" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "wöchentlich" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "jeden Wochentag" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "jede zweite Woche" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "monatlich" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "jährlich" - -#: lib/object.php:388 -msgid "never" -msgstr "niemals" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "nach Terminen" - -#: lib/object.php:390 -msgid "by date" -msgstr "nach Datum" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "an einem Monatstag" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "an einem Wochentag" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Montag" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Dienstag" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Mittwoch" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Donnerstag" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Freitag" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Samstag" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Sonntag" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "Woche des Monats vom Termin" - -#: lib/object.php:428 -msgid "first" -msgstr "erste" - -#: lib/object.php:429 -msgid "second" -msgstr "zweite" - -#: lib/object.php:430 -msgid "third" -msgstr "dritte" - -#: lib/object.php:431 -msgid "fourth" -msgstr "vierte" - -#: lib/object.php:432 -msgid "fifth" -msgstr "fünfte" - -#: lib/object.php:433 -msgid "last" -msgstr "letzte" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januar" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februar" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "März" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "April" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mai" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juni" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juli" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "August" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Dezember" - -#: lib/object.php:488 -msgid "by events date" -msgstr "nach Tag des Termins" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "nach Tag des Jahres" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "nach Wochennummer" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "nach Tag und Monat" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Datum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "So" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Mo" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Di" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Mi" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Do" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Fr" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Sa" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mär." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Apr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Mai" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Aug." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Sep." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Okt." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Dez." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Ganztags" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "fehlende Felder" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titel" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Startdatum" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Startzeit" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Enddatum" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Endzeit" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Der Termin hört auf, bevor er angefangen hat." - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Datenbankfehler" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Woche" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Monat" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Liste" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Heute" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Einstellungen" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Deine Kalender" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDAV-Link" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Geteilte Kalender" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Keine geteilten Kalender" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Kalender teilen" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Herunterladen" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Bearbeiten" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Löschen" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "Geteilt mit dir von" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Neuer Kalender" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Kalender bearbeiten" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Anzeigename" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiv" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalenderfarbe" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Speichern" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Bestätigen" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Abbrechen" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Ereignis bearbeiten" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportieren" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Termininfo" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Wiederholen" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Teilnehmer" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Teilen" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Name" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategorie" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Kategorien mit Kommas trennen" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Kategorien ändern" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Ganztägiges Ereignis" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "von" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "bis" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Erweiterte Optionen" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Ort" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Ort" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Beschreibung" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Beschreibung" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "wiederholen" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Erweitert" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Wochentage auswählen" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Tage auswählen" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "und den Tag des Jahres vom Termin" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "und den Tag des Monats vom Termin" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Monate auswählen" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Wochen auswählen" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "und den Tag des Jahres vom Termin" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervall" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Ende" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "Termine" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Neuen Kalender anlegen" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Kalenderdatei importieren" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Wählen Sie bitte einen Kalender." - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Kalendername" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Wählen Sie einen verfügbaren Namen." - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Ein Kalender mit diesem Namen existiert bereits. Sollten Sie fortfahren, werden die beiden Kalender zusammengeführt." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importieren" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Dialog schließen" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Neues Ereignis" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Termin öffnen" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Keine Kategorie ausgewählt" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "von" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "um" - -#: templates/settings.php:10 -msgid "General" -msgstr "Allgemein" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Zeitzone" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Zeitzone automatisch aktualisieren" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Zeitformat" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24 Stunden" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12 Stunden" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Erster Wochentag" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Zwischenspeicher" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Lösche den Zwischenspeicher für wiederholende Veranstaltungen" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URLs" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "CalDAV-Kalender gleicht Adressen ab" - -#: templates/settings.php:87 -msgid "more info" -msgstr "weitere Informationen" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Primäre Adresse (Kontakt u.a.)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Nur lesende(r) iCalender-Link(s)" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Benutzer" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "Benutzer auswählen" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "editierbar" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Gruppen" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "Gruppen auswählen" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "Veröffentlichen" diff --git a/l10n/de/contacts.po b/l10n/de/contacts.po deleted file mode 100644 index 74a5bee2a88024216b8f493bc705fb03a9d4a9c8..0000000000000000000000000000000000000000 --- a/l10n/de/contacts.po +++ /dev/null @@ -1,970 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <admin@s-goecker.de>, 2012. -# <driz@i2pmail.org>, 2012. -# <fh@cbix.de>, 2012. -# <florian.ruechel+owncloud@gmail.com>, 2012. -# <georg.stefan.germany@googlemail.com>, 2011. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# Jan-Christoph Borchardt <jan@unhosted.org>, 2011. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012. -# Melvin Gundlach <mail@melvin-gundlach.de>, 2012. -# Michael Krell <m4dmike.mni@gmail.com>, 2012. -# <mi.sc@gmx.net>, 2012. -# <nelsonfritsch@gmail.com>, 2012. -# <niko@nik-o-mat.de>, 2012. -# Phi Lieb <>, 2012. -# Susi <>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# Thomas Müller <>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 08:07+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "(De-)Aktivierung des Adressbuches fehlgeschlagen" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID ist nicht angegeben." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Adressbuch kann nicht mir leeren Namen aktualisiert werden." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Adressbuch aktualisieren fehlgeschlagen." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Keine ID angegeben" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Fehler beim Setzen der Prüfsumme." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Keine Kategorien zum Löschen ausgewählt." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Keine Adressbücher gefunden." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Keine Kontakte gefunden." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Erstellen des Kontakts fehlgeschlagen." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "Kein Name für das Element angegeben." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Konnte folgenden Kontakt nicht verarbeiten:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Feld darf nicht leer sein." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Mindestens eines der Adressfelder muss ausgefüllt werden." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Versuche doppelte Eigenschaft hinzuzufügen: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "IM-Parameter fehlt." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "IM unbekannt:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Die Information der vCard ist fehlerhaft. Bitte aktualisieren Sie die Seite." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Fehlende ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Fehler beim Einlesen der VCard für die ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "Keine Prüfsumme angegeben." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Die Informationen zur vCard sind fehlerhaft. Bitte Seite neu laden: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Irgendwas ist hier so richtig schief gelaufen. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Es wurde keine Kontakt-ID übermittelt." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Fehler beim Auslesen des Kontaktfotos." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Fehler beim Speichern der temporären Datei." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Das Kontaktfoto ist fehlerhaft." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Keine Kontakt-ID angegeben." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Kein Foto-Pfad übermittelt." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Datei existiert nicht: " - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Fehler beim Laden des Bildes." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Fehler beim Abruf des Kontakt-Objektes." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Fehler beim Abrufen der PHOTO-Eigenschaft." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Fehler beim Speichern des Kontaktes." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Fehler bei der Größenänderung des Bildes" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Fehler beim Zuschneiden des Bildes" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Fehler beim Erstellen des temporären Bildes" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Fehler beim Suchen des Bildes: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Übertragen der Kontakte fehlgeschlagen." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Alles bestens, Datei erfolgreich übertragen." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Datei größer, als durch die upload_max_filesize Direktive in php.ini erlaubt" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Datei größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML Formular spezifiziert ist" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Datei konnte nur teilweise übertragen werden" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Keine Datei konnte übertragen werden." - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Kein temporärer Ordner vorhanden" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Konnte das temporäre Bild nicht speichern:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Konnte das temporäre Bild nicht laden:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Keine Datei hochgeladen. Unbekannter Fehler" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Kontakte" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Diese Funktion steht leider noch nicht zur Verfügung" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Nicht verfügbar" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Konnte keine gültige Adresse abrufen." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Fehler" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "Sie besitzen nicht die erforderlichen Rechte, um Kontakte hinzuzufügen" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Bitte wählen Sie eines Ihrer Adressbücher aus." - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Berechtigungsfehler" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Dieses Feld darf nicht leer sein." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Konnte Elemente nicht serialisieren" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' wurde ohne Argumente aufgerufen. Bitte melden Sie dies auf bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Name ändern" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Keine Datei(en) zum Hochladen ausgewählt." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Die Datei, die Sie hochladen möchten, überschreitet die maximale Größe für Datei-Uploads auf diesem Server." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Fehler beim Laden des Profilbildes." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Wähle Typ" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Einige zum Löschen markiert Kontakte wurden noch nicht gelöscht. Bitte warten." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Möchten Sie diese Adressbücher zusammenführen?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Ergebnis: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " importiert, " - -#: js/loader.js:49 -msgid " failed." -msgstr " fehlgeschlagen." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Der Anzeigename darf nicht leer sein." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Adressbuch nicht gefunden:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Dies ist nicht Ihr Adressbuch." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontakt konnte nicht gefunden werden." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Arbeit" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Zuhause" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Andere" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Text" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Anruf" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mitteilung" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Geburtstag" - -#: lib/app.php:253 -msgid "Business" -msgstr "Geschäftlich" - -#: lib/app.php:254 -msgid "Call" -msgstr "Anruf" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Kunden" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Lieferant" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Feiertage" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Ideen" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Reise" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubiläum" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Besprechung" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Persönlich" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projekte" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Fragen" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Geburtstag von {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "Sie besitzen nicht die erforderlichen Rechte, um diesen Kontakt zu bearbeiten." - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "Sie besitzen nicht die erforderlichen Rechte, um diesen Kontakte zu löschen." - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Kontakt hinzufügen" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importieren" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Einstellungen" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adressbücher" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Schließen" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Tastaturbefehle" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navigation" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Nächster Kontakt aus der Liste" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Vorheriger Kontakt aus der Liste" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Ausklappen/Einklappen des Adressbuches" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Nächstes Adressbuch" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Vorheriges Adressbuch" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Aktionen" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Kontaktliste neu laden" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Neuen Kontakt hinzufügen" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Neues Adressbuch hinzufügen" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Aktuellen Kontakt löschen" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Ziehen Sie ein Foto zum Hochladen hierher" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Derzeitiges Foto löschen" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Foto ändern" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Neues Foto hochladen" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Foto aus der ownCloud auswählen" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format benutzerdefiniert, Kurzname, Vollname, Rückwärts oder Rückwärts mit Komma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Name ändern" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisation" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Löschen" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Spitzname" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Spitzname angeben" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Webseite" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Webseite aufrufen" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd.mm.yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Gruppen" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Gruppen mit Komma getrennt" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Gruppen editieren" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Bevorzugt" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Bitte eine gültige E-Mail-Adresse angeben." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "E-Mail-Adresse angeben" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "E-Mail an diese Adresse schreiben" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "E-Mail-Adresse löschen" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Telefonnummer angeben" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Telefonnummer löschen" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Instant Messenger" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "IM löschen" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Auf Karte anzeigen" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Adressinformationen ändern" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Füge hier Notizen ein." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Feld hinzufügen" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-Mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Instant Messaging" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresse" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Notiz" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Kontakt herunterladen" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Kontakt löschen" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Das temporäre Bild wurde aus dem Cache gelöscht." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Adresse ändern" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Typ" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postfach" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Straßenanschrift" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Straße und Nummer" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Erweitert" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Wohnungsnummer usw." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Stadt" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Region" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Z.B. Staat oder Bezirk" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postleitzahl" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "PLZ" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Land" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adressbuch" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Höflichkeitspräfixe" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Frau" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Frau" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Herr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Herr" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Frau" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Vorname" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Zusätzliche Namen" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Familienname" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Höflichkeitssuffixe" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "Dr. Jur." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "Dr. med." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "DGOM" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "MChiro" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Hochwohlgeborenen" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Senior" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Kontaktdatei importieren" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Bitte Adressbuch auswählen" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Neues Adressbuch erstellen" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Name des neuen Adressbuchs" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Kontakte werden importiert" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Sie haben keine Kontakte im Adressbuch." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Kontakt hinzufügen" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Wähle Adressbuch" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Name eingeben" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Beschreibung eingeben" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV Sync-Adressen" - -#: templates/settings.php:3 -msgid "more info" -msgstr "mehr Informationen" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Primäre Adresse (für Kontakt o.ä.)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "CardDav-Link anzeigen" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Schreibgeschützten VCF-Link anzeigen" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Teilen" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Herunterladen" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Bearbeiten" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Neues Adressbuch" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Name" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Beschreibung" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Speichern" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Abbrechen" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Mehr..." diff --git a/l10n/de/core.po b/l10n/de/core.po index 27511ab1ee120d51c9e5966278e46db389503d6f..0804a79cde37b91e514961ecf3d2279d0c289e5b 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 07:55+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 21:24+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -42,55 +42,55 @@ msgstr "Keine Kategorie hinzuzufügen?" msgid "This category already exists: " msgstr "Kategorie existiert bereits:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Januar" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Februar" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "März" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "April" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mai" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Juni" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Juli" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "August" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "September" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Oktober" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "November" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Dezember" @@ -118,8 +118,8 @@ msgstr "OK" msgid "No categories selected for deletion." msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:493 -#: js/share.js:505 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Fehler" @@ -159,7 +159,8 @@ msgstr "Über einen Link freigeben" msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Passwort" @@ -219,15 +220,15 @@ msgstr "löschen" msgid "share" msgstr "teilen" -#: js/share.js:321 js/share.js:480 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:493 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Fehler beim entfernen des Ablaufdatums" -#: js/share.js:505 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" @@ -251,8 +252,8 @@ msgstr "Angefragt" msgid "Login failed!" msgstr "Login fehlgeschlagen!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Benutzername" @@ -312,52 +313,77 @@ msgstr "Kategorien bearbeiten" msgid "Add" msgstr "Hinzufügen" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Sicherheitswarnung" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL." + +#: 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 "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Konten zu übernehmen." + +#: 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 "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass du deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass du dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst." + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>Administrator-Konto</strong> anlegen" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" @@ -365,15 +391,29 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "Log out" msgstr "Abmelden" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "Automatischer Login zurückgewiesen!" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Wenn du Dein Passwort nicht änderst, könnte dein Account kompromitiert werden!" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen." + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "merken" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Einloggen" @@ -388,3 +428,17 @@ msgstr "Zurück" #: templates/part.pagenavi.php:20 msgid "next" msgstr "Weiter" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "Sicherheitswarnung!" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "Bitte bestätige Dein Passwort. <br/> Aus Sicherheitsgründen wirst Du hierbei gebeten, Dein Passwort erneut einzugeben." + +#: templates/verify.php:16 +msgid "Verify" +msgstr "Bestätigen" diff --git a/l10n/de/files.po b/l10n/de/files.po index e2635a4a0b11b5339ac1dddbe262c4b36fd3c47f..0c178f2f82c7cb2607d9af12b65abc4714fcaf9d 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 02:02+0200\n" -"PO-Revision-Date: 2012-09-27 22:31+0000\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 21:36+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -78,39 +78,39 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" msgstr "ist bereits vorhanden" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:190 +#: js/filelist.js:192 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" msgstr "ersetzt" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:241 +#: js/filelist.js:243 msgid "with" msgstr "mit" -#: js/filelist.js:273 +#: js/filelist.js:275 msgid "unshared" msgstr "Nicht mehr freigegeben" -#: js/filelist.js:275 +#: js/filelist.js:277 msgid "deleted" msgstr "gelöscht" @@ -118,112 +118,112 @@ msgstr "gelöscht" msgid "generating ZIP-file, it may take some time." msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." -#: js/files.js:208 +#: js/files.js:214 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." +msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:208 +#: js/files.js:214 msgid "Upload Error" msgstr "Fehler beim Upload" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "Ausstehend" -#: js/files.js:256 +#: js/files.js:262 msgid "1 file uploading" msgstr "Eine Datei wird hoch geladen" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" msgstr "Dateien werden hoch geladen" -#: js/files.js:322 js/files.js:355 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:424 +#: js/files.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." +msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/files.js:494 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." -#: js/files.js:668 +#: js/files.js:681 msgid "files scanned" msgstr "Dateien gescannt" -#: js/files.js:676 +#: js/files.js:689 msgid "error while scanning" msgstr "Fehler beim Scannen" -#: js/files.js:749 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "Name" -#: js/files.js:750 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "Größe" -#: js/files.js:751 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:778 +#: js/files.js:791 msgid "folder" msgstr "Ordner" -#: js/files.js:780 +#: js/files.js:793 msgid "folders" msgstr "Ordner" -#: js/files.js:788 +#: js/files.js:801 msgid "file" msgstr "Datei" -#: js/files.js:790 +#: js/files.js:803 msgid "files" msgstr "Dateien" -#: js/files.js:834 +#: js/files.js:847 msgid "seconds ago" msgstr "Sekunden her" -#: js/files.js:835 +#: js/files.js:848 msgid "minute ago" msgstr "Minute her" -#: js/files.js:836 +#: js/files.js:849 msgid "minutes ago" msgstr "Minuten her" -#: js/files.js:839 +#: js/files.js:852 msgid "today" msgstr "Heute" -#: js/files.js:840 +#: js/files.js:853 msgid "yesterday" msgstr "Gestern" -#: js/files.js:841 +#: js/files.js:854 msgid "days ago" msgstr "Tage her" -#: js/files.js:842 +#: js/files.js:855 msgid "last month" msgstr "Letzten Monat" -#: js/files.js:844 +#: js/files.js:857 msgid "months ago" msgstr "Monate her" -#: js/files.js:845 +#: js/files.js:858 msgid "last year" msgstr "Letztes Jahr" -#: js/files.js:846 +#: js/files.js:859 msgid "years ago" msgstr "Jahre her" diff --git a/l10n/de/files_odfviewer.po b/l10n/de/files_odfviewer.po deleted file mode 100644 index 8d81b0d266eab293dccc544fbfad3e22e9d82272..0000000000000000000000000000000000000000 --- a/l10n/de/files_odfviewer.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# I Robot <thomas.mueller@tmit.eu>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:21+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "Schliessen" diff --git a/l10n/de/files_pdfviewer.po b/l10n/de/files_pdfviewer.po deleted file mode 100644 index a792a00b211c37b075b83eff422c435f98b08202..0000000000000000000000000000000000000000 --- a/l10n/de/files_pdfviewer.po +++ /dev/null @@ -1,43 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# I Robot <thomas.mueller@tmit.eu>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:21+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "Zurück" - -#: js/viewer.js:23 -msgid "Next" -msgstr "Weiter" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/de/files_texteditor.po b/l10n/de/files_texteditor.po deleted file mode 100644 index ec6268275102442363372174e198291193cdabb6..0000000000000000000000000000000000000000 --- a/l10n/de/files_texteditor.po +++ /dev/null @@ -1,45 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# I Robot <thomas.mueller@tmit.eu>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 02:01+0200\n" -"PO-Revision-Date: 2012-08-25 23:26+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "Regulärer Ausdruck" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "Speichern" - -#: js/editor.js:74 -msgid "Close" -msgstr "Schliessen" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "Speichern..." - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "Ein Fehler ist aufgetreten" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "Einige Änderungen wurde noch nicht gespeichert; klicken Sie hier um zurückzukehren." diff --git a/l10n/de/gallery.po b/l10n/de/gallery.po deleted file mode 100644 index ec9656fa93f0129f188055c00d14757d98cfee27..0000000000000000000000000000000000000000 --- a/l10n/de/gallery.po +++ /dev/null @@ -1,63 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <admin@s-goecker.de>, 2012. -# Bartek <bart.p.pl@gmail.com>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012. -# <niko@nik-o-mat.de>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-25 22:14+0200\n" -"PO-Revision-Date: 2012-07-25 20:05+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Bilder" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Galerie teilen" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Fehler:" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Interner Fehler" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Slideshow" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Zurück" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Bestätigung entfernen" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Soll das Album entfernt werden" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Albumname ändern" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Neuer Albumname" diff --git a/l10n/de/impress.po b/l10n/de/impress.po deleted file mode 100644 index bdf9e101c81cf1d418bf9259949c2141cf56522d..0000000000000000000000000000000000000000 --- a/l10n/de/impress.po +++ /dev/null @@ -1,23 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# I Robot <thomas.mueller@tmit.eu>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 02:01+0200\n" -"PO-Revision-Date: 2012-08-25 23:27+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "Dokumentation" diff --git a/l10n/de/media.po b/l10n/de/media.po deleted file mode 100644 index 4cb691b5ffd77a7965628342c485a9404cfe8091..0000000000000000000000000000000000000000 --- a/l10n/de/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <admin@s-goecker.de>, 2011, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: German (http://www.transifex.net/projects/p/owncloud/language/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musik" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Abspielen" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pause" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Vorheriges" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Nächstes" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Ton aus" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Ton an" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Sammlung erneut scannen" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Künstler" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titel" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index a4dd374031815bd04fee78f408b17aeb274d4c90..dca0d414bcdab4419aba219d3759a95445be825b 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-13 02:05+0200\n" -"PO-Revision-Date: 2012-10-12 22:12+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 21:35+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" @@ -35,16 +35,11 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." -#: ajax/creategroup.php:9 ajax/removeuser.php:18 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 -msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" - -#: ajax/creategroup.php:19 +#: ajax/creategroup.php:12 msgid "Group already exists" msgstr "Gruppe existiert bereits" -#: ajax/creategroup.php:28 +#: ajax/creategroup.php:21 msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" @@ -72,6 +67,10 @@ msgstr "Ungültige Anfrage" msgid "Unable to delete group" msgstr "Gruppe konnte nicht gelöscht werden" +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "Fehler bei der Anmeldung" + #: ajax/removeuser.php:27 msgid "Unable to delete user" msgstr "Benutzer konnte nicht gelöscht werden" @@ -102,9 +101,9 @@ msgstr "Aktivieren" msgid "Saving..." msgstr "Speichern..." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" -msgstr "Deutsch" +msgstr "Deutsch (Persönlich)" #: templates/admin.php:14 msgid "Security Warning" @@ -117,7 +116,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." +msgstr "Dein Datenverzeichnis ist möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Dir dringend, dass Du Deinen Webserver dahingehend konfigurieren, dass Dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." #: templates/admin.php:31 msgid "Cron" @@ -296,7 +295,7 @@ msgstr "Hilf bei der Übersetzung" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden." +msgstr "Verwende diese Adresse, um Deine ownCloud mit Deinem Dateimanager zu verbinden." #: templates/users.php:21 templates/users.php:76 msgid "Name" diff --git a/l10n/de/tasks.po b/l10n/de/tasks.po deleted file mode 100644 index 2ad6b64b48756a375113dfb4dfeb341695f35e50..0000000000000000000000000000000000000000 --- a/l10n/de/tasks.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <niko@nik-o-mat.de>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 10:09+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Datum/Uhrzeit ungültig" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Aufgaben" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Keine Kategorie" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Nicht angegeben" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1 = am höchsten" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5 = Durchschnitt" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9 = am niedrigsten" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Leere Zusammenfassung" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Ungültige Prozent abgeschlossen" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Falsche Priorität" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Aufgabe hinzufügen" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Nach Fälligkeit sortieren" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Nach Kategorie sortieren " - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Nach Fertigstellung sortieren" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Nach Ort sortieren" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Nach Priorität sortieren" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Nach Label sortieren" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Lade Aufgaben ..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Wichtig" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Mehr" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Weniger" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Löschen" diff --git a/l10n/de/user_migrate.po b/l10n/de/user_migrate.po deleted file mode 100644 index aada5dbfb256607934fcacec34398b73a61a14b9..0000000000000000000000000000000000000000 --- a/l10n/de/user_migrate.po +++ /dev/null @@ -1,54 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <niko@nik-o-mat.de>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 10:16+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Export" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Beim Export der Datei ist etwas schiefgegangen." - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Es ist ein Fehler aufgetreten." - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Ihr Konto exportieren" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Eine komprimierte Datei wird erzeugt, die Ihr ownCloud-Konto enthält." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Konto importieren" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "Zip-Archiv mit Benutzerdaten" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Importieren" diff --git a/l10n/de/user_openid.po b/l10n/de/user_openid.po deleted file mode 100644 index 9f5a660af87f68546a422a10f66ed2629e29d02d..0000000000000000000000000000000000000000 --- a/l10n/de/user_openid.po +++ /dev/null @@ -1,57 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <niko@nik-o-mat.de>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 10:17+0000\n" -"Last-Translator: traductor <transifex.3.mensaje@spamgourmet.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Dies ist ein OpenID-Server-Endpunkt. Weitere Informationen finden Sie unter:" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identität: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Bereich: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Benutzer: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Anmelden" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Fehler: <b> Kein Benutzer ausgewählt" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "Sie können sich auf anderen Seiten mit dieser Adresse authentifizieren." - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Authorisierter OpenID-Anbieter" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Ihre Adresse bei Wordpress, Identi.ca, …" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po new file mode 100644 index 0000000000000000000000000000000000000000..ed3c87f03f680a59ffe996637c9bab286ae00047 --- /dev/null +++ b/l10n/de_DE/core.po @@ -0,0 +1,444 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <admin@s-goecker.de>, 2011-2012. +# <alex.hotz@gmail.com>, 2011. +# <blobbyjj@ymail.com>, 2012. +# <georg.stefan.germany@googlemail.com>, 2011. +# I Robot <thomas.mueller@tmit.eu>, 2012. +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. +# <mail@felixmoeller.de>, 2012. +# Marcel Kühlhorn <susefan93@gmx.de>, 2012. +# <m.fresel@sysangels.com>, 2012. +# <niko@nik-o-mat.de>, 2012. +# Phi Lieb <>, 2012. +# <thomas.mueller@tmit.eu>, 2012. +# <transifex.3.mensaje@spamgourmet.com>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 20:38+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "Der Anwendungsname wurde nicht angegeben." + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "Keine Kategorie hinzuzufügen?" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "Kategorie existiert bereits:" + +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 +msgid "Settings" +msgstr "Einstellungen" + +#: js/js.js:670 +msgid "January" +msgstr "Januar" + +#: js/js.js:670 +msgid "February" +msgstr "Februar" + +#: js/js.js:670 +msgid "March" +msgstr "März" + +#: js/js.js:670 +msgid "April" +msgstr "April" + +#: js/js.js:670 +msgid "May" +msgstr "Mai" + +#: js/js.js:670 +msgid "June" +msgstr "Juni" + +#: js/js.js:671 +msgid "July" +msgstr "Juli" + +#: js/js.js:671 +msgid "August" +msgstr "August" + +#: js/js.js:671 +msgid "September" +msgstr "September" + +#: js/js.js:671 +msgid "October" +msgstr "Oktober" + +#: js/js.js:671 +msgid "November" +msgstr "November" + +#: js/js.js:671 +msgid "December" +msgstr "Dezember" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "Auswählen" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "Abbrechen" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "Nein" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "Ja" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "OK" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." + +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 +msgid "Error" +msgstr "Fehler" + +#: js/share.js:103 +msgid "Error while sharing" +msgstr "Fehler beim Freigeben" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "Fehler beim Aufheben der Freigabe" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "Fehler beim Ändern der Rechte" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "Für Dich und folgende Gruppe freigegeben" + +#: js/share.js:130 +msgid "by" +msgstr "mit" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "Dies wurde mit dir geteilt von" + +#: js/share.js:137 +msgid "Share with" +msgstr "Freigeben für" + +#: js/share.js:142 +msgid "Share with link" +msgstr "Über einen Link freigeben" + +#: js/share.js:143 +msgid "Password protect" +msgstr "Passwortschutz" + +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 +msgid "Password" +msgstr "Passwort" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "Setze ein Ablaufdatum" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "Ablaufdatum" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "Über eine E-Mail freigeben:" + +#: js/share.js:187 +msgid "No people found" +msgstr "Niemand gefunden" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "Weiterverteilen ist nicht erlaubt" + +#: js/share.js:250 +msgid "Shared in" +msgstr "Freigegeben in" + +#: js/share.js:250 +msgid "with" +msgstr "mit" + +#: js/share.js:271 +msgid "Unshare" +msgstr "Freigabe aufheben" + +#: js/share.js:283 +msgid "can edit" +msgstr "kann bearbeiten" + +#: js/share.js:285 +msgid "access control" +msgstr "Zugriffskontrolle" + +#: js/share.js:288 +msgid "create" +msgstr "erstellen" + +#: js/share.js:291 +msgid "update" +msgstr "aktualisieren" + +#: js/share.js:294 +msgid "delete" +msgstr "löschen" + +#: js/share.js:297 +msgid "share" +msgstr "teilen" + +#: js/share.js:322 js/share.js:484 +msgid "Password protected" +msgstr "Durch ein Passwort geschützt" + +#: js/share.js:497 +msgid "Error unsetting expiration date" +msgstr "Fehler beim entfernen des Ablaufdatums" + +#: js/share.js:509 +msgid "Error setting expiration date" +msgstr "Fehler beim Setzen des Ablaufdatums" + +#: lostpassword/index.php:26 +msgid "ownCloud password reset" +msgstr "ownCloud-Passwort zurücksetzen" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Du erhälst einen Link per E-Mail, um Dein Passwort zurückzusetzen." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Requested" +msgstr "Angefragt" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "Login fehlgeschlagen!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 +msgid "Username" +msgstr "Benutzername" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Beantrage Zurücksetzung" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ihr Passwort wurde zurückgesetzt." + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Zur Login-Seite" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Neues Passwort" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Passwort zurücksetzen" + +#: strings.php:5 +msgid "Personal" +msgstr "Persönlich" + +#: strings.php:6 +msgid "Users" +msgstr "Benutzer" + +#: strings.php:7 +msgid "Apps" +msgstr "Anwendungen" + +#: strings.php:8 +msgid "Admin" +msgstr "Admin" + +#: strings.php:9 +msgid "Help" +msgstr "Hilfe" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "Zugriff verboten" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Cloud nicht gefunden" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "Kategorien bearbeiten" + +#: templates/edit_categories_dialog.php:14 +msgid "Add" +msgstr "Hinzufügen" + +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Sicherheitshinweis" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL" + +#: 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 "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und damit können Konten übernommen." + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an <strong>admin account</strong>" +msgstr "<strong>Administrator-Konto</strong> anlegen" + +#: templates/installation.php:48 +msgid "Advanced" +msgstr "Fortgeschritten" + +#: templates/installation.php:50 +msgid "Data folder" +msgstr "Datenverzeichnis" + +#: templates/installation.php:57 +msgid "Configure the database" +msgstr "Datenbank einrichten" + +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 +msgid "will be used" +msgstr "wird verwendet" + +#: templates/installation.php:105 +msgid "Database user" +msgstr "Datenbank-Benutzer" + +#: templates/installation.php:109 +msgid "Database password" +msgstr "Datenbank-Passwort" + +#: templates/installation.php:113 +msgid "Database name" +msgstr "Datenbank-Name" + +#: templates/installation.php:121 +msgid "Database tablespace" +msgstr "Datenbank-Tablespace" + +#: templates/installation.php:127 +msgid "Database host" +msgstr "Datenbank-Host" + +#: templates/installation.php:132 +msgid "Finish setup" +msgstr "Installation abschließen" + +#: templates/layout.guest.php:38 +msgid "web services under your control" +msgstr "Web-Services unter Ihrer Kontrolle" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "Abmelden" + +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 +msgid "Lost your password?" +msgstr "Passwort vergessen?" + +#: templates/login.php:27 +msgid "remember" +msgstr "merken" + +#: templates/login.php:28 +msgid "Log in" +msgstr "Einloggen" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Du wurdest abgemeldet." + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "Zurück" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "Weiter" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po new file mode 100644 index 0000000000000000000000000000000000000000..da2c94995c734e2bf151dffc32c2294df1ba20c8 --- /dev/null +++ b/l10n/de_DE/files.po @@ -0,0 +1,314 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <admin@s-goecker.de>, 2012. +# <blobbyjj@ymail.com>, 2012. +# I Robot <thomas.mueller@tmit.eu>, 2012. +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. +# Jan-Christoph Borchardt <jan@unhosted.org>, 2011. +# <lukas@statuscode.ch>, 2012. +# <mail@felixmoeller.de>, 2012. +# Marcel Kühlhorn <susefan93@gmx.de>, 2012. +# Michael Krell <m4dmike.mni@gmail.com>, 2012. +# <nelsonfritsch@gmail.com>, 2012. +# <niko@nik-o-mat.de>, 2012. +# Phi Lieb <>, 2012. +# <thomas.mueller@tmit.eu>, 2012. +# Thomas Müller <>, 2012. +# <transifex.3.mensaje@spamgourmet.com>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 21:37+0000\n" +"Last-Translator: Mirodin <blobbyjj@ymail.com>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "Datei fehlerfrei hochgeladen." + +#: ajax/upload.php:21 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "Die Größe der hochzuladenden Datei überschreitet die upload_max_filesize-Richtlinie in php.ini" + +#: ajax/upload.php:22 +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:23 +msgid "The uploaded file was only partially uploaded" +msgstr "Die Datei wurde nur teilweise hochgeladen." + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "Es wurde keine Datei hochgeladen." + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "Temporärer Ordner fehlt." + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "Fehler beim Schreiben auf die Festplatte" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "Dateien" + +#: js/fileactions.js:108 templates/index.php:62 +msgid "Unshare" +msgstr "Nicht mehr freigeben" + +#: js/fileactions.js:110 templates/index.php:64 +msgid "Delete" +msgstr "Löschen" + +#: js/fileactions.js:182 +msgid "Rename" +msgstr "Umbenennen" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "already exists" +msgstr "ist bereits vorhanden" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "replace" +msgstr "ersetzen" + +#: js/filelist.js:192 +msgid "suggest name" +msgstr "Name vorschlagen" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "cancel" +msgstr "abbrechen" + +#: js/filelist.js:241 js/filelist.js:243 +msgid "replaced" +msgstr "ersetzt" + +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 +msgid "undo" +msgstr "rückgängig machen" + +#: js/filelist.js:243 +msgid "with" +msgstr "mit" + +#: js/filelist.js:275 +msgid "unshared" +msgstr "Nicht mehr freigegeben" + +#: js/filelist.js:277 +msgid "deleted" +msgstr "gelöscht" + +#: js/files.js:179 +msgid "generating ZIP-file, it may take some time." +msgstr "Erstelle ZIP-Datei. Dies kann eine Weile dauern." + +#: js/files.js:214 +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:214 +msgid "Upload Error" +msgstr "Fehler beim Upload" + +#: js/files.js:242 js/files.js:347 js/files.js:377 +msgid "Pending" +msgstr "Ausstehend" + +#: js/files.js:262 +msgid "1 file uploading" +msgstr "Eine Datei wird hoch geladen" + +#: js/files.js:265 js/files.js:310 js/files.js:325 +msgid "files uploading" +msgstr "Dateien werden hoch geladen" + +#: js/files.js:328 js/files.js:361 +msgid "Upload cancelled." +msgstr "Upload abgebrochen." + +#: js/files.js:430 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." + +#: js/files.js:500 +msgid "Invalid name, '/' is not allowed." +msgstr "Ungültiger Name: \"/\" ist nicht erlaubt." + +#: js/files.js:681 +msgid "files scanned" +msgstr "Dateien gescannt" + +#: js/files.js:689 +msgid "error while scanning" +msgstr "Fehler beim Scannen" + +#: js/files.js:762 templates/index.php:48 +msgid "Name" +msgstr "Name" + +#: js/files.js:763 templates/index.php:56 +msgid "Size" +msgstr "Größe" + +#: js/files.js:764 templates/index.php:58 +msgid "Modified" +msgstr "Bearbeitet" + +#: js/files.js:791 +msgid "folder" +msgstr "Ordner" + +#: js/files.js:793 +msgid "folders" +msgstr "Ordner" + +#: js/files.js:801 +msgid "file" +msgstr "Datei" + +#: js/files.js:803 +msgid "files" +msgstr "Dateien" + +#: js/files.js:847 +msgid "seconds ago" +msgstr "Sekunden her" + +#: js/files.js:848 +msgid "minute ago" +msgstr "Minute her" + +#: js/files.js:849 +msgid "minutes ago" +msgstr "Minuten her" + +#: js/files.js:852 +msgid "today" +msgstr "Heute" + +#: js/files.js:853 +msgid "yesterday" +msgstr "Gestern" + +#: js/files.js:854 +msgid "days ago" +msgstr "Tage her" + +#: js/files.js:855 +msgid "last month" +msgstr "Letzten Monat" + +#: js/files.js:857 +msgid "months ago" +msgstr "Monate her" + +#: js/files.js:858 +msgid "last year" +msgstr "Letztes Jahr" + +#: js/files.js:859 +msgid "years ago" +msgstr "Jahre her" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "Dateibehandlung" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "Maximale Upload-Größe" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "maximal möglich:" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "ZIP-Download aktivieren" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "0 bedeutet unbegrenzt" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "Maximale Größe für ZIP-Dateien" + +#: templates/admin.php:14 +msgid "Save" +msgstr "Speichern" + +#: templates/index.php:7 +msgid "New" +msgstr "Neu" + +#: templates/index.php:9 +msgid "Text file" +msgstr "Textdatei" + +#: templates/index.php:10 +msgid "Folder" +msgstr "Ordner" + +#: templates/index.php:11 +msgid "From url" +msgstr "Von einer URL" + +#: templates/index.php:20 +msgid "Upload" +msgstr "Hochladen" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "Upload abbrechen" + +#: templates/index.php:40 +msgid "Nothing in here. Upload something!" +msgstr "Alles leer. Bitte laden Sie etwas hoch!" + +#: templates/index.php:50 +msgid "Share" +msgstr "Teilen" + +#: templates/index.php:52 +msgid "Download" +msgstr "Herunterladen" + +#: templates/index.php:75 +msgid "Upload too large" +msgstr "Upload zu groß" + +#: templates/index.php:77 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." + +#: templates/index.php:82 +msgid "Files are being scanned, please wait." +msgstr "Dateien werden gescannt, bitte warten." + +#: templates/index.php:85 +msgid "Current scanning" +msgstr "Scanne" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..e4cab6615d01c89ef68028da848e678bf2ce23d7 --- /dev/null +++ b/l10n/de_DE/files_encryption.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <driz@i2pmail.org>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 20:38+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "Encryption" +msgstr "Verschlüsselung" + +#: templates/settings.php:4 +msgid "Exclude the following file types from encryption" +msgstr "Die folgenden Dateitypen von der Verschlüsselung ausnehmen" + +#: templates/settings.php:5 +msgid "None" +msgstr "Keine" + +#: templates/settings.php:10 +msgid "Enable Encryption" +msgstr "Verschlüsselung aktivieren" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..a61bac9af34b8dfc9957c234186a535a889fa62a --- /dev/null +++ b/l10n/de_DE/files_external.po @@ -0,0 +1,110 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <blobbyjj@ymail.com>, 2012. +# I Robot <thomas.mueller@tmit.eu>, 2012. +# <thomas.mueller@tmit.eu>, 2012. +# <transifex.3.mensaje@spamgourmet.com>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 20:38+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\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 "Zugriff gestattet" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "Fehler beim Einrichten von Dropbox" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "Zugriff gestatten" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "Bitte alle notwendigen Felder füllen" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "Fehler beim Einrichten von Google Drive" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "Externer Speicher" + +#: templates/settings.php:7 templates/settings.php:19 +msgid "Mount point" +msgstr "Mount-Point" + +#: templates/settings.php:8 +msgid "Backend" +msgstr "Backend" + +#: templates/settings.php:9 +msgid "Configuration" +msgstr "Konfiguration" + +#: templates/settings.php:10 +msgid "Options" +msgstr "Optionen" + +#: templates/settings.php:11 +msgid "Applicable" +msgstr "Zutreffend" + +#: templates/settings.php:23 +msgid "Add mount point" +msgstr "Mount-Point hinzufügen" + +#: templates/settings.php:54 templates/settings.php:62 +msgid "None set" +msgstr "Nicht definiert" + +#: templates/settings.php:63 +msgid "All Users" +msgstr "Alle Benutzer" + +#: templates/settings.php:64 +msgid "Groups" +msgstr "Gruppen" + +#: templates/settings.php:69 +msgid "Users" +msgstr "Benutzer" + +#: templates/settings.php:77 templates/settings.php:107 +msgid "Delete" +msgstr "Löschen" + +#: templates/settings.php:87 +msgid "Enable User External Storage" +msgstr "Externen Speicher für Benutzer aktivieren" + +#: templates/settings.php:88 +msgid "Allow users to mount their own external storage" +msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" + +#: templates/settings.php:99 +msgid "SSL root certificates" +msgstr "SSL-Root-Zertifikate" + +#: templates/settings.php:113 +msgid "Import Root Certificate" +msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..feb180f2c3e4dc36eb92229d1b0fe3a5b2cab0ba --- /dev/null +++ b/l10n/de_DE/files_sharing.po @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <blobbyjj@ymail.com>, 2012. +# I Robot <thomas.mueller@tmit.eu>, 2012. +# <niko@nik-o-mat.de>, 2012. +# <thomas.mueller@tmit.eu>, 2012. +# <transifex.3.mensaje@spamgourmet.com>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 20:38+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "Passwort" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "Absenden" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s hat den Ordner %s für dich freigegeben" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s hat die Datei %s für dich freigegeben" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "Download" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "Es ist keine Vorschau verfügbar für" + +#: templates/public.php:35 +msgid "web services under your control" +msgstr "Web-Services unter Deiner Kontrolle" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..f97089a1c69ddba9369afef05e038bdeeaf83e84 --- /dev/null +++ b/l10n/de_DE/files_versions.po @@ -0,0 +1,47 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <blobbyjj@ymail.com>, 2012. +# I Robot <thomas.mueller@tmit.eu>, 2012. +# <mail@felixmoeller.de>, 2012. +# <niko@nik-o-mat.de>, 2012. +# <thomas.mueller@tmit.eu>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 20:38+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:10 +msgid "Expire all versions" +msgstr "Alle Versionen löschen" + +#: js/versions.js:16 +msgid "History" +msgstr "Historie" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "Versionen" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "Dies löscht alle vorhandenen Sicherungsversionen Deiner Dateien." + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "Dateiversionierung" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "Aktivieren" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..b00b94d69ba60749dbb82d62ae8c3efd143ae238 --- /dev/null +++ b/l10n/de_DE/lib.po @@ -0,0 +1,129 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <blobbyjj@ymail.com>, 2012. +# Phi Lieb <>, 2012. +# <thomas.mueller@tmit.eu>, 2012. +# <transifex.3.mensaje@spamgourmet.com>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 20:38+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:285 +msgid "Help" +msgstr "Hilfe" + +#: app.php:292 +msgid "Personal" +msgstr "Persönlich" + +#: app.php:297 +msgid "Settings" +msgstr "Einstellungen" + +#: app.php:302 +msgid "Users" +msgstr "Benutzer" + +#: app.php:309 +msgid "Apps" +msgstr "Apps" + +#: app.php:311 +msgid "Admin" +msgstr "Administrator" + +#: files.php:328 +msgid "ZIP download is turned off." +msgstr "Der ZIP-Download ist deaktiviert." + +#: files.php:329 +msgid "Files need to be downloaded one by one." +msgstr "Die Dateien müssen einzeln heruntergeladen werden." + +#: files.php:329 files.php:354 +msgid "Back to Files" +msgstr "Zurück zu \"Dateien\"" + +#: files.php:353 +msgid "Selected files too large to generate zip file." +msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." + +#: json.php:28 +msgid "Application is not enabled" +msgstr "Die Anwendung ist nicht aktiviert" + +#: json.php:39 json.php:64 json.php:77 json.php:89 +msgid "Authentication error" +msgstr "Authentifizierungs-Fehler" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "Token abgelaufen. Bitte lade die Seite neu." + +#: template.php:87 +msgid "seconds ago" +msgstr "Vor wenigen Sekunden" + +#: template.php:88 +msgid "1 minute ago" +msgstr "Vor einer Minute" + +#: template.php:89 +#, php-format +msgid "%d minutes ago" +msgstr "Vor %d Minuten" + +#: template.php:92 +msgid "today" +msgstr "Heute" + +#: template.php:93 +msgid "yesterday" +msgstr "Gestern" + +#: template.php:94 +#, php-format +msgid "%d days ago" +msgstr "Vor %d Tag(en)" + +#: template.php:95 +msgid "last month" +msgstr "Letzten Monat" + +#: template.php:96 +msgid "months ago" +msgstr "Vor Monaten" + +#: template.php:97 +msgid "last year" +msgstr "Letztes Jahr" + +#: template.php:98 +msgid "years ago" +msgstr "Vor Jahren" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get <a href=\"%s\">more information</a>" +msgstr "%s ist verfügbar. <a href=\"%s\">Weitere Informationen</a>" + +#: updater.php:77 +msgid "up to date" +msgstr "aktuell" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "Die Update-Überprüfung ist ausgeschaltet" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..cc013f2d0e08177e529d72306281a20244df819e --- /dev/null +++ b/l10n/de_DE/settings.po @@ -0,0 +1,334 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <admin@s-goecker.de>, 2011-2012. +# <blobbyjj@ymail.com>, 2012. +# <icewind1991@gmail.com>, 2012. +# I Robot <thomas.mueller@tmit.eu>, 2012. +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. +# Jan T <jan-temesinko@web.de>, 2012. +# <lukas@statuscode.ch>, 2012. +# <mail@felixmoeller.de>, 2012. +# Marcel Kühlhorn <susefan93@gmx.de>, 2012. +# <nelsonfritsch@gmail.com>, 2012. +# <niko@nik-o-mat.de>, 2012. +# Phi Lieb <>, 2012. +# <thomas.mueller@tmit.eu>, 2012. +# <transifex.3.mensaje@spamgourmet.com>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 21:34+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:23 +msgid "Unable to load list from App Store" +msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." + +#: ajax/creategroup.php:12 +msgid "Group already exists" +msgstr "Gruppe existiert bereits" + +#: ajax/creategroup.php:21 +msgid "Unable to add group" +msgstr "Gruppe konnte nicht angelegt werden" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "App konnte nicht aktiviert werden." + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "E-Mail Adresse gespeichert" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "Ungültige E-Mail Adresse" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "OpenID geändert" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Ungültige Anfrage" + +#: ajax/removegroup.php:16 +msgid "Unable to delete group" +msgstr "Gruppe konnte nicht gelöscht werden" + +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "Fehler bei der Anmeldung" + +#: ajax/removeuser.php:27 +msgid "Unable to delete user" +msgstr "Benutzer konnte nicht gelöscht werden" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "Sprache geändert" + +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" + +#: js/apps.js:28 js/apps.js:65 +msgid "Disable" +msgstr "Deaktivieren" + +#: js/apps.js:28 js/apps.js:54 +msgid "Enable" +msgstr "Aktivieren" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "Speichern..." + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "Deutsch (Förmlich)" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "Sicherheitshinweis" + +#: templates/admin.php:17 +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 "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." + +#: templates/admin.php:31 +msgid "Cron" +msgstr "Cron-Jobs" + +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "Führt eine Aufgabe bei jeder geladenen Seite aus." + +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "cron.php ist bei einem Webcron-Dienst registriert. Ruf die Seite cron.php im ownCloud-Root minütlich per HTTP auf." + +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "Verwenden Sie den System-Crondienst. Bitte rufen Sie die cron.php im ownCloud-Ordner über einen System-Cronjob minütlich auf." + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "Freigabe" + +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "Freigabe-API aktivieren" + +#: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "Erlaubt Anwendungen, die Freigabe-API zu nutzen" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "Links erlauben" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "Erlaube Nutzern, Dateien mithilfe von Links öffentlich zu teilen" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "Erneutes Teilen erlauben" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "Erlaubet Nutzern mit jedem zu Teilen" + +#: templates/admin.php:81 +msgid "Allow users to only share with users in their groups" +msgstr "Erlaubet Nutzern nur das Teilen in ihrer Gruppe" + +#: templates/admin.php:88 +msgid "Log" +msgstr "Log" + +#: templates/admin.php:116 +msgid "More" +msgstr "Mehr" + +#: templates/admin.php:124 +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 "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert." + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "Fügen Sie Ihre Anwendung hinzu" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "Weitere Anwendungen" + +#: templates/apps.php:27 +msgid "Select an App" +msgstr "Wählen Sie eine Anwendung aus" + +#: templates/apps.php:31 +msgid "See application page at apps.owncloud.com" +msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" + +#: templates/apps.php:32 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "<span class=\"licence\"></span>-lizenziert von <span class=\"author\"></span>" + +#: templates/help.php:9 +msgid "Documentation" +msgstr "Dokumentation" + +#: templates/help.php:10 +msgid "Managing Big Files" +msgstr "Große Dateien verwalten" + +#: templates/help.php:11 +msgid "Ask a question" +msgstr "Stellen Sie eine Frage" + +#: templates/help.php:23 +msgid "Problems connecting to help database." +msgstr "Probleme bei der Verbindung zur Hilfe-Datenbank." + +#: templates/help.php:24 +msgid "Go there manually." +msgstr "Datenbank direkt besuchen." + +#: templates/help.php:32 +msgid "Answer" +msgstr "Antwort" + +#: templates/personal.php:8 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s<strong>" +msgstr "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s<strong>" + +#: templates/personal.php:12 +msgid "Desktop and Mobile Syncing Clients" +msgstr "Desktop- und mobile Clients für die Synchronisation" + +#: templates/personal.php:13 +msgid "Download" +msgstr "Download" + +#: templates/personal.php:19 +msgid "Your password was changed" +msgstr "Ihr Passwort wurde geändert." + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "Passwort konnte nicht geändert werden" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "Aktuelles Passwort" + +#: templates/personal.php:22 +msgid "New password" +msgstr "Neues Passwort" + +#: templates/personal.php:23 +msgid "show" +msgstr "zeigen" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "Passwort ändern" + +#: templates/personal.php:30 +msgid "Email" +msgstr "E-Mail" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "Ihre E-Mail-Adresse" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "Sprache" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "Hilf bei der Übersetzung" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden." + +#: templates/users.php:21 templates/users.php:76 +msgid "Name" +msgstr "Name" + +#: templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Passwort" + +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +msgid "Groups" +msgstr "Gruppen" + +#: templates/users.php:32 +msgid "Create" +msgstr "Anlegen" + +#: templates/users.php:35 +msgid "Default Quota" +msgstr "Standard-Quota" + +#: templates/users.php:55 templates/users.php:138 +msgid "Other" +msgstr "Andere" + +#: templates/users.php:80 templates/users.php:112 +msgid "Group Admin" +msgstr "Gruppenadministrator" + +#: templates/users.php:82 +msgid "Quota" +msgstr "Quota" + +#: templates/users.php:146 +msgid "Delete" +msgstr "Löschen" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..aa82ef3cf7dee5bbdc29031c523580c1ac002af4 --- /dev/null +++ b/l10n/de_DE/user_ldap.po @@ -0,0 +1,176 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <blobbyjj@ymail.com>, 2012. +# I Robot <thomas.mueller@tmit.eu>, 2012. +# Maurice Preuß <>, 2012. +# <niko@nik-o-mat.de>, 2012. +# Phi Lieb <>, 2012. +# <transifex.3.mensaje@spamgourmet.com>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 20:38+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "Host" +msgstr "Host" + +#: templates/settings.php:8 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://" + +#: templates/settings.php:9 +msgid "Base DN" +msgstr "Basis-DN" + +#: templates/settings.php:9 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren" + +#: templates/settings.php:10 +msgid "User DN" +msgstr "Benutzer-DN" + +#: templates/settings.php:10 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer." + +#: templates/settings.php:11 +msgid "Password" +msgstr "Passwort" + +#: templates/settings.php:11 +msgid "For anonymous access, leave DN and Password empty." +msgstr "Lasse die Felder von DN und Passwort für anonymen Zugang leer." + +#: templates/settings.php:12 +msgid "User Login Filter" +msgstr "Benutzer-Login-Filter" + +#: templates/settings.php:12 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch." + +#: templates/settings.php:12 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "verwende %%uid Platzhalter, z. B. \"uid=%%uid\"" + +#: templates/settings.php:13 +msgid "User List Filter" +msgstr "Benutzer-Filter-Liste" + +#: templates/settings.php:13 +msgid "Defines the filter to apply, when retrieving users." +msgstr "Definiert den Filter für die Anfrage der Benutzer." + +#: templates/settings.php:13 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "ohne Platzhalter, z.B.: \"objectClass=person\"" + +#: templates/settings.php:14 +msgid "Group Filter" +msgstr "Gruppen-Filter" + +#: templates/settings.php:14 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "Definiert den Filter für die Anfrage der Gruppen." + +#: templates/settings.php:14 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"" + +#: templates/settings.php:17 +msgid "Port" +msgstr "Port" + +#: templates/settings.php:18 +msgid "Base User Tree" +msgstr "Basis-Benutzerbaum" + +#: templates/settings.php:19 +msgid "Base Group Tree" +msgstr "Basis-Gruppenbaum" + +#: templates/settings.php:20 +msgid "Group-Member association" +msgstr "Assoziation zwischen Gruppe und Benutzer" + +#: templates/settings.php:21 +msgid "Use TLS" +msgstr "Nutze TLS" + +#: templates/settings.php:21 +msgid "Do not use it for SSL connections, it will fail." +msgstr "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen." + +#: templates/settings.php:22 +msgid "Case insensitve LDAP server (Windows)" +msgstr "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)" + +#: templates/settings.php:23 +msgid "Turn off SSL certificate validation." +msgstr "Schalte die SSL-Zertifikatsprüfung aus." + +#: templates/settings.php:23 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." + +#: templates/settings.php:23 +msgid "Not recommended, use for testing only." +msgstr "Nicht empfohlen, nur zu Testzwecken." + +#: templates/settings.php:24 +msgid "User Display Name Field" +msgstr "Feld für den Anzeigenamen des Benutzers" + +#: templates/settings.php:24 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. " + +#: templates/settings.php:25 +msgid "Group Display Name Field" +msgstr "Feld für den Anzeigenamen der Gruppe" + +#: templates/settings.php:25 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. " + +#: templates/settings.php:27 +msgid "in bytes" +msgstr "in Bytes" + +#: templates/settings.php:29 +msgid "in seconds. A change empties the cache." +msgstr "in Sekunden. Eine Änderung leert den Cache." + +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein." + +#: templates/settings.php:32 +msgid "Help" +msgstr "Hilfe" diff --git a/l10n/el/admin_dependencies_chk.po b/l10n/el/admin_dependencies_chk.po deleted file mode 100644 index 68230095964afe067678ce954920209eec90f12a..0000000000000000000000000000000000000000 --- a/l10n/el/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:01+0200\n" -"PO-Revision-Date: 2012-08-23 13:39+0000\n" -"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Κατάσταση εξαρτήσεων" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Χρησιμοποιήθηκε από:" diff --git a/l10n/el/admin_migrate.po b/l10n/el/admin_migrate.po deleted file mode 100644 index 2d17139f4a0c82b672286100b826ce135ecff134..0000000000000000000000000000000000000000 --- a/l10n/el/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:01+0200\n" -"PO-Revision-Date: 2012-08-23 13:41+0000\n" -"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Αυτό θα δημιουργήσει ένα συμπιεσμένο αρχείο που θα περιέχει τα δεδομένα από αυτό το ownCloud.\n Παρακαλώ επιλέξτε τον τύπο εξαγωγής:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Εξαγωγή" diff --git a/l10n/el/bookmarks.po b/l10n/el/bookmarks.po deleted file mode 100644 index 0030d2d3959cefc8f30c48efcd193c8c2557f750..0000000000000000000000000000000000000000 --- a/l10n/el/bookmarks.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. -# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" -"PO-Revision-Date: 2012-07-28 11:33+0000\n" -"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Σελιδοδείκτες" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "ανώνυμο" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Σύρετε αυτό στους σελιδοδείκτες του περιηγητή σας και κάντε κλικ επάνω του, όταν θέλετε να προσθέσετε σύντομα μια ιστοσελίδα ως σελιδοδείκτη:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Ανάγνωση αργότερα" - -#: templates/list.php:13 -msgid "Address" -msgstr "Διεύθυνση" - -#: templates/list.php:14 -msgid "Title" -msgstr "Τίτλος" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Ετικέτες" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Αποθήκευση σελιδοδείκτη" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Δεν έχετε σελιδοδείκτες" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Εφαρμογίδιο Σελιδοδεικτών <br />" diff --git a/l10n/el/calendar.po b/l10n/el/calendar.po deleted file mode 100644 index b8bca2723980e30b0db6cd9d92be0395f4261913..0000000000000000000000000000000000000000 --- a/l10n/el/calendar.po +++ /dev/null @@ -1,818 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <christosvas@in.gr>, 2011. -# Dimitris M. <monopatis@gmail.com>, 2012. -# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. -# Marios Bekatoros <>, 2012. -# Petros Kyladitis <petros.kyladitis@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Δεν έχει δημιουργηθεί λανθάνουσα μνήμη για όλα τα ημερολόγια" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Όλα έχουν αποθηκευτεί στη cache" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Δε βρέθηκαν ημερολόγια." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Δε βρέθηκαν γεγονότα." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Λάθος ημερολόγιο" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Το αρχείο που περιέχει είτε κανένα γεγονός είτε όλα τα γεγονότα έχουν ήδη αποθηκευτεί στο ημερολόγιό σας." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "τα συμβάντα αποθηκεύτηκαν σε ένα νέο ημερολόγιο" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Η εισαγωγή απέτυχε" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "το συμβάν αποθηκεύτηκε στο ημερολογιό σου" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Νέα ζώνη ώρας:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Η ζώνη ώρας άλλαξε" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Μη έγκυρο αίτημα" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Ημερολόγιο" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Γενέθλια" - -#: lib/app.php:122 -msgid "Business" -msgstr "Επιχείρηση" - -#: lib/app.php:123 -msgid "Call" -msgstr "Κλήση" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Πελάτες" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Προμηθευτής" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Διακοπές" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ιδέες" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Ταξίδι" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Γιορτή" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Συνάντηση" - -#: lib/app.php:131 -msgid "Other" -msgstr "Άλλο" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Προσωπικό" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Έργα" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Ερωτήσεις" - -#: lib/app.php:135 -msgid "Work" -msgstr "Εργασία" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "από" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "ανώνυμο" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Νέα Ημερολόγιο" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Μη επαναλαμβανόμενο" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Καθημερινά" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Εβδομαδιαία" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Κάθε μέρα" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Δύο φορές την εβδομάδα" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Μηνιαία" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Ετήσια" - -#: lib/object.php:388 -msgid "never" -msgstr "ποτέ" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "κατά συχνότητα πρόσβασης" - -#: lib/object.php:390 -msgid "by date" -msgstr "κατά ημερομηνία" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "κατά ημέρα" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "κατά εβδομάδα" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Δευτέρα" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Τρίτη" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Τετάρτη" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Πέμπτη" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Παρασκευή" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Σάββατο" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Κυριακή" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "συμβάντα της εβδομάδας του μήνα" - -#: lib/object.php:428 -msgid "first" -msgstr "πρώτο" - -#: lib/object.php:429 -msgid "second" -msgstr "δεύτερο" - -#: lib/object.php:430 -msgid "third" -msgstr "τρίτο" - -#: lib/object.php:431 -msgid "fourth" -msgstr "τέταρτο" - -#: lib/object.php:432 -msgid "fifth" -msgstr "πέμπτο" - -#: lib/object.php:433 -msgid "last" -msgstr "τελευταίο" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Ιανουάριος" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Φεβρουάριος" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Μάρτιος" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Απρίλιος" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Μάϊος" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Ιούνιος" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Ιούλιος" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Αύγουστος" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Σεπτέμβριος" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Οκτώβριος" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Νοέμβριος" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Δεκέμβριος" - -#: lib/object.php:488 -msgid "by events date" -msgstr "κατά ημερομηνία συμβάντων" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "κατά ημέρα(ες) του έτους" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "κατά εβδομάδα(ες)" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "κατά ημέρα και μήνα" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Ημερομηνία" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Ημερ." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Κυρ." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Δευ." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Τρί." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Τετ." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Πέμ." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Παρ." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Σάβ." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Ιαν." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Φεβ." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Μάρ." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Απρ." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Μαΐ." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Ιούν." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Ιούλ." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Αύγ." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Σεπ." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Οκτ." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Νοέ." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Δεκ." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Ολοήμερο" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Πεδία που λείπουν" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Τίτλος" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Από Ημερομηνία" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Από Ώρα" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Έως Ημερομηνία" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Έως Ώρα" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Το συμβάν ολοκληρώνεται πριν από την έναρξή του" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Υπήρξε σφάλμα στη βάση δεδομένων" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Εβδομάδα" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Μήνας" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Λίστα" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Σήμερα" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Τα ημερολόγια σου" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Σύνδεση CalDAV" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Κοινόχρηστα ημερολόγια" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Δεν υπάρχουν κοινόχρηστα ημερολόγια" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Διαμοίρασε ένα ημερολόγιο" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Λήψη" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Επεξεργασία" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Διαγραφή" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "μοιράστηκε μαζί σας από " - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Νέο ημερολόγιο" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Επεξεργασία ημερολογίου" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Προβολή ονόματος" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Ενεργό" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Χρώμα ημερολογίου" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Αποθήκευση" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Υποβολή" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Ακύρωση" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Επεξεργασία ενός γεγονότος" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Εξαγωγή" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Πληροφορίες γεγονότος" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Επαναλαμβανόμενο" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Ειδοποίηση" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Συμμετέχοντες" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Διαμοίρασε" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Τίτλος συμβάντος" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Κατηγορία" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Διαχώρισε τις κατηγορίες με κόμμα" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Επεξεργασία κατηγοριών" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Ολοήμερο συμβάν" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Από" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Έως" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Επιλογές για προχωρημένους" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Τοποθεσία" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Τοποθεσία συμβάντος" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Περιγραφή" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Περιγραφή του συμβάντος" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Επαναλαμβανόμενο" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Για προχωρημένους" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Επιλογή ημερών εβδομάδας" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Επιλογή ημερών" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "και των ημερών του χρόνου που υπάρχουν συμβάντα." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "και των ημερών του μήνα που υπάρχουν συμβάντα." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Επιλογή μηνών" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Επιλογή εβδομάδων" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "και των εβδομάδων του χρόνου που υπάρουν συμβάντα." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Διάστημα" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Τέλος" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "περιστατικά" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "δημιουργία νέου ημερολογίου" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Εισαγωγή αρχείου ημερολογίου" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Παρακαλώ επέλεξε ένα ημερολόγιο" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Όνομα νέου ημερολογίου" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Επέλεξε ένα διαθέσιμο όνομα!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Ένα ημερολόγιο με αυτό το όνομα υπάρχει ήδη. Εάν θέλετε να συνεχίσετε, αυτά τα 2 ημερολόγια θα συγχωνευθούν." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Εισαγωγή" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Κλείσιμο Διαλόγου" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Δημιουργήστε ένα νέο συμβάν" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Εμφάνισε ένα γεγονός" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Δεν επελέγησαν κατηγορίες" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "του" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "στο" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Ζώνη ώρας" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24ω" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12ω" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Cache" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Εκκαθάριση λανθάνουσας μνήμης για επανάληψη γεγονότων" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Διευθύνσεις συγχρονισμού ημερολογίου CalDAV" - -#: templates/settings.php:87 -msgid "more info" -msgstr "περισσότερες πλροφορίες" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Κύρια Διεύθυνση(Επαφή και άλλα)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr " iCalendar link(s) μόνο για ανάγνωση" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Χρήστες" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "επέλεξε χρήστες" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Επεξεργάσιμο" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Ομάδες" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "Επέλεξε ομάδες" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "κάνε το δημόσιο" diff --git a/l10n/el/contacts.po b/l10n/el/contacts.po deleted file mode 100644 index ddb35e2e8c3348dbbc68df054aaad980c13ebb18..0000000000000000000000000000000000000000 --- a/l10n/el/contacts.po +++ /dev/null @@ -1,959 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <christosvas@in.gr>, 2011. -# Dimitris M. <monopatis@gmail.com>, 2012. -# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. -# Marios Bekatoros <>, 2012. -# Nisok Kosin <nikos.efthimiou@gmail.com>, 2012. -# Petros Kyladitis <petros.kyladitis@gmail.com>, 2011, 2012. -# <vagelis@cyberdest.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:34+0000\n" -"Last-Translator: Nisok Kosin <nikos.efthimiou@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Σφάλμα (απ)ενεργοποίησης βιβλίου διευθύνσεων" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "δεν ορίστηκε id" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Δε μπορεί να γίνει αλλαγή βιβλίου διευθύνσεων χωρίς όνομα" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Σφάλμα ενημέρωσης βιβλίου διευθύνσεων." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Δε δόθηκε ID" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Λάθος κατά τον ορισμό checksum " - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Δε επελέγησαν κατηγορίες για διαγραφή" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Δε βρέθηκε βιβλίο διευθύνσεων" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Δεν βρέθηκαν επαφές" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Σφάλμα κατά την προσθήκη επαφής." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "δεν ορίστηκε όνομα στοιχείου" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Δε αναγνώστηκε η επαφή" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Αδύνατη προσθήκη κενής ιδιότητας." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Πρέπει να συμπληρωθεί τουλάχιστον ένα από τα παιδία διεύθυνσης." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Προσπάθεια προσθήκης διπλότυπης ιδιότητας:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Λείπει IM παράμετρος." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "Άγνωστο IM:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Οι πληροφορίες σχετικά με vCard είναι εσφαλμένες. Παρακαλώ επαναφορτώστε τη σελίδα." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Λείπει ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Σφάλμα κατά την ανάγνωση του VCard για το ID:\"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "δε ορίστηκε checksum " - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Οι πληροφορίες για τη vCard είναι λανθασμένες.Παρακαλώ ξαναφορτώστε τη σελίδα: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Κάτι χάθηκε στο άγνωστο. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Δε υπεβλήθει ID επαφής" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Σφάλμα ανάγνωσης εικόνας επαφής" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Σφάλμα αποθήκευσης προσωρινού αρχείου" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Η φορτωμένη φωτογραφία δεν είναι έγκυρη" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Λείπει ID επαφής" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Δε δόθηκε διαδρομή εικόνας" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Το αρχείο δεν υπάρχει:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Σφάλμα φόρτωσης εικόνας" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Σφάλμα κατά τη λήψη αντικειμένου επαφής" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Σφάλμα κατά τη λήψη ιδιοτήτων ΦΩΤΟΓΡΑΦΙΑΣ." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Σφάλμα κατά την αποθήκευση επαφής." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Σφάλμα κατά την αλλαγή μεγέθους εικόνας" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Σφάλμα κατά την περικοπή εικόνας" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Σφάλμα κατά την δημιουργία προσωρινής εικόνας" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Σφάλμα κατά την εύρεση της εικόνας: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Σφάλμα κατά την αποθήκευση επαφών" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Δεν υπάρχει σφάλμα, το αρχείο ανέβηκε με επιτυχία " - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Το μέγεθος του αρχείου ξεπερνάει το upload_max_filesize του php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Το αρχείο ανέβηκε μερικώς" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Δεν ανέβηκε κάποιο αρχείο" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Λείπει ο προσωρινός φάκελος" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Δεν ήταν δυνατή η αποθήκευση της προσωρινής εικόνας: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Δεν ήταν δυνατή η φόρτωση της προσωρινής εικόνας: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Επαφές" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Λυπούμαστε, αυτή η λειτουργία δεν έχει υλοποιηθεί ακόμα" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Δεν έχει υλοποιηθεί" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Αδυναμία λήψης έγκυρης διεύθυνσης" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Σφάλμα" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "Δεν έχετε επαρκή δικαιώματα για προσθέσετε επαφές στο " - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Παρακαλούμε επιλέξτε ένα από τα δικάς σας βιβλία διευθύνσεων." - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Σφάλμα δικαιωμάτων" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Το πεδίο δεν πρέπει να είναι άδειο." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Αδύνατο να μπουν σε σειρά τα στοιχεία" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "το 'deleteProperty' καλέστηκε χωρίς without type argument. Παρακαλώ αναφέρατε στο bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Αλλαγή ονόματος" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Δεν επιλέχτηκαν αρχεία για μεταφόρτωση" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Το αρχείο που προσπαθείτε να ανεβάσετε υπερβαίνει το μέγιστο μέγεθος για τις προσθήκες αρχείων σε αυτόν τον server." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Σφάλμα στην φόρτωση εικόνας προφίλ." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Επιλογή τύπου" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Κάποιες επαφές σημειώθηκαν προς διαγραφή,δεν έχουν διαγραφεί ακόμα. Παρακαλώ περιμένετε μέχρι να διαγραφούν." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Επιθυμείτε να συγχωνεύσετε αυτά τα δύο βιβλία διευθύνσεων?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Αποτέλεσμα: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " εισάγεται," - -#: js/loader.js:49 -msgid " failed." -msgstr " απέτυχε." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Το όνομα προβολής δεν μπορεί να είναι κενό. " - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Το βιβλίο διευθύνσεων δεν βρέθηκε:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Αυτό δεν είναι το βιβλίο διευθύνσεων σας." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Η επαφή δεν μπόρεσε να βρεθεί." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Εργασία" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Σπίτι" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Άλλο" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Κινητό" - -#: lib/app.php:203 -msgid "Text" -msgstr "Κείμενο" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Ομιλία" - -#: lib/app.php:205 -msgid "Message" -msgstr "Μήνυμα" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Φαξ" - -#: lib/app.php:207 -msgid "Video" -msgstr "Βίντεο" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Βομβητής" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Διαδίκτυο" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Γενέθλια" - -#: lib/app.php:253 -msgid "Business" -msgstr "Επιχείρηση" - -#: lib/app.php:254 -msgid "Call" -msgstr "Κάλεσε" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Πελάτες" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Προμηθευτής" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Διακοπές" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Ιδέες" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Ταξίδι" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Ιωβηλαίο" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Συνάντηση" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Προσωπικό" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Έργα" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Ερωτήσεις" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name} έχει Γενέθλια" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Επαφή" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "Δεν διαθέτε επαρκή δικαιώματα για την επεξεργασία αυτής της επαφής." - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "Δεν διαθέτε επαρκή δικαιώματα για την διαγραφή αυτής της επαφής." - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Προσθήκη επαφής" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Εισαγωγή" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Ρυθμίσεις" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Βιβλία διευθύνσεων" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Κλείσιμο " - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Συντομεύσεις πλητρολογίου" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Πλοήγηση" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Επόμενη επαφή στη λίστα" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Προηγούμενη επαφή στη λίστα" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Ανάπτυξη/σύμπτυξη τρέχοντος βιβλίου διευθύνσεων" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Επόμενο βιβλίο διευθύνσεων" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Προηγούμενο βιβλίο διευθύνσεων" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Ενέργειες" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Ανανέωσε τη λίστα επαφών" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Προσθήκη νέας επαφής" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Προσθήκη νέου βιβλίου επαφών" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Διαγραφή τρέχουσας επαφής" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Ρίξε μια φωτογραφία για ανέβασμα" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Διαγραφή τρέχουσας φωτογραφίας" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Επεξεργασία τρέχουσας φωτογραφίας" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Ανέβασε νέα φωτογραφία" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Επέλεξε φωτογραφία από το ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format custom, Όνομα, Επώνυμο, Αντίστροφο ή Αντίστροφο με κόμμα" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Αλλάξτε τις λεπτομέρειες ονόματος" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Οργανισμός" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Διαγραφή" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Παρατσούκλι" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Εισάγετε παρατσούκλι" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Ιστότοπος" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Πήγαινε στον ιστότοπο" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "ΗΗ-ΜΜ-ΕΕΕΕ" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Ομάδες" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Διαχώρισε τις ομάδες με κόμμα " - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Επεξεργασία ομάδων" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Προτιμώμενο" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Παρακαλώ εισήγαγε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Εισήγαγε διεύθυνση ηλεκτρονικού ταχυδρομείου" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Αποστολή σε διεύθυνση" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Διαγραφή διεύθυνση email" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Εισήγαγε αριθμό τηλεφώνου" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Διέγραψε αριθμό τηλεφώνου" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Instant Messenger" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Διαγραφή IM" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Προβολή στο χάρτη" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Επεξεργασία λεπτομερειών διεύθυνσης" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Πρόσθεσε τις σημειώσεις εδώ" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Προσθήκη πεδίου" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Τηλέφωνο" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Email" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Άμεσα μυνήματα" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Διεύθυνση" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Σημείωση" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Λήψη επαφής" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Διαγραφή επαφής" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Η προσωρινή εικόνα αφαιρέθηκε από την κρυφή μνήμη." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Επεξεργασία διεύθυνσης" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Τύπος" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Ταχ. Θυρίδα" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Διεύθυνση οδού" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Οδός και αριθμός" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Εκτεταμένη" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Αριθμός διαμερίσματος" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Πόλη" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Περιοχή" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Π.χ. Πολιτεία ή επαρχεία" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Τ.Κ." - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Ταχυδρομικός Κωδικός" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Χώρα" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Βιβλίο διευθύνσεων" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "προθέματα" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Δις" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Κα" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Κα" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Σερ" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Κα" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Δρ." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Όνομα" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Επιπλέον ονόματα" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Επώνυμο" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "καταλήξεις" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Εισαγωγή αρχείου επαφών" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Παρακαλώ επέλεξε βιβλίο διευθύνσεων" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Δημιουργία νέου βιβλίου διευθύνσεων" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Όνομα νέου βιβλίου διευθύνσεων" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Εισαγωγή επαφών" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Δεν έχεις επαφές στο βιβλίο διευθύνσεων" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Προσθήκη επαφής" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Επέλεξε βιβλίο διευθύνσεων" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Εισαγωγή ονόματος" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Εισαγωγή περιγραφής" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "συγχρονισμός διευθύνσεων μέσω CardDAV " - -#: templates/settings.php:3 -msgid "more info" -msgstr "περισσότερες πληροφορίες" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Κύρια διεύθυνση" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Εμφάνιση συνδέσμου CardDav" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Εμφάνιση συνδέσμου VCF μόνο για ανάγνωση" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Μοιράσου" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Λήψη" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Επεξεργασία" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Νέο βιβλίο διευθύνσεων" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Όνομα" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Περιγραφή" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Αποθήκευση" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Ακύρωση" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Περισσότερα..." diff --git a/l10n/el/core.po b/l10n/el/core.po index 7edf2b29dd9cfd9abd08dfade77e1d03c240ae61..35782e6e5753d65c7040abd2473f1218c189bf43 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-01 02:04+0200\n" -"PO-Revision-Date: 2012-09-30 17:27+0000\n" -"Last-Translator: Dimitris M. <monopatis@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@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" @@ -34,55 +34,55 @@ msgstr "Δεν έχετε να προστέσθέσεται μια κα" msgid "This category already exists: " msgstr "Αυτή η κατηγορία υπάρχει ήδη" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Ιανουάριος" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Φεβρουάριος" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Μάρτιος" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Απρίλιος" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Μάϊος" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Ιούνιος" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Ιούλιος" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Αύγουστος" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Σεπτέμβριος" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Οκτώβριος" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Νοέμβριος" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Δεκέμβριος" @@ -110,8 +110,8 @@ msgstr "Οκ" msgid "No categories selected for deletion." msgstr "Δεν επιλέχτηκαν κατηγορίες για διαγραφή" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Σφάλμα" @@ -151,7 +151,8 @@ msgstr "Διαμοιρασμός με σύνδεσμο" msgid "Password protect" msgstr "Προστασία κωδικού" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Κωδικός" @@ -187,39 +188,39 @@ msgstr "με" msgid "Unshare" msgstr "Σταμάτημα μοιράσματος" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "δημιουργία" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "ανανέωση" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "διαγραφή" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Προστασία με κωδικό" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" @@ -243,8 +244,8 @@ msgstr "Ζητήθησαν" msgid "Login failed!" msgstr "Η σύνδεση απέτυχε!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Όνομα Χρήστη" @@ -304,52 +305,77 @@ msgstr "Επεξεργασία κατηγορίας" msgid "Add" msgstr "Προσθήκη" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Προειδοποίηση Ασφαλείας" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Δημιουργήστε έναν <strong>λογαριασμό διαχειριστή</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Φάκελος δεδομένων" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Διαμόρφωση της βάσης δεδομένων" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "θα χρησιμοποιηθούν" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Κωδικός πρόσβασης βάσης δεδομένων" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "Υπηρεσίες web υπό τον έλεγχό σας" @@ -357,15 +383,29 @@ msgstr "Υπηρεσίες web υπό τον έλεγχό σας" msgid "Log out" msgstr "Αποσύνδεση" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Ξεχάσατε τον κωδικό σας;" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "να με θυμάσαι" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Είσοδος" @@ -380,3 +420,17 @@ msgstr "προηγούμενο" #: templates/part.pagenavi.php:20 msgid "next" msgstr "επόμενο" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 6bb867891c09b59ecd16ce12029b22dca8edf299..261b71a5b76a01fb8e3adf50d2f02b8a2108add1 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -6,13 +6,15 @@ # Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. # Nisok Kosin <nikos.efthimiou@gmail.com>, 2012. # Petros Kyladitis <petros.kyladitis@gmail.com>, 2012. +# Γιάννης <yannanth@gmail.com>, 2012. +# Γιάννης Ανθυμίδης <yannanth@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 21:17+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 20:42+0000\n" +"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\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" @@ -22,27 +24,27 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Προσβαση παρασχέθηκε" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Dropbox " #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Παροχή πρόσβασης" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Συμπληρώστε όλα τα απαιτούμενα πεδία" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό." #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " #: templates/settings.php:3 msgid "External Storage" @@ -78,7 +80,7 @@ msgstr "Κανένα επιλεγμένο" #: templates/settings.php:63 msgid "All Users" -msgstr "Όλοι οι χρήστες" +msgstr "Όλοι οι Χρήστες" #: templates/settings.php:64 msgid "Groups" diff --git a/l10n/el/files_odfviewer.po b/l10n/el/files_odfviewer.po deleted file mode 100644 index 5e6d54efe4d1cc15c6ffc8b2da7ec7d5f3d905d8..0000000000000000000000000000000000000000 --- a/l10n/el/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/el/files_pdfviewer.po b/l10n/el/files_pdfviewer.po deleted file mode 100644 index ccc6193a0bf3991686e218db8746d9ae288566ff..0000000000000000000000000000000000000000 --- a/l10n/el/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/el/files_texteditor.po b/l10n/el/files_texteditor.po deleted file mode 100644 index c449b1118455b3d9790f25465bb292a0c921ecfc..0000000000000000000000000000000000000000 --- a/l10n/el/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/el/gallery.po b/l10n/el/gallery.po deleted file mode 100644 index 57be7acc264489e0e7357b671c65f1c8c386a9ea..0000000000000000000000000000000000000000 --- a/l10n/el/gallery.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dimitris M. <monopatis@gmail.com>, 2012. -# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. -# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. -# Marios Bekatoros <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 08:11+0000\n" -"Last-Translator: Marios Bekatoros <>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Εικόνες" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Κοινοποίηση συλλογής" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Σφάλμα: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Εσωτερικό σφάλμα" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Προβολή Διαφανειών" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Επιστροφή" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Αφαίρεση επιβεβαίωσης" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Θέλετε να αφαιρέσετε το άλμπουμ" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Αλλάξτε το όνομα του άλμπουμ" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Νέο όνομα άλμπουμ" diff --git a/l10n/el/impress.po b/l10n/el/impress.po deleted file mode 100644 index f6cd7154530336f082de706324506e7187904529..0000000000000000000000000000000000000000 --- a/l10n/el/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/el/media.po b/l10n/el/media.po deleted file mode 100644 index 4d82e044e37a90a30e5e7ae3d62796856f49df7c..0000000000000000000000000000000000000000 --- a/l10n/el/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Petros Kyladitis <petros.kyladitis@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/language/el/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Μουσική" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Αναπαραγωγή" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Παύση" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Προηγούμενο" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Επόμενο" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Σίγαση" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Επαναφορά ήχου" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Επανασάρωση συλλογής" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Καλλιτέχνης" - -#: templates/music.php:38 -msgid "Album" -msgstr "Άλμπουμ" - -#: templates/music.php:39 -msgid "Title" -msgstr "Τίτλος" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 89a0c27429985b6866293b9c6c3000c9f759c258..3e0e1b87f3f01e935654e492832f63a9ac01fdc2 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -6,18 +6,21 @@ # Dimitris M. <monopatis@gmail.com>, 2012. # Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. # Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. +# <icewind1991@gmail.com>, 2012. # <icewind1991@gmail.com>, 2012. # Marios Bekatoros <>, 2012. # Nisok Kosin <nikos.efthimiou@gmail.com>, 2012. +# <petros.kyladitis@gmail.com>, 2011. # <petros.kyladitis@gmail.com>, 2011. # Petros Kyladitis <petros.kyladitis@gmail.com>, 2011-2012. +# Γιάννης Ανθυμίδης <yannanth@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-09 02:03+0200\n" -"PO-Revision-Date: 2012-10-09 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 21:01+0000\n" +"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\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" @@ -29,7 +32,7 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Σφάλμα στην φόρτωση της λίστας από το App Store" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 +#: ajax/creategroup.php:9 ajax/removeuser.php:18 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" @@ -48,7 +51,7 @@ msgstr "Αδυναμία ενεργοποίησης εφαρμογής " #: ajax/lostpassword.php:14 msgid "Email saved" -msgstr "Το Email αποθηκεύτηκε " +msgstr "Το email αποθηκεύτηκε " #: ajax/lostpassword.php:16 msgid "Invalid email" @@ -66,7 +69,7 @@ msgstr "Μη έγκυρο αίτημα" msgid "Unable to delete group" msgstr "Αδυναμία διαγραφής ομάδας" -#: ajax/removeuser.php:22 +#: ajax/removeuser.php:27 msgid "Unable to delete user" msgstr "Αδυναμία διαγραφής χρήστη" @@ -96,7 +99,7 @@ msgstr "Ενεργοποίηση" msgid "Saving..." msgstr "Αποθήκευση..." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "__όνομα_γλώσσας__" @@ -175,7 +178,7 @@ msgstr "Αρχείο καταγραφής" #: templates/admin.php:116 msgid "More" -msgstr "Περισσότερο" +msgstr "Περισσότερα" #: templates/admin.php:124 msgid "" @@ -189,19 +192,19 @@ msgstr "Αναπτύχθηκε από την <a href=\"http://ownCloud.org/conta #: 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 "Η σελίδα εφαρμογών στο apps.owncloud.com" +msgstr "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com" #: templates/apps.php:32 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" @@ -213,7 +216,7 @@ msgstr "Τεκμηρίωση" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "Διαχείριση μεγάλων αρχείων" +msgstr "Διαχείριση Μεγάλων Αρχείων" #: templates/help.php:11 msgid "Ask a question" @@ -274,7 +277,7 @@ msgstr "Email" #: templates/personal.php:31 msgid "Your email address" -msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου σας" +msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" #: templates/personal.php:32 msgid "Fill in an email address to enable password recovery" @@ -286,11 +289,11 @@ msgstr "Γλώσσα" #: templates/personal.php:44 msgid "Help translate" -msgstr "Βοηθήστε στην μετάφραση" +msgstr "Βοηθήστε στη μετάφραση" #: templates/personal.php:51 msgid "use this address to connect to your ownCloud in your file manager" -msgstr "χρησιμοποιήστε αυτή τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας" +msgstr "χρησιμοποιήστε αυτήν τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας" #: templates/users.php:21 templates/users.php:76 msgid "Name" @@ -310,7 +313,7 @@ msgstr "Δημιουργία" #: templates/users.php:35 msgid "Default Quota" -msgstr "Προεπιλεγμένο όριο" +msgstr "Προεπιλεγμένο Όριο" #: templates/users.php:55 templates/users.php:138 msgid "Other" @@ -322,7 +325,7 @@ msgstr "Ομάδα Διαχειριστών" #: templates/users.php:82 msgid "Quota" -msgstr "Σύνολο χώρου" +msgstr "Σύνολο Χώρου" #: templates/users.php:146 msgid "Delete" diff --git a/l10n/el/tasks.po b/l10n/el/tasks.po deleted file mode 100644 index 3e9b76003275dfec620766f935180620956f4250..0000000000000000000000000000000000000000 --- a/l10n/el/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Nisok Kosin <nikos.efthimiou@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 08:53+0000\n" -"Last-Translator: Nisok Kosin <nikos.efthimiou@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Μην έγκυρη ημερομηνία / ώρα" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Εργασίες" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Χωρίς κατηγορία" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Μη ορισμένο" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=υψηλότερο" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=μέτριο" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=χαμηλότερο" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Άδεια περίληψη" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Μη έγκυρο ποσοστό ολοκλήρωσης" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Μη έγκυρη προτεραιότητα " - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Προσθήκη εργασίας" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Φόρτωση εργασιών..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Σημαντικό " - -#: templates/tasks.php:23 -msgid "More" -msgstr "Περισσότερα" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Λιγότερα" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Διαγραφή" diff --git a/l10n/el/user_migrate.po b/l10n/el/user_migrate.po deleted file mode 100644 index 51b56b84a266821aeb276673048945f12f718eb8..0000000000000000000000000000000000000000 --- a/l10n/el/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 13:37+0000\n" -"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Εξαγωγή" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Παρουσιάστηκε σφάλμα" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Εξαγωγή του λογαριασμού χρήστη σας" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Αυτό θα δημιουργήσει ένα συμπιεσμένο αρχείο που θα περιέχει τον λογαριασμό σας ownCloud." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Εισαγωγή λογαριασμού χρήστη" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Εισαγωγή" diff --git a/l10n/el/user_openid.po b/l10n/el/user_openid.po deleted file mode 100644 index 8d833ab11d24143b0acd9053de30d9de9ed0b882..0000000000000000000000000000000000000000 --- a/l10n/el/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Nisok Kosin <nikos.efthimiou@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 08:57+0000\n" -"Last-Translator: Nisok Kosin <nikos.efthimiou@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Ταυτότητα: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Χρήστης: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Σύνδεση" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Σφάλμα: <b> Δεν έχει επιλεχθεί κάποιος χρήστης" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Εξουσιοδοτημένος παροχέας OpenID" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Η διευθυνσή σας σε Wordpress, Identi.ca, …" diff --git a/l10n/eo/admin_dependencies_chk.po b/l10n/eo/admin_dependencies_chk.po deleted file mode 100644 index 5fb88e68aed8a552d5bd949e3bf9e5b82a367c36..0000000000000000000000000000000000000000 --- a/l10n/eo/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 20:59+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "La modulo php-json necesas por komuniko inter la multaj aplikaĵoj" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "La modulo php-curl necesas por venigi la paĝotitolon dum aldono de legosigno" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "La modulo php-gd necesas por krei bildetojn." - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "La modulo php-ldap necesas por konekti al via LDAP-servilo." - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "La modulo php-zip necesas por elŝuti plurajn dosierojn per unu fojo." - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "La modulo php-mb_multibyte necesas por ĝuste administri la kodprezenton." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "La modulo php-ctype necesas por validkontroli datumojn." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "La modulo php-xml necesas por kunhavigi dosierojn per WebDAV." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "La ordono allow_url_fopen de via php.ini devus valori 1 por ricevi scibazon el OCS-serviloj" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "La modulo php-pdo necesas por konservi datumojn de ownCloud en datumbazo." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Stato de dependoj" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Uzata de:" diff --git a/l10n/eo/admin_migrate.po b/l10n/eo/admin_migrate.po deleted file mode 100644 index 61384915c2afa1a37cd333f1c447644df127639e..0000000000000000000000000000000000000000 --- a/l10n/eo/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 20:32+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Malenporti ĉi tiun aperon de ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Ĉi tio kreos densigitan dosieron, kiu enhavos la datumojn de ĉi tiu apero de ownCloud.\nBonvolu elekti la tipon de malenportado:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Malenporti" diff --git a/l10n/eo/bookmarks.po b/l10n/eo/bookmarks.po deleted file mode 100644 index 926278cd289c181860a8f3185926c1e889e0945b..0000000000000000000000000000000000000000 --- a/l10n/eo/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-04 02:02+0200\n" -"PO-Revision-Date: 2012-08-03 22:44+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Legosignoj" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "nenomita" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Ŝovu tion ĉi al la legosignoj de via TTT-legilo kaj klaku ĝin, se vi volas rapide legosignigi TTT-paĝon:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Legi poste" - -#: templates/list.php:13 -msgid "Address" -msgstr "Adreso" - -#: templates/list.php:14 -msgid "Title" -msgstr "Titolo" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Etikedoj" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Konservi legosignon" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Vi havas neniun legosignon" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/eo/calendar.po b/l10n/eo/calendar.po deleted file mode 100644 index 4fc02e02b0c7e98017a36532f7950449309c425b..0000000000000000000000000000000000000000 --- a/l10n/eo/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -# <mstreet@kde.org.ar>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 14:17+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Ne ĉiuj kalendaroj estas tute kaŝmemorigitaj" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Ĉio ŝajnas tute kaŝmemorigita" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Neniu kalendaro troviĝis." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Neniu okazaĵo troviĝis." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Malĝusta kalendaro" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Aŭ la dosiero enhavas neniun okazaĵon aŭ ĉiuj okazaĵoj jam estas konservitaj en via kalendaro." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "okazaĵoj estas konservitaj en la nova kalendaro" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Enporto malsukcesis" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "okazaĵoj estas konservitaj en via kalendaro" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nova horozono:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "La horozono estas ŝanĝita" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Nevalida peto" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalendaro" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd d/M" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd d/M" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "d MMM[ yyyy]{ '—'d[ MMM] yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, d-a de MMM yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Naskiĝotago" - -#: lib/app.php:122 -msgid "Business" -msgstr "Negoco" - -#: lib/app.php:123 -msgid "Call" -msgstr "Voko" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klientoj" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Livero" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Ferioj" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideoj" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Vojaĝo" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubileo" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Rendevuo" - -#: lib/app.php:131 -msgid "Other" -msgstr "Alia" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Persona" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projektoj" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Demandoj" - -#: lib/app.php:135 -msgid "Work" -msgstr "Laboro" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "de" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "nenomita" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nova kalendaro" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Ĉi tio ne ripetiĝas" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Tage" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Semajne" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Labortage" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Semajnduope" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Monate" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Jare" - -#: lib/object.php:388 -msgid "never" -msgstr "neniam" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "laŭ aperoj" - -#: lib/object.php:390 -msgid "by date" -msgstr "laŭ dato" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "laŭ monattago" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "laŭ semajntago" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "lundo" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "mardo" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "merkredo" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "ĵaŭdo" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "vendredo" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "sabato" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "dimanĉo" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "la monatsemajno de la okazaĵo" - -#: lib/object.php:428 -msgid "first" -msgstr "unua" - -#: lib/object.php:429 -msgid "second" -msgstr "dua" - -#: lib/object.php:430 -msgid "third" -msgstr "tria" - -#: lib/object.php:431 -msgid "fourth" -msgstr "kvara" - -#: lib/object.php:432 -msgid "fifth" -msgstr "kvina" - -#: lib/object.php:433 -msgid "last" -msgstr "lasta" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januaro" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februaro" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Marto" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Aprilo" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Majo" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Junio" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Julio" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Aŭgusto" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Septembro" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktobro" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Novembro" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Decembro" - -#: lib/object.php:488 -msgid "by events date" -msgstr "laŭ okazaĵdato" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "laŭ jartago(j)" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "laŭ semajnnumero(j)" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "laŭ tago kaj monato" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Dato" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "dim." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "lun." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "mar." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "mer." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "ĵaŭ." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "ven." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "sab." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Apr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Maj." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Aŭg." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Sep." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Okt." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Dec." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "La tuta tago" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Mankas iuj kampoj" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titolo" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "ekde la dato" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "ekde la horo" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "ĝis la dato" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "ĝis la horo" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "La okazaĵo finas antaŭ komenci" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Datumbaza malsukceso okazis" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Semajno" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Monato" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Listo" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hodiaŭ" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Agordo" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Viaj kalendaroj" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav-a ligilo" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Kunhavigitaj kalendaroj" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Neniu kunhavigita kalendaro" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Kunhavigi kalendaron" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Elŝuti" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Redakti" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Forigi" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "kunhavigita kun vi fare de" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nova kalendaro" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Redakti la kalendaron" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Montrota nomo" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiva" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalendarokoloro" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Konservi" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Sendi" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Nuligi" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Redakti okazaĵon" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Elporti" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informo de okazaĵo" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Ripetata" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarmo" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Ĉeestontoj" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Kunhavigi" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Okazaĵotitolo" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategorio" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Disigi kategoriojn per komoj" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Redakti kategoriojn" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "La tuta tago" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Ekde" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Ĝis" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Altnivela agordo" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Loko" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Loko de okazaĵo" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Priskribo" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Okazaĵopriskribo" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Ripeti" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Altnivelo" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Elekti semajntagojn" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Elekti tagojn" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "kaj la jartago de la okazaĵo." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "kaj la monattago de la okazaĵo." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Elekti monatojn" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Elekti semajnojn" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "kaj la jarsemajno de la okazaĵo." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervalo" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Fino" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "aperoj" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Krei novan kalendaron" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Enporti kalendarodosieron" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Bonvolu elekti kalendaron" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nomo de la nova kalendaro" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Prenu haveblan nomon!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Kalendaro kun ĉi tiu nomo jam ekzastas. Se vi malgraŭe daŭros, ĉi tiuj kalendaroj kunfandiĝos." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Enporti" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Fermi la dialogon" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Krei okazaĵon" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Vidi okazaĵon" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Neniu kategorio elektita" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "de" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "ĉe" - -#: templates/settings.php:10 -msgid "General" -msgstr "Ĝenerala" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Horozono" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Aŭtomate ĝisdatigi la horozonon" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Horoformo" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Komenci semajnon je" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Kaŝmemoro" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Forviŝi kaŝmemoron por ripeto de okazaĵoj" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URL-oj" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "sinkronigaj adresoj por CalDAV-kalendaroj" - -#: templates/settings.php:87 -msgid "more info" -msgstr "pli da informo" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Ĉefa adreso (Kontact kaj aliaj)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Nurlegebla(j) iCalendar-ligilo(j)" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Uzantoj" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "elekti uzantojn" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Redaktebla" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupoj" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "elekti grupojn" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "publikigi" diff --git a/l10n/eo/contacts.po b/l10n/eo/contacts.po deleted file mode 100644 index 3d95d0c4484eee19122e0007d61387ca1f1188de..0000000000000000000000000000000000000000 --- a/l10n/eo/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -# <mstreet@kde.org.ar>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Eraro dum (mal)aktivigo de adresaro." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "identigilo ne agordiĝis." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Ne eblas ĝisdatigi adresaron kun malplena nomo." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Eraro dum ĝisdatigo de adresaro." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Neniu identigilo proviziĝis." - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Eraro dum agordado de kontrolsumo." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Neniu kategorio elektiĝis por forigi." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Neniu adresaro troviĝis." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Neniu kontakto troviĝis." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Eraro okazis dum aldono de kontakto." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "eronomo ne agordiĝis." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Ne eblis analizi kontakton:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Ne eblas aldoni malplenan propraĵon." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Almenaŭ unu el la adreskampoj necesas pleniĝi." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Provante aldoni duobligitan propraĵon:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informo pri vCard estas malĝusta. Bonvolu reŝargi la paĝon." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Mankas identigilo" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Eraro dum analizo de VCard por identigilo:" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "kontrolsumo ne agordiĝis." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informo pri vCard malĝustas. Bonvolu reŝargi la paĝon:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Io FUBAR-is." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Neniu kontaktidentigilo sendiĝis." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Eraro dum lego de kontakta foto." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Eraro dum konservado de provizora dosiero." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "La alŝutata foto ne validas." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Kontaktidentigilo mankas." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Neniu vojo al foto sendiĝis." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Dosiero ne ekzistas:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Eraro dum ŝargado de bildo." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Eraro dum ekhaviĝis kontakta objekto." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Eraro dum ekhaviĝis la propraĵon PHOTO." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Eraro dum konserviĝis kontakto." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Eraro dum aligrandiĝis bildo" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Eraro dum stuciĝis bildo." - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Eraro dum kreiĝis provizora bildo." - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Eraro dum serĉo de bildo: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Eraro dum alŝutiĝis kontaktoj al konservejo." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "La alŝutita dosiero transpasas la preskribon upload_max_filesize en php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "La alŝutita dosiero transpasas la preskribon MAX_FILE_SIZE kiu specifiĝis en la HTML-formularo" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "la alŝutita dosiero nur parte alŝutiĝis" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Neniu dosiero alŝutiĝis." - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Mankas provizora dosierujo." - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Ne eblis konservi provizoran bildon: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Ne eblis ŝargi provizoran bildon: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontaktoj" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Pardonu, ĉi tiu funkcio ankoraŭ ne estas realigita." - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Ne disponebla" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Ne eblis ekhavi validan adreson." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Eraro" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Ĉi tiu propraĵo devas ne esti malplena." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Ne eblis seriigi erojn." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Redakti nomon" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Neniu dosiero elektita por alŝuto." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "La dosiero, kiun vi provas alŝuti, transpasas la maksimuman grandon por dosieraj alŝutoj en ĉi tiu servilo." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Elektu tipon" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Rezulto: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " enportoj, " - -#: js/loader.js:49 -msgid " failed." -msgstr "malsukcesoj." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Adresaro ne troviĝis:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Ĉi tiu ne estas via adresaro." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Ne eblis trovi la kontakton." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Laboro" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Hejmo" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Alia" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Poŝtelefono" - -#: lib/app.php:203 -msgid "Text" -msgstr "Teksto" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voĉo" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mesaĝo" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fakso" - -#: lib/app.php:207 -msgid "Video" -msgstr "Videaĵo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Televokilo" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Interreto" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Naskiĝotago" - -#: lib/app.php:253 -msgid "Business" -msgstr "Negoco" - -#: lib/app.php:254 -msgid "Call" -msgstr "Voko" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Klientoj" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Liveranto" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Ferioj" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Ideoj" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Vojaĝo" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubileo" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Kunveno" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Persona" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projektoj" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Demandoj" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Naskiĝtago de {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakto" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Aldoni kontakton" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Enporti" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Agordo" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adresaroj" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Fermi" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Fulmoklavoj" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navigado" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Jena kontakto en la listo" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Maljena kontakto en la listo" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Jena adresaro" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Maljena adresaro" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Agoj" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Refreŝigi la kontaktoliston" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Aldoni novan kontakton" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Aldoni novan adresaron" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Forigi la nunan kontakton" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Demeti foton por alŝuti" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Forigi nunan foton" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Redakti nunan foton" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Alŝuti novan foton" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Elekti foton el ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Propra formo, Mallonga nomo, Longa nomo, Inversa aŭ Inversa kun komo" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Redakti detalojn de nomo" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizaĵo" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Forigi" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Kromnomo" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Enigu kromnomon" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "TTT-ejo" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.iuejo.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Iri al TTT-ejon" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "yyyy-mm-dd" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupoj" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Disigi grupojn per komoj" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Redakti grupojn" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferata" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Bonvolu specifi validan retpoŝtadreson." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Enigi retpoŝtadreson" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Retpoŝtmesaĝo al adreso" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Forigi retpoŝþadreson" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Enigi telefonnumeron" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Forigi telefonnumeron" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Vidi en mapo" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Redakti detalojn de adreso" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Aldoni notojn ĉi tie." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Aldoni kampon" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefono" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Retpoŝtadreso" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adreso" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Noto" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Elŝuti kontakton" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Forigi kontakton" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "La provizora bildo estas forigita de la kaŝmemoro." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Redakti adreson" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tipo" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Abonkesto" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Stratadreso" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Strato kaj numero" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Etendita" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Urbo" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regiono" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Poŝtokodo" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Poŝtkodo" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Lando" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adresaro" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Honoraj antaŭmetaĵoj" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "f-ino" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "s-ino" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "s-ro" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "s-ro" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "s-ino" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "d-ro" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Persona nomo" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Pliaj nomoj" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Familia nomo" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Honoraj postmetaĵoj" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Enporti kontaktodosieron" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Bonvolu elekti adresaron" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "krei novan adresaron" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nomo de nova adresaro" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Enportante kontaktojn" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Vi ne havas kontaktojn en via adresaro" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Aldoni kontakton" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Elektu adresarojn" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Enigu nomon" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Enigu priskribon" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "adresoj por CardDAV-sinkronigo" - -#: templates/settings.php:3 -msgid "more info" -msgstr "pli da informo" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Ĉefa adreso (por Kontakt kaj aliaj)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Montri CardDav-ligilon" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Montri nur legeblan VCF-ligilon" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Elŝuti" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Redakti" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nova adresaro" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nomo" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Priskribo" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Konservi" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Nuligi" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Pli..." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 1d81d9fb2a73bcabb876e99505f7b7660561567a..294292e186f469b7db87bc5a7da34ede3ca4a7a8 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -32,61 +32,61 @@ msgstr "Ĉu neniu kategorio estas aldonota?" msgid "This category already exists: " msgstr "Ĉi tiu kategorio jam ekzistas: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Agordo" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Januaro" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Februaro" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Marto" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Aprilo" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Majo" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Junio" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Julio" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Aŭgusto" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Septembro" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Oktobro" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Novembro" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Decembro" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Elekti" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" @@ -108,118 +108,119 @@ msgstr "Akcepti" msgid "No categories selected for deletion." msgstr "Neniu kategorio elektiĝis por forigo." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Eraro" #: js/share.js:103 msgid "Error while sharing" -msgstr "" +msgstr "Eraro dum kunhavigo" #: js/share.js:114 msgid "Error while unsharing" -msgstr "" +msgstr "Eraro dum malkunhavigo" #: js/share.js:121 msgid "Error while changing permissions" -msgstr "" +msgstr "Eraro dum ŝanĝo de permesoj" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Kunhavigita kun vi kaj la grupo" #: js/share.js:130 msgid "by" -msgstr "" +msgstr "de" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Kunhavigita kun vi de" #: js/share.js:137 msgid "Share with" -msgstr "" +msgstr "Kunhavigi kun" #: js/share.js:142 msgid "Share with link" -msgstr "" +msgstr "Kunhavigi per ligilo" #: js/share.js:143 msgid "Password protect" -msgstr "" +msgstr "Protekti per pasvorto" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Pasvorto" #: js/share.js:152 msgid "Set expiration date" -msgstr "" +msgstr "Agordi limdaton" #: js/share.js:153 msgid "Expiration date" -msgstr "" +msgstr "Limdato" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Kunhavigi per retpoŝto:" #: js/share.js:187 msgid "No people found" -msgstr "" +msgstr "Ne troviĝis gento" #: js/share.js:214 msgid "Resharing is not allowed" -msgstr "" +msgstr "Rekunhavigo ne permesatas" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Kunhavigita en" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "kun" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Malkunhavigi" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" -msgstr "" +msgstr "povas redakti" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" -msgstr "" +msgstr "alirkontrolo" -#: js/share.js:284 +#: js/share.js:288 msgid "create" -msgstr "" +msgstr "krei" -#: js/share.js:287 +#: js/share.js:291 msgid "update" -msgstr "" +msgstr "ĝisdatigi" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" -msgstr "" +msgstr "forigi" -#: js/share.js:293 +#: js/share.js:297 msgid "share" -msgstr "" +msgstr "kunhavigi" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" -msgstr "" +msgstr "Protektita per pasvorto" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Eraro dum malagordado de limdato" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" -msgstr "" +msgstr "Eraro dum agordado de limdato" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -241,12 +242,12 @@ msgstr "Petita" msgid "Login failed!" msgstr "Ensaluto malsukcesis!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Uzantonomo" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Peti rekomencigon" @@ -302,52 +303,77 @@ msgstr "Redakti kategoriojn" msgid "Add" msgstr "Aldoni" +#: 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 "Krei <strong>administran konton</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Progresinta" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Fini la instalon" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "TTT-servoj sub via kontrolo" @@ -355,15 +381,29 @@ msgstr "TTT-servoj sub via kontrolo" msgid "Log out" msgstr "Elsaluti" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "memori" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Ensaluti" @@ -378,3 +418,17 @@ msgstr "maljena" #: templates/part.pagenavi.php:20 msgid "next" msgstr "jena" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 11d070fa2372829139b64cdbf56472b346ba68c1..5f27b8764f82a48d54eb056ed05f2eb41dcbdefe 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 04:22+0000\n" +"Last-Translator: Mariano <mstreet@kde.org.ar>\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" @@ -63,41 +63,41 @@ msgstr "Forigi" #: js/fileactions.js:182 msgid "Rename" -msgstr "" +msgstr "Alinomigi" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" msgstr "jam ekzistas" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:190 +#: js/filelist.js:192 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" msgstr "anstataŭigita" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "malfari" -#: js/filelist.js:241 +#: js/filelist.js:243 msgid "with" msgstr "kun" -#: js/filelist.js:273 +#: js/filelist.js:275 msgid "unshared" msgstr "malkunhavigita" -#: js/filelist.js:275 +#: js/filelist.js:277 msgid "deleted" msgstr "forigita" @@ -105,114 +105,114 @@ msgstr "forigita" msgid "generating ZIP-file, it may take some time." msgstr "generanta ZIP-dosiero, ĝi povas daŭri iom da tempo" -#: js/files.js:208 +#: js/files.js:214 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:208 +#: js/files.js:214 msgid "Upload Error" msgstr "Alŝuta eraro" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "Traktotaj" -#: js/files.js:256 +#: js/files.js:262 msgid "1 file uploading" -msgstr "" +msgstr "1 dosiero estas alŝutata" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" -msgstr "" +msgstr "dosieroj estas alŝutataj" -#: js/files.js:322 js/files.js:355 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:424 +#: js/files.js:430 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:494 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." msgstr "Nevalida nomo, “/” ne estas permesata." -#: js/files.js:667 +#: js/files.js:681 msgid "files scanned" -msgstr "" +msgstr "dosieroj skanitaj" -#: js/files.js:675 +#: js/files.js:689 msgid "error while scanning" -msgstr "" +msgstr "eraro dum skano" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "Nomo" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "Grando" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "Modifita" -#: js/files.js:777 +#: js/files.js:791 msgid "folder" msgstr "dosierujo" -#: js/files.js:779 +#: js/files.js:793 msgid "folders" msgstr "dosierujoj" -#: js/files.js:787 +#: js/files.js:801 msgid "file" msgstr "dosiero" -#: js/files.js:789 +#: js/files.js:803 msgid "files" msgstr "dosieroj" -#: js/files.js:833 +#: js/files.js:847 msgid "seconds ago" -msgstr "" +msgstr "sekundoj antaŭe" -#: js/files.js:834 +#: js/files.js:848 msgid "minute ago" -msgstr "" +msgstr "minuto antaŭe" -#: js/files.js:835 +#: js/files.js:849 msgid "minutes ago" -msgstr "" +msgstr "minutoj antaŭe" -#: js/files.js:838 +#: js/files.js:852 msgid "today" -msgstr "" +msgstr "hodiaŭ" -#: js/files.js:839 +#: js/files.js:853 msgid "yesterday" -msgstr "" +msgstr "hieraŭ" -#: js/files.js:840 +#: js/files.js:854 msgid "days ago" -msgstr "" +msgstr "tagoj antaŭe" -#: js/files.js:841 +#: js/files.js:855 msgid "last month" -msgstr "" +msgstr "lastamonate" -#: js/files.js:843 +#: js/files.js:857 msgid "months ago" -msgstr "" +msgstr "monatoj antaŭe" -#: js/files.js:844 +#: js/files.js:858 msgid "last year" -msgstr "" +msgstr "lastajare" -#: js/files.js:845 +#: js/files.js:859 msgid "years ago" -msgstr "" +msgstr "jaroj antaŭe" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 2ef114a330c833aa78e2be1867fe20d5c92d9194..ea8451b7f4df2648e22796e4eaa0b83703bba766 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 21:17+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 05:00+0000\n" +"Last-Translator: Mariano <mstreet@kde.org.ar>\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" @@ -20,27 +20,27 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 msgid "Access granted" -msgstr "" +msgstr "Alirpermeso donita" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Eraro dum agordado de la memorservo Dropbox" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" -msgstr "" +msgstr "Doni alirpermeson" #: js/dropbox.js:73 js/google.js:72 msgid "Fill out all required fields" -msgstr "" +msgstr "Plenigu ĉiujn neprajn kampojn" #: js/dropbox.js:85 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." #: js/google.js:26 js/google.js:73 js/google.js:78 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Eraro dum agordado de la memorservo Google Drive" #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/eo/files_odfviewer.po b/l10n/eo/files_odfviewer.po deleted file mode 100644 index ebc4993230eb72f5d7ae9f5407dc9622ac342208..0000000000000000000000000000000000000000 --- a/l10n/eo/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/eo/files_pdfviewer.po b/l10n/eo/files_pdfviewer.po deleted file mode 100644 index 14fae82ce83ccd7906da95031bfe197ee39c58e4..0000000000000000000000000000000000000000 --- a/l10n/eo/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index dc0d47ec89ba671f0ffd4b8c28496247c426e482..e9778f8450ca1a365ab5657580360f77ebb1934f 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 03:01+0000\n" +"Last-Translator: Mariano <mstreet@kde.org.ar>\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" @@ -29,12 +29,12 @@ msgstr "Sendi" #: templates/public.php:9 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s kunhavigis la dosierujon %s kun vi" #: templates/public.php:11 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s kunhavigis la dosieron %s kun vi" #: templates/public.php:14 templates/public.php:30 msgid "Download" @@ -44,6 +44,6 @@ msgstr "Elŝuti" msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" -#: templates/public.php:37 +#: templates/public.php:35 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" diff --git a/l10n/eo/files_texteditor.po b/l10n/eo/files_texteditor.po deleted file mode 100644 index 65715031621df9fce384606334fcf7be56bd1cd7..0000000000000000000000000000000000000000 --- a/l10n/eo/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index ef4f6f190dde623e9ab3da6e53490bd3122fdc4b..644156033198530a5422d074d95f7aa195037e4b 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 02:50+0000\n" +"Last-Translator: Mariano <mstreet@kde.org.ar>\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" @@ -24,7 +24,7 @@ msgstr "Eksvalidigi ĉiujn eldonojn" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "Historio" #: templates/settings-personal.php:4 msgid "Versions" @@ -36,8 +36,8 @@ msgstr "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Dosiereldonigo" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Kapabligi" diff --git a/l10n/eo/gallery.po b/l10n/eo/gallery.po deleted file mode 100644 index df1ecedeaf29c7ae828a2f45f99607e5d3cb9179..0000000000000000000000000000000000000000 --- a/l10n/eo/gallery.po +++ /dev/null @@ -1,96 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Michael Moroni <haikara90@gmail.com>, 2012. -# <mstreet@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Esperanto (http://www.transifex.net/projects/p/owncloud/language/eo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Bildoj" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Agordo" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Reskani" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Halti" - -#: templates/index.php:18 -msgid "Share" -msgstr "Kunhavigi" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Antaŭen" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Forigi konfirmadon" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Ĉu vi volas forigi la albumon?" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Ŝanĝi albumnomon" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nova albumnomo" diff --git a/l10n/eo/impress.po b/l10n/eo/impress.po deleted file mode 100644 index 930ca99a87947d1b89eb6d5091c7e544903bede5..0000000000000000000000000000000000000000 --- a/l10n/eo/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/eo/media.po b/l10n/eo/media.po deleted file mode 100644 index 135087b52cc66f2225cfb85e0bae3dd07721dd27..0000000000000000000000000000000000000000 --- a/l10n/eo/media.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -# Michael Moroni <haikara90@gmail.com>, 2012. -# <mstreet@kde.org.ar>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 16:47+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "Muziko" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "Aldoni albumon al ludlisto" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Ludi" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Paŭzigi" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Maljena" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Jena" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Silentigi" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Malsilentigi" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Reskani la aron" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artisto" - -#: templates/music.php:38 -msgid "Album" -msgstr "Albumo" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titolo" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 88f5e5f3574bdd32e66313b0ea616b6801267f40..2ed4809d86c6d6855ca3818c9e683fc56b61b0bb 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.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-10-09 02:03+0200\n" -"PO-Revision-Date: 2012-10-09 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 05:05+0000\n" +"Last-Translator: Mariano <mstreet@kde.org.ar>\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" @@ -23,22 +23,22 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 +#: ajax/creategroup.php:9 ajax/removeuser.php:18 ajax/setquota.php:18 #: ajax/togglegroups.php:15 msgid "Authentication error" msgstr "Aŭtentiga eraro" #: ajax/creategroup.php:19 msgid "Group already exists" -msgstr "" +msgstr "La grupo jam ekzistas" #: ajax/creategroup.php:28 msgid "Unable to add group" -msgstr "" +msgstr "Ne eblis aldoni la grupon" #: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "Ne eblis kapabligi la aplikaĵon." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -58,11 +58,11 @@ msgstr "Nevalida peto" #: ajax/removegroup.php:16 msgid "Unable to delete group" -msgstr "" +msgstr "Ne eblis forigi la grupon" -#: ajax/removeuser.php:22 +#: ajax/removeuser.php:27 msgid "Unable to delete user" -msgstr "" +msgstr "Ne eblis forigi la uzanton" #: ajax/setlanguage.php:18 msgid "Language changed" @@ -71,12 +71,12 @@ msgstr "La lingvo estas ŝanĝita" #: ajax/togglegroups.php:25 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Ne eblis aldoni la uzanton al la grupo %s" #: ajax/togglegroups.php:31 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Ne eblis forigi la uzantan el la grupo %s" #: js/apps.js:28 js/apps.js:65 msgid "Disable" @@ -90,7 +90,7 @@ msgstr "Kapabligi" msgid "Saving..." msgstr "Konservante..." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "Esperanto" @@ -129,39 +129,39 @@ msgstr "" #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Kunhavigo" #: templates/admin.php:61 msgid "Enable Share API" -msgstr "" +msgstr "Kapabligi API-on por Kunhavigo" #: templates/admin.php:62 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" #: templates/admin.php:67 msgid "Allow links" -msgstr "" +msgstr "Kapabligi ligilojn" #: templates/admin.php:68 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" #: templates/admin.php:73 msgid "Allow resharing" -msgstr "" +msgstr "Kapabligi rekunhavigon" #: templates/admin.php:74 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" #: templates/admin.php:79 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" #: templates/admin.php:81 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" #: templates/admin.php:88 msgid "Log" @@ -187,7 +187,7 @@ msgstr "Aldonu vian aplikaĵon" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "Pli da aplikaĵoj" #: templates/apps.php:27 msgid "Select an App" @@ -199,7 +199,7 @@ msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" #: templates/apps.php:32 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"</span>-permesilhavigita de <span class=\"author\"></span>" #: templates/help.php:9 msgid "Documentation" @@ -228,7 +228,7 @@ msgstr "Respondi" #: templates/personal.php:8 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s<strong>" -msgstr "" +msgstr "Vi uzas <strong>%s</strong> el la haveblaj <strong>%s</strong>" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -240,7 +240,7 @@ msgstr "Elŝuti" #: templates/personal.php:19 msgid "Your password was changed" -msgstr "" +msgstr "Via pasvorto ŝanĝiĝis" #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/eo/tasks.po b/l10n/eo/tasks.po deleted file mode 100644 index c53752bc4ccbbb0e99e0028c064c3ff9c4e71a15..0000000000000000000000000000000000000000 --- a/l10n/eo/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 14:52+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Nevalida dato/horo" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Taskoj" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Neniu kategorio" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Nespecifita" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=plej alta" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=meza" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=plej malalta" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Malplena resumo" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Nevalida plenuma elcento" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Nevalida pligravo" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Aldoni taskon" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Ordigi laŭ limdato" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Ordigi laŭ listo" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Ordigi laŭ plenumo" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Ordigi laŭ loko" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Ordigi laŭ pligravo" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Ordigi laŭ etikedo" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Ŝargante taskojn..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Grava" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Pli" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Malpli" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Forigi" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index ff8480473e14d7269f4e859a363497db04bf900f..0f048daf6be7008592f2a743650ff59351d3ebbc 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-30 02:02+0200\n" -"PO-Revision-Date: 2012-08-29 20:31+0000\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 05:41+0000\n" "Last-Translator: Mariano <mstreet@kde.org.ar>\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" "Content-Transfer-Encoding: 8bit\n" "Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:8 msgid "Host" @@ -130,7 +130,7 @@ msgstr "Malkapabligi validkontrolon de SSL-atestiloj." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Se la konekto nur funkcias kun ĉi tiu malnepro, enportu la SSL-atestilo de la LDAP-servilo en via ownCloud-servilo." #: templates/settings.php:23 msgid "Not recommended, use for testing only." diff --git a/l10n/eo/user_migrate.po b/l10n/eo/user_migrate.po deleted file mode 100644 index 27ea6386b0bc5d89e4b9e61848fe3b5f1def4b7f..0000000000000000000000000000000000000000 --- a/l10n/eo/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 19:36+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Malenporti" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Io malsukcesis dum la enportota dosiero generiĝis" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Eraro okazis" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Malenporti vian uzantokonton" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Ĉi tio kreos densigitan dosieron, kiu enhavas vian konton de ownCloud." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Enporti uzantokonton" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "ZIP-dosiero de uzanto de ownCloud" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Enporti" diff --git a/l10n/eo/user_openid.po b/l10n/eo/user_openid.po deleted file mode 100644 index 237164674bb16dd42a3ceab549598f95c3b968fe..0000000000000000000000000000000000000000 --- a/l10n/eo/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mariano <mstreet@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 21:05+0000\n" -"Last-Translator: Mariano <mstreet@kde.org.ar>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eo\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Ĉi tio estas finpunkto de OpenID-servilo. Por pli da informo, vidu" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Idento: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Regno: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Uzanto: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Ensaluti" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Eraro: <b>neniu uzanto estas elektita" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "Vi povas ensaluti en aliaj ejoj per tiu ĉi adreso" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Rajtigita OpenID-provizanto" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Via adreso ĉe Wordpress, Identi.ca…" diff --git a/l10n/es/admin_dependencies_chk.po b/l10n/es/admin_dependencies_chk.po deleted file mode 100644 index acbf8db12a8b6cedda51f01aee8faaafed21b6d5..0000000000000000000000000000000000000000 --- a/l10n/es/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Javier Llorente <javier@opensuse.org>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:01+0200\n" -"PO-Revision-Date: 2012-08-23 09:25+0000\n" -"Last-Translator: Javier Llorente <javier@opensuse.org>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Estado de las dependencias" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Usado por:" diff --git a/l10n/es/admin_migrate.po b/l10n/es/admin_migrate.po deleted file mode 100644 index fd2230f4c7d10810658b0350aecfa141c7ef257e..0000000000000000000000000000000000000000 --- a/l10n/es/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <juanma@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 04:59+0000\n" -"Last-Translator: juanman <juanma@kde.org.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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Exportar esta instancia de ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Se creará un archivo comprimido que contendrá los datos de esta instancia de owncloud.\n Por favor elegir el tipo de exportación:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Exportar" diff --git a/l10n/es/bookmarks.po b/l10n/es/bookmarks.po deleted file mode 100644 index d00d8c372b484b3e1dedbfaa96b22b405f5e29eb..0000000000000000000000000000000000000000 --- a/l10n/es/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <juanma@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-30 02:02+0200\n" -"PO-Revision-Date: 2012-07-29 04:30+0000\n" -"Last-Translator: juanman <juanma@kde.org.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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Marcadores" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "sin nombre" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Arrastra desde aquí a los marcadores de tu navegador, y haz clic cuando quieras marcar una página web rápidamente:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Leer después" - -#: templates/list.php:13 -msgid "Address" -msgstr "Dirección" - -#: templates/list.php:14 -msgid "Title" -msgstr "Título" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Etiquetas" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Guardar marcador" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "No tienes marcadores" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Bookmarklet <br />" diff --git a/l10n/es/calendar.po b/l10n/es/calendar.po deleted file mode 100644 index 06a6465879a5f5494cc66358f8125cbab4b8d668..0000000000000000000000000000000000000000 --- a/l10n/es/calendar.po +++ /dev/null @@ -1,819 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <davidlopez.david@gmail.com>, 2012. -# Javier Llorente <javier@opensuse.org>, 2012. -# <juanma@kde.org.ar>, 2011, 2012. -# oSiNaReF <>, 2012. -# <rafabayona@gmail.com>, 2012. -# <sergioballesterossolanas@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Aún no se han guardado en caché todos los calendarios" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Parece que se ha guardado todo en caché" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "No se encontraron calendarios." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "No se encontraron eventos." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Calendario incorrecto" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "El archivo no contiene eventos o ya existen en tu calendario." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "Los eventos han sido guardados en el nuevo calendario" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Fallo en la importación" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "eventos se han guardado en tu calendario" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nueva zona horaria:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Zona horaria cambiada" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Petición no válida" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendario" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Cumpleaños" - -#: lib/app.php:122 -msgid "Business" -msgstr "Negocios" - -#: lib/app.php:123 -msgid "Call" -msgstr "Llamada" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clientes" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Entrega" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Festivos" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideas" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Viaje" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Aniversario" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Reunión" - -#: lib/app.php:131 -msgid "Other" -msgstr "Otro" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Personal" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Proyectos" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Preguntas" - -#: lib/app.php:135 -msgid "Work" -msgstr "Trabajo" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "por" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "Sin nombre" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nuevo calendario" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "No se repite" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Diariamente" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Semanalmente" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Días de semana laboral" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Cada 2 semanas" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mensualmente" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Anualmente" - -#: lib/object.php:388 -msgid "never" -msgstr "nunca" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "por ocurrencias" - -#: lib/object.php:390 -msgid "by date" -msgstr "por fecha" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "por día del mes" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "por día de la semana" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Lunes" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Martes" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Miércoles" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Jueves" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Viernes" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sábado" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Domingo" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "eventos de la semana del mes" - -#: lib/object.php:428 -msgid "first" -msgstr "primer" - -#: lib/object.php:429 -msgid "second" -msgstr "segundo" - -#: lib/object.php:430 -msgid "third" -msgstr "tercer" - -#: lib/object.php:431 -msgid "fourth" -msgstr "cuarto" - -#: lib/object.php:432 -msgid "fifth" -msgstr "quinto" - -#: lib/object.php:433 -msgid "last" -msgstr "último" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Enero" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Febrero" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Marzo" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Abril" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mayo" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Junio" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Julio" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Agosto" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Septiembre" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Octubre" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Noviembre" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Diciembre" - -#: lib/object.php:488 -msgid "by events date" -msgstr "por fecha de los eventos" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "por día(s) del año" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "por número(s) de semana" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "por día y mes" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Fecha" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Dom." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Lun." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Mar." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Mier." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Jue." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Vie." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Sab." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Ene." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Abr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "May." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Ago." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Sep." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Oct." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Dic." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Todo el día" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Los campos que faltan" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Título" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Desde la fecha" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Desde la hora" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Hasta la fecha" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Hasta la hora" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "El evento termina antes de que comience" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Se ha producido un error en la base de datos" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Semana" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mes" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hoy" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Tus calendarios" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Enlace a CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Calendarios compartidos" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Calendarios no compartidos" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Compartir calendario" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Descargar" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Editar" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Eliminar" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "compartido contigo por" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nuevo calendario" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Editar calendario" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Nombre" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Activo" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Color del calendario" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Guardar" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Guardar" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Cancelar" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Editar un evento" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportar" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Información del evento" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Repetición" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarma" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Asistentes" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Compartir" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Título del evento" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categoría" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Separar categorías con comas" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Editar categorías" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Todo el día" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Desde" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Hasta" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Opciones avanzadas" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Lugar" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Lugar del evento" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Descripción" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Descripción del evento" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Repetir" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avanzado" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Seleccionar días de la semana" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Seleccionar días" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "y el día del año de los eventos." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "y el día del mes de los eventos." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Seleccionar meses" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Seleccionar semanas" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "y la semana del año de los eventos." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervalo" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Fin" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "ocurrencias" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Crear un nuevo calendario" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importar un archivo de calendario" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Por favor, escoge un calendario" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nombre del nuevo calendario" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "¡Elige un nombre disponible!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Ya existe un calendario con este nombre. Si continúas, se combinarán los calendarios." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importar" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Cerrar diálogo" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Crear un nuevo evento" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Ver un evento" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Ninguna categoría seleccionada" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "de" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "a las" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Zona horaria" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Caché" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Limpiar caché de eventos recurrentes" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Direcciones de sincronización de calendario CalDAV:" - -#: templates/settings.php:87 -msgid "more info" -msgstr "Más información" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Dirección principal (Kontact y otros)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Enlace(s) iCalendar de sólo lectura" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Usuarios" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "seleccionar usuarios" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Editable" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupos" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "seleccionar grupos" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "hacerlo público" diff --git a/l10n/es/contacts.po b/l10n/es/contacts.po deleted file mode 100644 index b437840d41c7e1a8e7052ac96c2055cca866f1fd..0000000000000000000000000000000000000000 --- a/l10n/es/contacts.po +++ /dev/null @@ -1,958 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <davidlopez.david@gmail.com>, 2012. -# Javier Llorente <javier@opensuse.org>, 2012. -# <juanma@kde.org.ar>, 2011, 2012. -# oSiNaReF <>, 2012. -# <rodrigo.calvo@gmail.com>, 2012. -# <sergioballesterossolanas@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Error al (des)activar libreta de direcciones." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "no se ha puesto ninguna ID." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "No se puede actualizar una libreta de direcciones sin nombre." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Error al actualizar la libreta de direcciones." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "No se ha proporcionado una ID" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Error al establecer la suma de verificación." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "No se seleccionaron categorías para borrar." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "No se encontraron libretas de direcciones." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "No se encontraron contactos." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Se ha producido un error al añadir el contacto." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "no se ha puesto ningún nombre de elemento." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "No se puede añadir una propiedad vacía." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Al menos uno de los campos de direcciones se tiene que rellenar." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Intentando añadir una propiedad duplicada: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Falta un parámetro del MI." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "MI desconocido:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "La información sobre el vCard es incorrecta. Por favor vuelve a cargar la página." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Falta la ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Error al analizar el VCard para la ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "no se ha puesto ninguna suma de comprobación." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "La información sobre la vCard es incorrecta. Por favor, recarga la página:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Plof. Algo ha fallado." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "No se ha mandado ninguna ID de contacto." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Error leyendo fotografía del contacto." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Error al guardar archivo temporal." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "La foto que se estaba cargando no es válida." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Falta la ID del contacto." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "No se ha introducido la ruta de la foto." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Archivo inexistente:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Error cargando imagen." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Fallo al coger el contacto." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Fallo al coger las propiedades de la foto ." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Fallo al salvar un contacto" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Fallo al cambiar de tamaño una foto" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Fallo al cortar el tamaño de la foto" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Fallo al crear la foto temporal" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Fallo al encontrar la imagen" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Error al subir contactos al almacenamiento." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "No hay ningún error, el archivo se ha subido con éxito" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "El archivo subido sobrepasa la directiva upload_max_filesize de php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "El archivo subido sobrepasa la directiva MAX_FILE_SIZE especificada en el formulario HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "El archivo se ha subido parcialmente" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "No se ha subido ningún archivo" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Falta la carpeta temporal" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Fallo no pudo salvar a una imagen temporal" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Fallo no pudo cargara de una imagen temporal" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Fallo no se subió el fichero" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Contactos" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Perdón esta función no esta aún implementada" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "No esta implementada" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Fallo : no hay dirección valida" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Fallo" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Este campo no puede estar vacío." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Fallo no podido ordenar los elementos" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "La propiedad de \"borrar\" se llamado sin argumentos envia fallos a\nbugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Edita el Nombre" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "No hay ficheros seleccionados para subir" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "El fichero que quieres subir excede el tamaño máximo permitido en este servidor." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Selecciona el tipo" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultado :" - -#: js/loader.js:49 -msgid " imported, " -msgstr "Importado." - -#: js/loader.js:49 -msgid " failed." -msgstr "Fallo." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Esta no es tu agenda de contactos." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "No se ha podido encontrar el contacto." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "Google Talk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Trabajo" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Particular" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Otro" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Móvil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Texto" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voz" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mensaje" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Vídeo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Localizador" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Cumpleaños" - -#: lib/app.php:253 -msgid "Business" -msgstr "Negocio" - -#: lib/app.php:254 -msgid "Call" -msgstr "Llamada" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Clientes" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Vacaciones" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Ideas" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Jornada" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Reunión" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Personal" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Proyectos" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Preguntas" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Cumpleaños de {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contacto" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Añadir contacto" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importar" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Configuración" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Libretas de direcciones" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Cierra." - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Atajos de teclado" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navegación" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Siguiente contacto en la lista" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Anterior contacto en la lista" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Acciones" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Refrescar la lista de contactos" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Añadir un nuevo contacto" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Añadir nueva libreta de direcciones" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Eliminar contacto actual" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Suelta una foto para subirla" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Eliminar fotografía actual" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Editar fotografía actual" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Subir nueva fotografía" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Seleccionar fotografía desde ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formato personalizado, nombre abreviado, nombre completo, al revés o al revés con coma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Editar los detalles del nombre" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organización" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Borrar" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Alias" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Introduce un alias" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Sitio Web" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.unsitio.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Ir al sitio Web" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupos" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Separa los grupos con comas" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Editar grupos" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferido" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Por favor especifica una dirección de correo electrónico válida." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Introduce una dirección de correo electrónico" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Enviar por correo a la dirección" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Eliminar dirección de correo electrónico" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Introduce un número de teléfono" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Eliminar número de teléfono" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Mensajero instantáneo" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Ver en el mapa" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Editar detalles de la dirección" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Añade notas aquí." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Añadir campo" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Teléfono" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Correo electrónico" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Mensajería instantánea" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Dirección" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Nota" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Descargar contacto" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Eliminar contacto" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "La foto temporal se ha borrado del cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Editar dirección" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tipo" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Código postal" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Calle y número" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Extendido" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Número del apartamento, etc." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Ciudad" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Región" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Ej: región o provincia" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Código postal" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Código postal" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "País" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Libreta de direcciones" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Prefijos honoríficos" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Srta" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Sra." - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Sr." - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Señor" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Sra" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Nombre" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Nombres adicionales" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Apellido" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Sufijos honoríficos" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Don" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importar archivo de contactos" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Por favor escoge la agenda" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "crear una nueva agenda" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nombre de la nueva agenda" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importando contactos" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "No hay contactos en tu agenda." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Añadir contacto" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Introducir nombre" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Introducir descripción" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Sincronizando direcciones" - -#: templates/settings.php:3 -msgid "more info" -msgstr "más información" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Dirección primaria (Kontact et al)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Compartir" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Descargar" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Editar" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nueva libreta de direcciones" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nombre" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Descripción" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Guardar" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Cancelar" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Más..." diff --git a/l10n/es/core.po b/l10n/es/core.po index 98e33ab2a08bb0fbc6ba7ced6fafe5215a8457c4..9896bc5bef4dd562121575951eb4de3e2b0db5c7 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -4,7 +4,7 @@ # # Translators: # Javier Llorente <javier@opensuse.org>, 2012. -# <juanma@kde.org.ar>, 2011, 2012. +# <juanma@kde.org.ar>, 2011-2012. # oSiNaReF <>, 2012. # Raul Fernandez Garcia <raulfg3@gmail.com>, 2012. # <rodrigo.calvo@gmail.com>, 2012. @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" -"PO-Revision-Date: 2012-09-29 20:46+0000\n" -"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 20:22+0000\n" +"Last-Translator: scambra <sergio@entrecables.com>\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" @@ -38,55 +38,55 @@ msgstr "¿Ninguna categoría para añadir?" msgid "This category already exists: " msgstr "Esta categoría ya existe: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ajustes" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Enero" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Febrero" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Marzo" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Abril" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mayo" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Junio" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Julio" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Agosto" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Septiembre" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Octubre" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Noviembre" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Diciembre" @@ -114,8 +114,8 @@ msgstr "Aceptar" msgid "No categories selected for deletion." msgstr "No hay categorías seleccionadas para borrar." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Fallo" @@ -149,13 +149,14 @@ msgstr "Compartir con" #: js/share.js:142 msgid "Share with link" -msgstr "Enlace de compartir con " +msgstr "Compartir con enlace" #: js/share.js:143 msgid "Password protect" msgstr "Protegido por contraseña" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Contraseña" @@ -191,39 +192,39 @@ msgstr "con" msgid "Unshare" msgstr "No compartir" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "puede editar" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "control de acceso" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "crear" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "modificar" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "eliminar" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "compartir" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Error al eliminar la fecha de caducidad" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" @@ -247,8 +248,8 @@ msgstr "Pedido" msgid "Login failed!" msgstr "¡Fallo al iniciar sesión!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nombre de usuario" @@ -308,52 +309,77 @@ msgstr "Editar categorías" msgid "Add" msgstr "Añadir" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Advertencia de seguridad" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP." + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de su contraseña y tomar control de su cuenta." + +#: 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 "Su directorio de datos y sus archivos están probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no esté accesible o mueva el directorio de datos fuera del documento raíz de su servidor web." + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crea una <strong>cuenta de administrador</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "servicios web bajo tu control" @@ -361,15 +387,29 @@ msgstr "servicios web bajo tu control" msgid "Log out" msgstr "Salir" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "¡Inicio de sesión automático rechazado!" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." + +#: templates/login.php:15 msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "recuérdame" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Entrar" @@ -384,3 +424,17 @@ msgstr "anterior" #: templates/part.pagenavi.php:20 msgid "next" msgstr "siguiente" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "¡Advertencia de seguridad!" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "Por favor verifique su contraseña. <br/>Por razones de seguridad se le puede volver a preguntar ocasionalmente la contraseña." + +#: templates/verify.php:16 +msgid "Verify" +msgstr "Verificar" diff --git a/l10n/es/files_odfviewer.po b/l10n/es/files_odfviewer.po deleted file mode 100644 index aaf62e020a2468f77e24030a07cc2e9304a126d4..0000000000000000000000000000000000000000 --- a/l10n/es/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/es/files_pdfviewer.po b/l10n/es/files_pdfviewer.po deleted file mode 100644 index 1b4c74ef327a3d92fe82578a29056848e42330bb..0000000000000000000000000000000000000000 --- a/l10n/es/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/es/files_texteditor.po b/l10n/es/files_texteditor.po deleted file mode 100644 index 51dd6d7810c8299e52e4dbdec00e044eb48294f4..0000000000000000000000000000000000000000 --- a/l10n/es/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/es/gallery.po b/l10n/es/gallery.po deleted file mode 100644 index 8a67c7718712f06d1232646590bd01cea1c72f22..0000000000000000000000000000000000000000 --- a/l10n/es/gallery.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Javier Llorente <javier@opensuse.org>, 2012. -# <juanma@kde.org.ar>, 2012. -# <rodrigo.calvo@gmail.com>, 2012. -# <sergioballesterossolanas@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-26 02:01+0200\n" -"PO-Revision-Date: 2012-07-25 23:13+0000\n" -"Last-Translator: juanman <juanma@kde.org.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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Imágenes" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Compartir galería" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Fallo " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Fallo interno" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Presentación" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Atrás" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Borrar confirmación" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "¿Quieres eliminar el álbum" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Cambiar nombre al álbum" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nuevo nombre de álbum" diff --git a/l10n/es/impress.po b/l10n/es/impress.po deleted file mode 100644 index 45ece5e5e6fdf1a6d4d5dbbbe912e0cb3a8f201d..0000000000000000000000000000000000000000 --- a/l10n/es/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/es/media.po b/l10n/es/media.po deleted file mode 100644 index d1c84d0e8b12ab048e40a8dd4e78ffa0c56dd09c..0000000000000000000000000000000000000000 --- a/l10n/es/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Javier Llorente <javier@opensuse.org>, 2012. -# <sergioballesterossolanas@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/language/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Música" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Reproducir" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pausa" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Anterior" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Siguiente" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Silenciar" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Quitar silencio" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Buscar canciones nuevas" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artista" - -#: templates/music.php:38 -msgid "Album" -msgstr "Álbum" - -#: templates/music.php:39 -msgid "Title" -msgstr "Título" diff --git a/l10n/es/tasks.po b/l10n/es/tasks.po deleted file mode 100644 index c7be467fb0c76f610a976bd3b2a1da9d6068d775..0000000000000000000000000000000000000000 --- a/l10n/es/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <juanma@kde.org.ar>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-18 02:01+0200\n" -"PO-Revision-Date: 2012-08-17 17:39+0000\n" -"Last-Translator: juanman <juanma@kde.org.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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Fecha/hora inválida" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Tareas" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Sin categoría" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Sin especificar" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=mayor" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=media" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=menor" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Resumen vacío" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Porcentaje completado inválido" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Prioridad inválida" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Agregar tarea" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Ordenar por" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Ordenar por lista" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Ordenar por completadas" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Ordenar por ubicación" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Ordenar por prioridad" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Ordenar por etiqueta" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Cargando tareas..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Importante" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Más" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Menos" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Borrar" diff --git a/l10n/es/user_migrate.po b/l10n/es/user_migrate.po deleted file mode 100644 index fbd0617741826df75e26a14b628a4916a804e40b..0000000000000000000000000000000000000000 --- a/l10n/es/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Javier Llorente <javier@opensuse.org>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:30+0000\n" -"Last-Translator: Javier Llorente <javier@opensuse.org>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Exportar" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "Zip de usuario de ownCloud" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Importar" diff --git a/l10n/es/user_openid.po b/l10n/es/user_openid.po deleted file mode 100644 index efed4f72da8174012cb428e9bd0832063b2ce6e3..0000000000000000000000000000000000000000 --- a/l10n/es/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Javier Llorente <javier@opensuse.org>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 09:24+0000\n" -"Last-Translator: Javier Llorente <javier@opensuse.org>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identidad: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Usuario: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Iniciar sesión" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index fdae03f14c3a02058d637a6c43c61ef84fce0ced..a213004d47d5aa26d4bc52a08e55f4a99dee8888 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.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-10-02 02:03+0200\n" -"PO-Revision-Date: 2012-10-01 14:58+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 08:55+0000\n" "Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "¿Ninguna categoría para añadir?" msgid "This category already exists: " msgstr "Esta categoría ya existe: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ajustes" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Enero" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Febrero" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Marzo" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Abril" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mayo" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Junio" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Julio" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Agosto" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Septiembre" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Octubre" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Noviembre" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Diciembre" @@ -106,8 +106,8 @@ msgstr "Aceptar" msgid "No categories selected for deletion." msgstr "No hay categorías seleccionadas para borrar." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:493 -#: js/share.js:505 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Error" @@ -147,7 +147,8 @@ msgstr "Compartir con link" msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Contraseña" @@ -207,15 +208,15 @@ msgstr "remover" msgid "share" msgstr "compartir" -#: js/share.js:321 js/share.js:480 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:493 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de caducidad" -#: js/share.js:505 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" @@ -239,8 +240,8 @@ msgstr "Pedido" msgid "Login failed!" msgstr "¡Fallo al iniciar sesión!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nombre de usuario" @@ -300,52 +301,77 @@ msgstr "Editar categorías" msgid "Add" msgstr "Añadir" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Advertencia de seguridad" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP." + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta." + +#: 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 "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no está funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no esté accesible, o que muevas el directorio de datos afuera del directorio raíz de tu servidor web." + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Creá una <strong>cuenta de administrador</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" @@ -353,15 +379,29 @@ msgstr "servicios web sobre los que tenés control" msgid "Log out" msgstr "Cerrar la sesión" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "¡El inicio de sesión automático fue rechazado!" + +#: templates/login.php:9 +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 +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 msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "recordame" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Entrar" @@ -376,3 +416,17 @@ msgstr "anterior" #: templates/part.pagenavi.php:20 msgid "next" msgstr "siguiente" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "¡Advertencia de seguridad!" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "Por favor, verificá tu contraseña. <br/>Por razones de seguridad, puede ser que que te pregunte ocasionalmente la contraseña." + +#: templates/verify.php:16 +msgid "Verify" +msgstr "Verificar" diff --git a/l10n/et_EE/admin_dependencies_chk.po b/l10n/et_EE/admin_dependencies_chk.po deleted file mode 100644 index 4e1dc1ab0c853f14c5412eaf29f4d017cb7d399c..0000000000000000000000000000000000000000 --- a/l10n/et_EE/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 06:47+0000\n" -"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "php-json moodul on vajalik paljude rakenduse poolt omvahelise suhtlemise jaoks" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "php-curl moodul on vajalik lehe pealkirja tõmbamiseks järjehoidja lisamisel" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "php-gd moodul on vajalik sinu piltidest pisipiltide loomiseks" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "php-ldap moodul on vajalik sinu ldap serveriga ühendumiseks" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "php-zip moodul on vajalik mitme faili korraga alla laadimiseks" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "php-mb_multibyte moodul on vajalik kodeerimise korrektseks haldamiseks." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "php-ctype moodul on vajalik andmete kontrollimiseks." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "php-xml moodul on vajalik failide jagamiseks webdav-iga." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "Sinu php.ini failis oleva direktiivi allow_url_fopen väärtuseks peaks määrama 1, et saaks tõmmata teadmistebaasi OCS-i serveritest" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "php-pdo moodul on vajalik owncloudi andmete salvestamiseks andmebaasi." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Sõltuvuse staatus" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Kasutab :" diff --git a/l10n/et_EE/admin_migrate.po b/l10n/et_EE/admin_migrate.po deleted file mode 100644 index 1e02b7240900453de0253354bf108b2c5f74f6b9..0000000000000000000000000000000000000000 --- a/l10n/et_EE/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 06:41+0000\n" -"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Ekspordi see ownCloudi paigaldus" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "See loob pakitud faili, milles on sinu owncloudi paigalduse andmed.\n Palun vali eksporditava faili tüüp:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Ekspordi" diff --git a/l10n/et_EE/bookmarks.po b/l10n/et_EE/bookmarks.po deleted file mode 100644 index 91cf36ab0d43188b5aee97de3ed6bd90acf9369c..0000000000000000000000000000000000000000 --- a/l10n/et_EE/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-31 10:22+0000\n" -"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Järjehoidjad" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "nimetu" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Loe hiljem" - -#: templates/list.php:13 -msgid "Address" -msgstr "Aadress" - -#: templates/list.php:14 -msgid "Title" -msgstr "Pealkiri" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Sildid" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Salvesta järjehoidja" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Sul pole järjehoidjaid" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/et_EE/calendar.po b/l10n/et_EE/calendar.po deleted file mode 100644 index 9a8efeb0287c807ce1b403c5b93a123f207ba4ed..0000000000000000000000000000000000000000 --- a/l10n/et_EE/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Kalendreid ei leitud." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Üritusi ei leitud." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Vale kalender" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Uus ajavöönd:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Ajavöönd on muudetud" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Vigane päring" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Sünnipäev" - -#: lib/app.php:122 -msgid "Business" -msgstr "Äri" - -#: lib/app.php:123 -msgid "Call" -msgstr "Helista" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Kliendid" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Kohaletoimetaja" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Pühad" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideed" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Reis" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Juubel" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Kohtumine" - -#: lib/app.php:131 -msgid "Other" -msgstr "Muu" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Isiklik" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projektid" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Küsimused" - -#: lib/app.php:135 -msgid "Work" -msgstr "Töö" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "nimetu" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Uus kalender" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Ei kordu" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Iga päev" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Iga nädal" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Igal nädalapäeval" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Üle nädala" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Igal kuul" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Igal aastal" - -#: lib/object.php:388 -msgid "never" -msgstr "mitte kunagi" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "toimumiskordade järgi" - -#: lib/object.php:390 -msgid "by date" -msgstr "kuupäeva järgi" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "kuu päeva järgi" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "nädalapäeva järgi" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Esmaspäev" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Teisipäev" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Kolmapäev" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Neljapäev" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Reede" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Laupäev" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Pühapäev" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "ürituse kuu nädal" - -#: lib/object.php:428 -msgid "first" -msgstr "esimene" - -#: lib/object.php:429 -msgid "second" -msgstr "teine" - -#: lib/object.php:430 -msgid "third" -msgstr "kolmas" - -#: lib/object.php:431 -msgid "fourth" -msgstr "neljas" - -#: lib/object.php:432 -msgid "fifth" -msgstr "viies" - -#: lib/object.php:433 -msgid "last" -msgstr "viimane" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Jaanuar" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Veebruar" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Märts" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Aprill" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mai" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juuni" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juuli" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "August" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktoober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Detsember" - -#: lib/object.php:488 -msgid "by events date" -msgstr "ürituste kuupäeva järgi" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "aasta päeva(de) järgi" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "nädala numbri(te) järgi" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "kuu ja päeva järgi" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Kuupäev" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Kogu päev" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Puuduvad väljad" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Pealkiri" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Alates kuupäevast" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Alates kellaajast" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Kuni kuupäevani" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Kuni kellaajani" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Üritus lõpeb enne, kui see algab" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Tekkis andmebaasi viga" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Nädal" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Kuu" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Nimekiri" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Täna" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Sinu kalendrid" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav Link" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Jagatud kalendrid" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Jagatud kalendreid pole" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Jaga kalendrit" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Lae alla" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Muuda" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Kustuta" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "jagas sinuga" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Uus kalender" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Muuda kalendrit" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Näidatav nimi" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiivne" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalendri värv" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Salvesta" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "OK" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Loobu" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Muuda sündmust" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Ekspordi" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Ürituse info" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Kordamine" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Osalejad" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Jaga" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Sündmuse pealkiri" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategooria" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Eralda kategooriad komadega" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Muuda kategooriaid" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Kogu päeva sündmus" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Alates" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Kuni" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Lisavalikud" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Asukoht" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Sündmuse toimumiskoht" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Kirjeldus" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Sündmuse kirjeldus" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Korda" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Täpsem" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Vali nädalapäevad" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Vali päevad" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "ja ürituse päev aastas." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "ja ürituse päev kuus." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Vali kuud" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Vali nädalad" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "ja ürituse nädal aastas." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervall" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Lõpp" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "toimumiskordi" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "loo uus kalender" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Impordi kalendrifail" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Uue kalendri nimi" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Impordi" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Sulge dialoogiaken" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Loo sündmus" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Vaata üritust" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Ühtegi kategooriat pole valitud" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "/" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "kell" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Ajavöönd" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Kasutajad" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "valitud kasutajad" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Muudetav" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupid" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "valitud grupid" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "tee avalikuks" diff --git a/l10n/et_EE/contacts.po b/l10n/et_EE/contacts.po deleted file mode 100644 index 076195c05e4b0c95a78a24fdeb58f03c2fe78654..0000000000000000000000000000000000000000 --- a/l10n/et_EE/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Viga aadressiraamatu (de)aktiveerimisel." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID on määramata." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Tühja nimega aadressiraamatut ei saa uuendada." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Viga aadressiraamatu uuendamisel." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "ID-d pole sisestatud" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Viga kontrollsumma määramisel." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Kustutamiseks pole valitud ühtegi kategooriat." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Ei leitud ühtegi aadressiraamatut." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Ühtegi kontakti ei leitud." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Konktakti lisamisel tekkis viga." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "elemendi nime pole määratud." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Tühja omadust ei saa lisada." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Vähemalt üks aadressiväljadest peab olema täidetud." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Proovitakse lisada topeltomadust: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Visiitkaardi info pole korrektne. Palun lae leht uuesti." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Puudub ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Viga VCard-ist ID parsimisel: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "kontrollsummat pole määratud." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "vCard info pole korrektne. Palun lae lehekülg uuesti: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Midagi läks tõsiselt metsa." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Kontakti ID-d pole sisestatud." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Viga kontakti foto lugemisel." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Viga ajutise faili salvestamisel." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Laetav pilt pole korrektne pildifail." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Kontakti ID puudub." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Foto asukohta pole määratud." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Faili pole olemas:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Viga pildi laadimisel." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Viga kontakti objekti hankimisel." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Viga PHOTO omaduse hankimisel." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Viga kontakti salvestamisel." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Viga pildi suuruse muutmisel" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Viga pildi lõikamisel" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Viga ajutise pildi loomisel" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Viga pildi leidmisel: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Viga kontaktide üleslaadimisel kettale." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Ühtegi tõrget polnud, fail on üles laetud" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Üleslaetud fail ületab php.ini failis määratud upload_max_filesize suuruse" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Üleslaetud fail ületab MAX_FILE_SIZE suuruse, mis on HTML vormi jaoks määratud" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Fail laeti üles ainult osaliselt" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Ühtegi faili ei laetud üles" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Ajutiste failide kaust puudub" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Ajutise pildi salvestamine ebaõnnestus: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Ajutise pildi laadimine ebaõnnestus: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontaktid" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Vabandust, aga see funktsioon pole veel valmis" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Pole implementeeritud" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Kehtiva aadressi hankimine ebaõnnestus" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Viga" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "See omadus ei tohi olla tühi." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Muuda nime" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Üleslaadimiseks pole faile valitud." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Vali tüüp" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Tulemus: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " imporditud, " - -#: js/loader.js:49 -msgid " failed." -msgstr " ebaõnnestus." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "See pole sinu aadressiraamat." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontakti ei leitud." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Töö" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Kodu" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobiil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Tekst" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Hääl" - -#: lib/app.php:205 -msgid "Message" -msgstr "Sõnum" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faks" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Piipar" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Sünnipäev" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name} sünnipäev" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Lisa kontakt" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Impordi" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Aadressiraamatud" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Sule" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Lohista üleslaetav foto siia" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Kustuta praegune foto" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Muuda praegust pilti" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Lae üles uus foto" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Vali foto ownCloudist" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Kohandatud vorming, Lühike nimi, Täielik nimi, vastupidine või vastupidine komadega" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Muuda nime üksikasju" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisatsioon" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Kustuta" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Hüüdnimi" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Sisesta hüüdnimi" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd.mm.yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupid" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Eralda grupid komadega" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Muuda gruppe" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Eelistatud" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Palun sisesta korrektne e-posti aadress." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Sisesta e-posti aadress" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Kiri aadressile" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Kustuta e-posti aadress" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Sisesta telefoninumber" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Kustuta telefoninumber" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Vaata kaardil" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Muuda aaressi infot" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Lisa märkmed siia." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Lisa väli" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-post" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Aadress" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Märkus" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Lae kontakt alla" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Kustuta kontakt" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Ajutine pilt on puhvrist eemaldatud." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Muuda aadressi" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tüüp" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postkontori postkast" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Laiendatud" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Linn" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Piirkond" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postiindeks" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Riik" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Aadressiraamat" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Eesliited" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Preili" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Pr" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Hr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Härra" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Proua" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Eesnimi" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Lisanimed" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Perekonnanimi" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Järelliited" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Senior." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Impordi kontaktifail" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Palun vali aadressiraamat" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "loo uus aadressiraamat" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Uue aadressiraamatu nimi" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Kontaktide importimine" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Sinu aadressiraamatus pole ühtegi kontakti." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Lisa kontakt" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV sünkroniseerimise aadressid" - -#: templates/settings.php:3 -msgid "more info" -msgstr "lisainfo" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Peamine aadress" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Lae alla" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Muuda" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Uus aadressiraamat" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Salvesta" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Loobu" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 81a2ab9c72d9f9ee692ee3b4a5cf2342e6f64e63..6476f3b1ae4c126d7b17606999a2b7b1e2c90518 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "Pole kategooriat, mida lisada?" msgid "This category already exists: " msgstr "See kategooria on juba olemas: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Seaded" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Jaanuar" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Veebruar" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Märts" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Aprill" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mai" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Juuni" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Juuli" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "August" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "September" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Oktoober" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "November" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Detsember" @@ -106,8 +106,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Kustutamiseks pole kategooriat valitud." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Viga" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Parool" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "Kohustuslik" msgid "Login failed!" msgstr "Sisselogimine ebaõnnestus!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Kasutajanimi" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Päringu taastamine" @@ -300,52 +301,77 @@ msgstr "Muuda kategooriaid" msgid "Add" msgstr "Lisa" +#: 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 "Loo <strong>admini konto</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Lisavalikud" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Lõpeta seadistamine" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "veebiteenused sinu kontrolli all" @@ -353,15 +379,29 @@ msgstr "veebiteenused sinu kontrolli all" msgid "Log out" msgstr "Logi välja" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "pea meeles" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Logi sisse" @@ -376,3 +416,17 @@ msgstr "eelm" #: templates/part.pagenavi.php:20 msgid "next" msgstr "järgm" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/et_EE/files_odfviewer.po b/l10n/et_EE/files_odfviewer.po deleted file mode 100644 index 986289e67a605c2946d711f33f92676b72a8275c..0000000000000000000000000000000000000000 --- a/l10n/et_EE/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/et_EE/files_pdfviewer.po b/l10n/et_EE/files_pdfviewer.po deleted file mode 100644 index 3354f9e2ccc57e269a3cba5a9023b81a43a41d53..0000000000000000000000000000000000000000 --- a/l10n/et_EE/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/et_EE/files_texteditor.po b/l10n/et_EE/files_texteditor.po deleted file mode 100644 index 134962433934f40812af53b6dd48efa53675aa93..0000000000000000000000000000000000000000 --- a/l10n/et_EE/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/et_EE/gallery.po b/l10n/et_EE/gallery.po deleted file mode 100644 index 1b844f2ca997c0222cca1ac1d857f9ec72c4081e..0000000000000000000000000000000000000000 --- a/l10n/et_EE/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Pildid" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Seaded" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Skänni uuesti" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Peata" - -#: templates/index.php:18 -msgid "Share" -msgstr "Jaga" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Tagasi" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Eemaldamise kinnitus" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Kas sa soovid albumit eemaldada" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Muuda albumi nime" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Uue albumi nimi" diff --git a/l10n/et_EE/impress.po b/l10n/et_EE/impress.po deleted file mode 100644 index 85746c64843d762a90799e935e78d2881193bdd0..0000000000000000000000000000000000000000 --- a/l10n/et_EE/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/et_EE/media.po b/l10n/et_EE/media.po deleted file mode 100644 index 8be81b35e4f27b33ad46248f298b25b2458e040a..0000000000000000000000000000000000000000 --- a/l10n/et_EE/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Muusika" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Esita" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Paus" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Eelmine" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Järgmine" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Vaikseks" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Hääl tagasi" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Skänni kollekttsiooni uuesti" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Esitaja" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Pealkiri" diff --git a/l10n/et_EE/tasks.po b/l10n/et_EE/tasks.po deleted file mode 100644 index 042e2c4864fbc1775271a09ec822eb7bd4b4616c..0000000000000000000000000000000000000000 --- a/l10n/et_EE/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 06:36+0000\n" -"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Vigane kuupäev/kellaaeg" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Ülesanded" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Kategooriat pole" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Määramata" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=kõrgeim" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=keskmine" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=madalaim" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Tühi kokkuvõte" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Vigane edenemise protsent" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Vigane tähtsus" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Lisa ülesanne" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Tähtaja järgi" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Nimekirja järgi" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Edenemise järgi" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Asukoha järgi" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Tähtsuse järjekorras" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Sildi järgi" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Ülesannete laadimine..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Tähtis" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Rohkem" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Vähem" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Kustuta" diff --git a/l10n/et_EE/user_migrate.po b/l10n/et_EE/user_migrate.po deleted file mode 100644 index 88aea1413865941586c0d92d0c6bf2158588ef3f..0000000000000000000000000000000000000000 --- a/l10n/et_EE/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/et_EE/user_openid.po b/l10n/et_EE/user_openid.po deleted file mode 100644 index 8be57b5de20cb6dd7acef1ef73c79cb6c0a5d586..0000000000000000000000000000000000000000 --- a/l10n/et_EE/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Rivo Zängov <eraser@eraser.ee>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 06:48+0000\n" -"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" -"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "See on OpenID serveri lõpp-punkt. Lisainfot vaata" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identiteet: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Tsoon: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/eu/admin_dependencies_chk.po b/l10n/eu/admin_dependencies_chk.po deleted file mode 100644 index 92e7dfc1a3cb972e0e9fe48bca547b348b59b714..0000000000000000000000000000000000000000 --- a/l10n/eu/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/eu/admin_migrate.po b/l10n/eu/admin_migrate.po deleted file mode 100644 index c810a7d4520867d3cf8568ddacb1d858f0d90fec..0000000000000000000000000000000000000000 --- a/l10n/eu/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/eu/bookmarks.po b/l10n/eu/bookmarks.po deleted file mode 100644 index d443167a5bab75c36ef9a045687e71dbc35d85f5..0000000000000000000000000000000000000000 --- a/l10n/eu/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/eu/calendar.po b/l10n/eu/calendar.po deleted file mode 100644 index 9617f72ac3bd36109b142819dbe514479b9f6850..0000000000000000000000000000000000000000 --- a/l10n/eu/calendar.po +++ /dev/null @@ -1,816 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <asieriko@gmail.com>, 2012. -# Asier Urio Larrea <asieriko@gmail.com>, 2011. -# Piarres Beobide <pi@beobide.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Egutegi guztiak ez daude guztiz cacheatuta" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Dena guztiz cacheatuta dagoela dirudi" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Ez da egutegirik aurkitu." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Ez da gertaerarik aurkitu." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Egutegi okerra" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Fitxategiak ez zuen gertaerarik edo gertaera guztiak dagoeneko egutegian gordeta zeuden." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "gertaerak egutegi berrian gorde dira" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Inportazioak huts egin du" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "gertaerak zure egutegian gorde dira" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Ordu-zonalde berria" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Ordu-zonaldea aldatuta" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Baliogabeko eskaera" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Egutegia" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "yyyy MMMM" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Jaioteguna" - -#: lib/app.php:122 -msgid "Business" -msgstr "Negozioa" - -#: lib/app.php:123 -msgid "Call" -msgstr "Deia" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Bezeroak" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Banatzailea" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Oporrak" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideiak" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Bidaia" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Urteurrena" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Bilera" - -#: lib/app.php:131 -msgid "Other" -msgstr "Bestelakoa" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Pertsonala" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Proiektuak" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Galderak" - -#: lib/app.php:135 -msgid "Work" -msgstr "Lana" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "izengabea" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Egutegi berria" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Ez da errepikatzen" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Egunero" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Astero" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Asteko egun guztietan" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Bi-Astero" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Hilabetero" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Urtero" - -#: lib/object.php:388 -msgid "never" -msgstr "inoiz" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "errepikapen kopuruagatik" - -#: lib/object.php:390 -msgid "by date" -msgstr "dataren arabera" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "hileko egunaren arabera" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "asteko egunaren arabera" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Astelehena" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Asteartea" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Asteazkena" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Osteguna" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Ostirala" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Larunbata" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Igandea" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "gertaeraren hilabeteko astea" - -#: lib/object.php:428 -msgid "first" -msgstr "lehenengoa" - -#: lib/object.php:429 -msgid "second" -msgstr "bigarrean" - -#: lib/object.php:430 -msgid "third" -msgstr "hirugarrena" - -#: lib/object.php:431 -msgid "fourth" -msgstr "laugarrena" - -#: lib/object.php:432 -msgid "fifth" -msgstr "bostgarrena" - -#: lib/object.php:433 -msgid "last" -msgstr "azkena" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Urtarrila" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Otsaila" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Martxoa" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Apirila" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maiatza" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Ekaina" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Uztaila" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Abuztua" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Iraila" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Urria" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Azaroa" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Abendua" - -#: lib/object.php:488 -msgid "by events date" -msgstr "gertaeren dataren arabera" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "urteko egunaren arabera" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "aste zenbaki(ar)en arabera" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "eguna eta hilabetearen arabera" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Eg." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "ig." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "al." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "ar." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "az." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "og." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "ol." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "lr." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "urt." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "ots." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "api." - -#: templates/calendar.php:8 -msgid "May." -msgstr "mai." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "eka." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "uzt." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "abu." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "ira." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "urr." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "aza." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "abe." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Egun guztia" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Eremuak faltan" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Izenburua" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Hasierako Data" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Hasierako Ordua" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Bukaerako Data" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Bukaerako Ordua" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Gertaera hasi baino lehen bukatzen da" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Datu-baseak huts egin du" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Astea" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Hilabetea" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Zerrenda" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Gaur" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Zure egutegiak" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav lotura" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Elkarbanatutako egutegiak" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Ez dago elkarbanatutako egutegirik" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Elkarbanatu egutegia" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Deskargatu" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Editatu" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Ezabatu" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "honek zurekin elkarbanatu du" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Egutegi berria" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Editatu egutegia" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Bistaratzeko izena" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiboa" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Egutegiaren kolorea" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Gorde" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Bidali" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Ezeztatu" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Editatu gertaera" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportatu" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Gertaeraren informazioa" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Errepikapena" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarma" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Partaideak" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Elkarbanatu" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Gertaeraren izenburua" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategoria" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Banatu kategoriak komekin" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Editatu kategoriak" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Egun osoko gertaera" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Hasiera" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Bukaera" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Aukera aurreratuak" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Kokalekua" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Gertaeraren kokalekua" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Deskribapena" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Gertaeraren deskribapena" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Errepikatu" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Aurreratua" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Hautatu asteko egunak" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Hautatu egunak" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "eta gertaeraren urteko eguna." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "eta gertaeraren hilabeteko eguna." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Hautatu hilabeteak" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Hautatu asteak" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "eta gertaeraren urteko astea." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Tartea" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Amaiera" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "errepikapenak" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "sortu egutegi berria" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Inportatu egutegi fitxategi bat" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Mesedez aukeratu egutegi bat." - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Egutegi berriaren izena" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Hartu eskuragarri dagoen izen bat!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Izen hau duen egutegi bat dagoeneko existitzen da. Hala ere jarraitzen baduzu, egutegi hauek elkartuko dira." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importatu" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Itxi lehioa" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Sortu gertaera berria" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Ikusi gertaera bat" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Ez da kategoriarik hautatu" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Ordu-zonaldea" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Cache" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Ezabatu gertaera errepikakorren cachea" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Egutegiaren CalDAV sinkronizazio helbideak" - -#: templates/settings.php:87 -msgid "more info" -msgstr "informazio gehiago" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Helbide nagusia" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Erabiltzaileak" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "hautatutako erabiltzaileak" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Editagarria" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Taldeak" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "hautatutako taldeak" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "publikoa egin" diff --git a/l10n/eu/contacts.po b/l10n/eu/contacts.po deleted file mode 100644 index 3cb1eea28f00914c3f92c681adc7ef74e364cecb..0000000000000000000000000000000000000000 --- a/l10n/eu/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <asieriko@gmail.com>, 2012. -# Asier Urio Larrea <asieriko@gmail.com>, 2011. -# Piarres Beobide <pi@beobide.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Errore bat egon da helbide-liburua (des)gaitzen" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "IDa ez da ezarri." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Ezin da helbide liburua eguneratu izen huts batekin." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Errore bat egon da helbide liburua eguneratzen." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Ez da IDrik eman" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Errorea kontrol-batura ezartzean." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Ez dira ezabatzeko kategoriak hautatu." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Ez da helbide libururik aurkitu." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Ez da kontakturik aurkitu." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Errore bat egon da kontaktua gehitzerakoan" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "elementuaren izena ez da ezarri." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Ezin izan da kontaktua analizatu:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Ezin da propieta hutsa gehitu." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Behintzat helbide eremuetako bat bete behar da." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Propietate bikoiztuta gehitzen saiatzen ari zara:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "vCard-aren inguruko informazioa okerra da. Mesedez birkargatu orrialdea." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "ID falta da" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Errorea VCard analizatzean hurrengo IDrako: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "Kontrol-batura ezarri gabe dago." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "vCard honen informazioa ez da zuzena.Mezedez birkargatu orria:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Ez da kontaktuaren IDrik eman." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Errore bat izan da kontaktuaren argazkia igotzerakoan." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Errore bat izan da aldi bateko fitxategia gordetzerakoan." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Kargatzen ari den argazkia ez da egokia." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Kontaktuaren IDa falta da." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Ez da argazkiaren bide-izenik eman." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Fitxategia ez da existitzen:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Errore bat izan da irudia kargatzearkoan." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Errore bat izan da kontaktu objetua lortzean." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Errore bat izan da PHOTO propietatea lortzean." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Errore bat izan da kontaktua gordetzean." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Errore bat izan da irudiaren tamaina aldatzean" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Errore bat izan da irudia mozten" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Errore bat izan da aldi bateko irudia sortzen" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Ezin izan da irudia aurkitu:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Errore bat egon da kontaktuak biltegira igotzerakoan." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Ez da errorerik egon, fitxategia ongi igo da" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Igotako fitxategia php.ini fitxategiko upload_max_filesize direktiba baino handiagoa da" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Igotako fitxategia HTML formularioan zehaztutako MAX_FILE_SIZE direktiba baino handidagoa da." - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Igotako fitxategiaren zati bat bakarrik igo da" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Ez da fitxategirik igo" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Aldi bateko karpeta falta da" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Ezin izan da aldi bateko irudia gorde:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Ezin izan da aldi bateko irudia kargatu:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Ez da fitxategirik igo. Errore ezezaguna" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontaktuak" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Barkatu, aukera hau ez da oriandik inplementatu" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Inplementatu gabe" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Ezin izan da eposta baliagarri bat hartu." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Errorea" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Propietate hau ezin da hutsik egon." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Ezin izan dira elementuak serializatu." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' argumenturik gabe deitu da. Mezedez abisatu bugs.owncloud.org-en" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Editatu izena" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Ez duzu igotzeko fitxategirik hautatu." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Igo nahi duzun fitxategia zerbitzariak onartzen duen tamaina baino handiagoa da." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Hautatu mota" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Emaitza:" - -#: js/loader.js:49 -msgid " imported, " -msgstr " inportatua, " - -#: js/loader.js:49 -msgid " failed." -msgstr "huts egin du." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Hau ez da zure helbide liburua." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Ezin izan da kontaktua aurkitu." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Lana" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Etxea" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Bestelakoa" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mugikorra" - -#: lib/app.php:203 -msgid "Text" -msgstr "Testua" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Ahotsa" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mezua" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax-a" - -#: lib/app.php:207 -msgid "Video" -msgstr "Bideoa" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Bilagailua" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Jaioteguna" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "Deia" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Bezeroak" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Oporrak" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Ideiak" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Bidaia" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Bilera" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Pertsonala" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Proiektuak" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Galderak" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name}ren jaioteguna" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontaktua" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Gehitu kontaktua" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Inportatu" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Ezarpenak" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Helbide Liburuak" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Itxi" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Teklatuaren lasterbideak" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Nabigazioa" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Hurrengoa kontaktua zerrendan" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Aurreko kontaktua zerrendan" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Zabaldu/tolestu uneko helbide-liburua" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Ekintzak" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Gaurkotu kontaktuen zerrenda" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Gehitu kontaktu berria" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Gehitu helbide-liburu berria" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Ezabatu uneko kontaktuak" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Askatu argazkia igotzeko" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Ezabatu oraingo argazkia" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Editatu oraingo argazkia" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Igo argazki berria" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Hautatu argazki bat ownCloudetik" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Editatu izenaren zehaztasunak" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Erakundea" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Ezabatu" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Ezizena" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Sartu ezizena" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Web orria" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.webgunea.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Web orrira joan" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "yyyy-mm-dd" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Taldeak" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Banatu taldeak komekin" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Editatu taldeak" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Hobetsia" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Mesedez sartu eposta helbide egoki bat" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Sartu eposta helbidea" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Bidali helbidera" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Ezabatu eposta helbidea" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Sartu telefono zenbakia" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Ezabatu telefono zenbakia" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Ikusi mapan" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Editatu helbidearen zehaztasunak" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Gehitu oharrak hemen." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Gehitu eremua" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefonoa" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Eposta" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Helbidea" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Oharra" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Deskargatu kontaktua" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Ezabatu kontaktua" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Aldi bateko irudia cachetik ezabatu da." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Editatu helbidea" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Mota" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Posta kutxa" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Kalearen helbidea" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Kalea eta zenbakia" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Hedatua" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Etxe zenbakia eab." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Hiria" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Eskualdea" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Posta kodea" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Posta kodea" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Herrialdea" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Helbide-liburua" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Inporatu kontaktuen fitxategia" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Mesedez, aukeratu helbide liburua" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "sortu helbide liburu berria" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Helbide liburuaren izena" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Kontaktuak inportatzen" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Ez duzu kontakturik zure helbide liburuan." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Gehitu kontaktua" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Hautatu helbide-liburuak" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Sartu izena" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Sartu deskribapena" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV sinkronizazio helbideak" - -#: templates/settings.php:3 -msgid "more info" -msgstr "informazio gehiago" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Helbide nagusia" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Deskargatu" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Editatu" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Helbide-liburu berria" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Gorde" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Ezeztatu" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 8eef5491204b451867640abca3857ff2a1f8dcf3..c72e8ac4949afde8c70bea51c5eb53a9d6536209 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-04 02:04+0200\n" -"PO-Revision-Date: 2012-10-03 08:35+0000\n" -"Last-Translator: asieriko <asieriko@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@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" @@ -31,55 +31,55 @@ msgstr "Ez dago gehitzeko kategoriarik?" msgid "This category already exists: " msgstr "Kategoria hau dagoeneko existitzen da:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Urtarrila" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Otsaila" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Martxoa" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Apirila" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Maiatza" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Ekaina" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Uztaila" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Abuztua" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Iraila" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Urria" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Azaroa" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Abendua" @@ -107,8 +107,8 @@ msgstr "Ados" msgid "No categories selected for deletion." msgstr "Ez da ezabatzeko kategoriarik hautatu." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 -#: js/share.js:506 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Errorea" @@ -148,7 +148,8 @@ msgstr "Elkarbanatu lotura batekin" msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Pasahitza" @@ -208,15 +209,15 @@ msgstr "ezabatu" msgid "share" msgstr "elkarbanatu" -#: js/share.js:322 js/share.js:481 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:494 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:506 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" @@ -240,8 +241,8 @@ msgstr "Eskatuta" msgid "Login failed!" msgstr "Saio hasierak huts egin du!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Erabiltzaile izena" @@ -301,52 +302,77 @@ msgstr "Editatu kategoriak" msgid "Add" msgstr "Gehitu" +#: 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 "Sortu <strong>kudeatzaile kontu<strong> bat" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Bukatu konfigurazioa" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" @@ -354,15 +380,29 @@ msgstr "web zerbitzuak zure kontrolpean" msgid "Log out" msgstr "Saioa bukatu" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "gogoratu" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Hasi saioa" @@ -377,3 +417,17 @@ msgstr "aurrekoa" #: templates/part.pagenavi.php:20 msgid "next" msgstr "hurrengoa" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/eu/files_odfviewer.po b/l10n/eu/files_odfviewer.po deleted file mode 100644 index 3f9ec980ab341c5ab255f2e4dc9e5dea0074febc..0000000000000000000000000000000000000000 --- a/l10n/eu/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/eu/files_pdfviewer.po b/l10n/eu/files_pdfviewer.po deleted file mode 100644 index f45d8ef655eaa19ee05c4b5868bdc7d0a7ac7b55..0000000000000000000000000000000000000000 --- a/l10n/eu/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/eu/files_texteditor.po b/l10n/eu/files_texteditor.po deleted file mode 100644 index 859179f561dd323a8eb25ed87284874ba333063a..0000000000000000000000000000000000000000 --- a/l10n/eu/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/eu/gallery.po b/l10n/eu/gallery.po deleted file mode 100644 index e9794f69fa3c6c37a737432ab9b4be34cfee0e35..0000000000000000000000000000000000000000 --- a/l10n/eu/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <asieriko@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/language/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Argazkiak" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Ezarpenak" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Bireskaneatu" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Gelditu" - -#: templates/index.php:18 -msgid "Share" -msgstr "Elkarbanatu" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Atzera" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Ezabatu konfirmazioa" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Albuma ezabatu nahi al duzu" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Aldatu albumaren izena" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Album berriaren izena" diff --git a/l10n/eu/impress.po b/l10n/eu/impress.po deleted file mode 100644 index 29fd6a225e2ccdb54d7d04a4a7fa7ceeca1db59d..0000000000000000000000000000000000000000 --- a/l10n/eu/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/eu/media.po b/l10n/eu/media.po deleted file mode 100644 index 468d2fba323639658fad814ad1bfcbcab87a5516..0000000000000000000000000000000000000000 --- a/l10n/eu/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Asier Urio Larrea <asieriko@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Basque (http://www.transifex.net/projects/p/owncloud/language/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musika" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Erreproduzitu" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pausarazi" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Aurrekoa" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Hurrengoa" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Mututu" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Ez Mututu" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Bireskaneatu Bilduma" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artista" - -#: templates/music.php:38 -msgid "Album" -msgstr "Albuma" - -#: templates/music.php:39 -msgid "Title" -msgstr "Izenburua" diff --git a/l10n/eu/tasks.po b/l10n/eu/tasks.po deleted file mode 100644 index 4ed8bae41d3ee3c858f353521cfb77e205e6fbe9..0000000000000000000000000000000000000000 --- a/l10n/eu/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/eu/user_migrate.po b/l10n/eu/user_migrate.po deleted file mode 100644 index 395533a4806f0f50a1ddd9b9e42e85e03da75d90..0000000000000000000000000000000000000000 --- a/l10n/eu/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/eu/user_openid.po b/l10n/eu/user_openid.po deleted file mode 100644 index 917f83859aadbf039634cdabd30ba4ecfc677931..0000000000000000000000000000000000000000 --- a/l10n/eu/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/eu_ES/admin_dependencies_chk.po b/l10n/eu_ES/admin_dependencies_chk.po deleted file mode 100644 index 931550cd288125e933e5bdd9cbd684937b284051..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/eu_ES/admin_migrate.po b/l10n/eu_ES/admin_migrate.po deleted file mode 100644 index 9bc05a4241eba2a4dd5b9de8b8918ca367882a90..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/eu_ES/bookmarks.po b/l10n/eu_ES/bookmarks.po deleted file mode 100644 index c012dfcd46508ed9ad474e828a2e897a3203f596..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/eu_ES/calendar.po b/l10n/eu_ES/calendar.po deleted file mode 100644 index 24f487f526e2559fced41abb24650477c310bd88..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/calendar.po +++ /dev/null @@ -1,813 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "" - -#: lib/object.php:373 -msgid "Daily" -msgstr "" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/eu_ES/contacts.po b/l10n/eu_ES/contacts.po deleted file mode 100644 index 0ef5f51a80f02b5db68de71b76c3b18f1a952555..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 96133924d3e88449c89c1aef5350a3bf7b861d2f..a83a3117caf3b2dda491da3434c73d2cc7b3caa2 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -29,55 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -182,39 +183,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -238,12 +239,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -299,52 +300,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/eu_ES/files_odfviewer.po b/l10n/eu_ES/files_odfviewer.po deleted file mode 100644 index ae252d7f3c18dcd1dec60f638bfcdda306664bb9..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/eu_ES/files_pdfviewer.po b/l10n/eu_ES/files_pdfviewer.po deleted file mode 100644 index 9dace38e4083f904c97301199817c2b6492f42fb..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/eu_ES/files_texteditor.po b/l10n/eu_ES/files_texteditor.po deleted file mode 100644 index f4fbf12ae54455d2d7d844ccf747a1795f2d1120..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/eu_ES/gallery.po b/l10n/eu_ES/gallery.po deleted file mode 100644 index 54096c308b2797225d994c19b0287b11cee6aadd..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/gallery.po +++ /dev/null @@ -1,58 +0,0 @@ -# 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: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-01-15 13:48+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/eu_ES/impress.po b/l10n/eu_ES/impress.po deleted file mode 100644 index f3819cec39ff0aa3eda424d5b6e436f84ba85776..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/eu_ES/media.po b/l10n/eu_ES/media.po deleted file mode 100644 index 7b6fee29b9cc2395960c243f8e4f12299e1a465a..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/media.po +++ /dev/null @@ -1,66 +0,0 @@ -# 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: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "" - -#: templates/music.php:5 -msgid "Previous" -msgstr "" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "" - -#: templates/music.php:7 -msgid "Mute" -msgstr "" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "" - -#: templates/music.php:37 -msgid "Artist" -msgstr "" - -#: templates/music.php:38 -msgid "Album" -msgstr "" - -#: templates/music.php:39 -msgid "Title" -msgstr "" diff --git a/l10n/eu_ES/tasks.po b/l10n/eu_ES/tasks.po deleted file mode 100644 index aad5eb88c3160f4cffb3751b370c2dbae02b8404..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/eu_ES/user_migrate.po b/l10n/eu_ES/user_migrate.po deleted file mode 100644 index 7a3cda2309630d285e47168bb6ade6955fc5c1d9..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/eu_ES/user_openid.po b/l10n/eu_ES/user_openid.po deleted file mode 100644 index 7016da797dd9aba7bdc3fbf5347327b400e51255..0000000000000000000000000000000000000000 --- a/l10n/eu_ES/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/fa/admin_dependencies_chk.po b/l10n/fa/admin_dependencies_chk.po deleted file mode 100644 index 265e0c6cd7c704409c3a7f38bc468c5844999bcd..0000000000000000000000000000000000000000 --- a/l10n/fa/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/fa/admin_migrate.po b/l10n/fa/admin_migrate.po deleted file mode 100644 index 6b80ec8ecafaef00a3ffcd7074122dcd0630258c..0000000000000000000000000000000000000000 --- a/l10n/fa/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/fa/bookmarks.po b/l10n/fa/bookmarks.po deleted file mode 100644 index c4649e206bb87c8c1c7151d0241fc25769da6596..0000000000000000000000000000000000000000 --- a/l10n/fa/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mohammad Dashtizadeh <mohammad@dashtizadeh.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 20:19+0000\n" -"Last-Translator: Mohammad Dashtizadeh <mohammad@dashtizadeh.net>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "نشانکها" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "بدوننام" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "آدرس" - -#: templates/list.php:14 -msgid "Title" -msgstr "عنوان" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "ذخیره نشانک" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "شما هیچ نشانکی ندارید" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/fa/calendar.po b/l10n/fa/calendar.po deleted file mode 100644 index 1702670824e4762ccfca67c24a6f2e8803f7284f..0000000000000000000000000000000000000000 --- a/l10n/fa/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Hossein nag <h.sname@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "هیچ تقویمی پیدا نشد" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "هیچ رویدادی پیدا نشد" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "تقویم اشتباه" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "زمان محلی جدید" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "زمان محلی تغییر یافت" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "درخواست نامعتبر" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "تقویم" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "DDD m[ yyyy]{ '—'[ DDD] m yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "روزتولد" - -#: lib/app.php:122 -msgid "Business" -msgstr "تجارت" - -#: lib/app.php:123 -msgid "Call" -msgstr "تماس گرفتن" - -#: lib/app.php:124 -msgid "Clients" -msgstr "مشتریان" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "نجات" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "روزهای تعطیل" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "ایده ها" - -#: lib/app.php:128 -msgid "Journey" -msgstr "سفر" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "سالگرد" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "ملاقات" - -#: lib/app.php:131 -msgid "Other" -msgstr "دیگر" - -#: lib/app.php:132 -msgid "Personal" -msgstr "شخصی" - -#: lib/app.php:133 -msgid "Projects" -msgstr "پروژه ها" - -#: lib/app.php:134 -msgid "Questions" -msgstr "سوالات" - -#: lib/app.php:135 -msgid "Work" -msgstr "کار" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "نام گذاری نشده" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "تقویم جدید" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "تکرار نکنید" - -#: lib/object.php:373 -msgid "Daily" -msgstr "روزانه" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "هفتهگی" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "هرروز هفته" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "دوهفته" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "ماهانه" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "سالانه" - -#: lib/object.php:388 -msgid "never" -msgstr "هرگز" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "به وسیله ظهور" - -#: lib/object.php:390 -msgid "by date" -msgstr "به وسیله تاریخ" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "به وسیله روزهای ماه" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "به وسیله روز های هفته" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "دوشنبه" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "سه شنبه" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "چهارشنبه" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "پنجشنبه" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "جمعه" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "شنبه" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "یکشنبه" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "رویداد های هفته هایی از ماه" - -#: lib/object.php:428 -msgid "first" -msgstr "اولین" - -#: lib/object.php:429 -msgid "second" -msgstr "دومین" - -#: lib/object.php:430 -msgid "third" -msgstr "سومین" - -#: lib/object.php:431 -msgid "fourth" -msgstr "چهارمین" - -#: lib/object.php:432 -msgid "fifth" -msgstr "پنجمین" - -#: lib/object.php:433 -msgid "last" -msgstr "آخرین" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "ژانویه" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "فبریه" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "مارس" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "آوریل" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "می" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "ژوءن" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "جولای" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "آگوست" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "سپتامبر" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "اکتبر" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "نوامبر" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "دسامبر" - -#: lib/object.php:488 -msgid "by events date" -msgstr "به وسیله رویداد های روزانه" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "به وسیله روز های سال(ها)" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "به وسیله شماره هفته(ها)" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "به وسیله روز و ماه" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "تاریخ" - -#: lib/search.php:43 -msgid "Cal." -msgstr "تقویم." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "هرروز" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "فیلد های گم شده" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "عنوان" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "از تاریخ" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "از ساعت" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "به تاریخ" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "به ساعت" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "رویداد قبل از شروع شدن تمام شده!" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "یک پایگاه داده فرو مانده است" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "هفته" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "ماه" - -#: templates/calendar.php:41 -msgid "List" -msgstr "فهرست" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "امروز" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "تقویم های شما" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav Link" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "تقویمهای به اشترک گذاری شده" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "هیچ تقویمی به اشتراک گذارده نشده" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "تقویم را به اشتراک بگذارید" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "بارگیری" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "ویرایش" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "پاک کردن" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "به اشتراک گذارده شده به وسیله" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "تقویم جدید" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "ویرایش تقویم" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "نام برای نمایش" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "فعال" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "رنگ تقویم" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "ذخیره سازی" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "ارسال" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "انصراف" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "ویرایش رویداد" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "خروجی گرفتن" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "اطلاعات رویداد" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "در حال تکرار کردن" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "هشدار" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "شرکت کنندگان" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "به اشتراک گذاردن" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "عنوان رویداد" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "نوع" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "گروه ها را به وسیله درنگ نما از هم جدا کنید" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "ویرایش گروه" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "رویداد های روزانه" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "از" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "به" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "تنظیمات حرفه ای" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "منطقه" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "منطقه رویداد" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "توضیحات" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "توضیحات درباره رویداد" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "تکرار" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "پیشرفته" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "انتخاب روز های هفته " - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "انتخاب روز ها" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "و رویداد های روز از سال" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "و رویداد های روز از ماه" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "انتخاب ماه ها" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "انتخاب هفته ها" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "و رویداد هفته ها از سال" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "فاصله" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "پایان" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "ظهور" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "یک تقویم جدید ایجاد کنید" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "یک پرونده حاوی تقویم وارد کنید" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "نام تقویم جدید" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "ورودی دادن" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "بستن دیالوگ" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "یک رویداد ایجاد کنید" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "دیدن یک رویداد" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "هیچ گروهی انتخاب نشده" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "از" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "در" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "زمان محلی" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24 ساعت" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12 ساعت" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "کاربرها" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "انتخاب شناسه ها" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "قابل ویرایش" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "گروه ها" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "انتخاب گروه ها" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "عمومی سازی" diff --git a/l10n/fa/contacts.po b/l10n/fa/contacts.po deleted file mode 100644 index 92daf2d9db21b3b331e6b276cf8ebcdc851507ac..0000000000000000000000000000000000000000 --- a/l10n/fa/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Hossein nag <h.sname@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "خطا در (غیر) فعال سازی کتابچه نشانه ها" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "شناسه تعیین نشده" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "نمی توانید کتابچه نشانی ها را با یک نام خالی بروزرسانی کنید" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "خطا در هنگام بروزرسانی کتابچه نشانی ها" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "هیچ شناسه ای ارائه نشده" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "خطا در تنظیم checksum" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "هیچ گروهی برای حذف شدن در نظر گرفته نشده" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "هیچ کتابچه نشانی پیدا نشد" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "هیچ شخصی پیدا نشد" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "یک خطا در افزودن اطلاعات شخص مورد نظر" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "نام اصلی تنظیم نشده است" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "نمیتوان یک خاصیت خالی ایجاد کرد" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "At least one of the address fields has to be filled out. " - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "امتحان کردن برای وارد کردن مشخصات تکراری" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "اطلاعات درمورد vCard شما اشتباه است لطفا صفحه را دوباره بار گذاری کنید" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "نشانی گم شده" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "خطا در تجزیه کارت ویزا برای شناسه:" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "checksum تنظیم شده نیست" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "اطلاعات کارت ویزا شما غلط است لطفا صفحه را دوباره بارگزاری کنید" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "چند چیز به FUBAR رفتند" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "هیچ اطلاعاتی راجع به شناسه ارسال نشده" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "خطا در خواندن اطلاعات تصویر" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "خطا در ذخیره پرونده موقت" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "بارگزاری تصویر امکان پذیر نیست" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "اطلاعات شناسه گم شده" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "هیچ نشانی از تصویرارسال نشده" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "پرونده وجود ندارد" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "خطا در بارگزاری تصویر" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "خطا در گرفتن اطلاعات شخص" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "خطا در دربافت تصویر ویژگی شخصی" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "خطا در ذخیره سازی اطلاعات" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "خطا در تغییر دادن اندازه تصویر" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "خطا در برداشت تصویر" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "خطا در ساخت تصویر temporary" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "خطا در پیدا کردن تصویر:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "خطا در هنگام بارگذاری و ذخیره سازی" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "حجم آپلود از طریق Php.ini تعیین می شود" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "هیچ پروندهای بارگذاری نشده" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "یک پوشه موقت گم شده" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "قابلیت ذخیره تصویر موقت وجود ندارد:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "قابلیت بارگذاری تصویر موقت وجود ندارد:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "اشخاص" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "با عرض پوزش،این قابلیت هنوز اجرا نشده است" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "انجام نشد" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Couldn't get a valid address." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "خطا" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "این ویژگی باید به صورت غیر تهی عمل کند" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "قابلیت مرتب سازی عناصر وجود ندارد" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "پاک کردن ویژگی بدون استدلال انجام شده.لطفا این مورد را گزارش دهید:bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "نام تغییر" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "هیچ فایلی برای آپلود انتخاب نشده است" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "حجم فایل بسیار بیشتر از حجم تنظیم شده در تنظیمات سرور است" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "نوع را انتخاب کنید" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "نتیجه:" - -#: js/loader.js:49 -msgid " imported, " -msgstr "وارد شد،" - -#: js/loader.js:49 -msgid " failed." -msgstr "ناموفق" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "این کتابچه ی نشانه های شما نیست" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "اتصال ویا تماسی یافت نشد" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "کار" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "خانه" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "موبایل" - -#: lib/app.php:203 -msgid "Text" -msgstr "متن" - -#: lib/app.php:204 -msgid "Voice" -msgstr "صدا" - -#: lib/app.php:205 -msgid "Message" -msgstr "پیغام" - -#: lib/app.php:206 -msgid "Fax" -msgstr "دورنگار:" - -#: lib/app.php:207 -msgid "Video" -msgstr "رسانه تصویری" - -#: lib/app.php:208 -msgid "Pager" -msgstr "صفحه" - -#: lib/app.php:215 -msgid "Internet" -msgstr "اینترنت" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "روزتولد" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "روز تولد {name} است" - -#: lib/search.php:15 -msgid "Contact" -msgstr "اشخاص" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "افزودن اطلاعات شخص مورد نظر" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "وارد کردن" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "کتابچه ی نشانی ها" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "بستن" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "تصویر را به اینجا بکشید تا بار گذازی شود" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "پاک کردن تصویر کنونی" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "ویرایش تصویر کنونی" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "بار گذاری یک تصویر جدید" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "انتخاب یک تصویر از ابر های شما" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format custom, Short name, Full name, Reverse or Reverse with comma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "ویرایش نام جزئیات" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "نهاد(ارگان)" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "پاک کردن" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "نام مستعار" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "یک نام مستعار وارد کنید" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "گروه ها" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "جدا کردن گروه ها به وسیله درنگ نما" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "ویرایش گروه ها" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "مقدم" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "لطفا یک پست الکترونیکی معتبر وارد کنید" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "یک پست الکترونیکی وارد کنید" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "به نشانی ارسال شد" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "پاک کردن نشانی پست الکترونیکی" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "شماره تلفن راوارد کنید" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "پاک کردن شماره تلفن" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "دیدن روی نقشه" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "ویرایش جزئیات نشانی ها" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "اینجا یادداشت ها را بیافزایید" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "اضافه کردن فیلد" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "شماره تلفن" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "نشانی پست الکترنیک" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "نشانی" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "یادداشت" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "دانلود مشخصات اشخاص" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "پاک کردن اطلاعات شخص مورد نظر" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "تصویر موقت از کش پاک شد." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "ویرایش نشانی" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "نوع" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "صندوق پستی" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "تمدید شده" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "شهر" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "ناحیه" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "کد پستی" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "کشور" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "کتابچه ی نشانی ها" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "پیشوند های محترمانه" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "خانم" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "خانم" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "آقا" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "آقا" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "خانم" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "دکتر" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "نام معلوم" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "نام های دیگر" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "نام خانوادگی" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "پسوند های محترم" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "دکتری" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "وارد کردن پرونده حاوی اطلاعات" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "لطفا یک کتابچه نشانی انتخاب کنید" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "یک کتابچه نشانی بسازید" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "نام کتابچه نشانی جدید" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "وارد کردن اشخاص" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "شماهیچ شخصی در کتابچه نشانی خود ندارید" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "افزودن اطلاعات شخص مورد نظر" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV syncing addresses " - -#: templates/settings.php:3 -msgid "more info" -msgstr "اطلاعات بیشتر" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "نشانی اولیه" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X " - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "بارگیری" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "ویرایش" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "کتابچه نشانه های جدید" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "ذخیره سازی" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "انصراف" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 18c5c3f42c99f9369ae0907851e001208bd8a03f..beb8c04f5ff591056b12ec09332699cb66e7be68 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "آیا گروه دیگری برای افزودن ندارید" msgid "This category already exists: " msgstr "این گروه از قبل اضافه شده" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "ژانویه" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "فبریه" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "مارس" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "آوریل" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "می" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "ژوئن" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "جولای" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "آگوست" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "سپتامبر" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "اکتبر" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "نوامبر" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "دسامبر" @@ -106,8 +106,8 @@ msgstr "قبول" msgid "No categories selected for deletion." msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "خطا" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "گذرواژه" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "درخواست" msgid "Login failed!" msgstr "ورود ناموفق بود" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "شناسه" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "درخواست دوباره سازی" @@ -300,52 +301,77 @@ msgstr "ویرایش گروه ها" msgid "Add" msgstr "افزودن" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "لطفا یک <strong> شناسه برای مدیر</strong> بسازید" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "حرفه ای" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "پایگاه داده برنامه ریزی شدند" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "استفاده خواهد شد" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "اتمام نصب" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "سرویس وب تحت کنترل شما" @@ -353,15 +379,29 @@ msgstr "سرویس وب تحت کنترل شما" msgid "Log out" msgstr "خروج" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "ورود" @@ -376,3 +416,17 @@ msgstr "بازگشت" #: templates/part.pagenavi.php:20 msgid "next" msgstr "بعدی" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/fa/files_odfviewer.po b/l10n/fa/files_odfviewer.po deleted file mode 100644 index 9a3288832d1c3e021e11a6ec1632a79b128df54c..0000000000000000000000000000000000000000 --- a/l10n/fa/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/fa/files_pdfviewer.po b/l10n/fa/files_pdfviewer.po deleted file mode 100644 index bf8f950d5ea48301d8eadcb9a40253c1093a0338..0000000000000000000000000000000000000000 --- a/l10n/fa/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/fa/files_texteditor.po b/l10n/fa/files_texteditor.po deleted file mode 100644 index 2360c9358cc38488821f0931a37a4c9d1f2e0cb2..0000000000000000000000000000000000000000 --- a/l10n/fa/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/fa/gallery.po b/l10n/fa/gallery.po deleted file mode 100644 index 72ce4351953bb023f0133f2d211236734a9f503b..0000000000000000000000000000000000000000 --- a/l10n/fa/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Hossein nag <h.sname@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Persian (http://www.transifex.net/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "تصاویر" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "تنظیمات" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "بازرسی دوباره" - -#: templates/index.php:17 -msgid "Stop" -msgstr "توقف" - -#: templates/index.php:18 -msgid "Share" -msgstr "به اشتراک گذاری" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "بازگشت" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "پاک کردن تصدیق" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "آیا مایل به پاک کردن آلبوم هستید؟" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "تغییر نام آلبوم" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "نام آلبوم جدید" diff --git a/l10n/fa/impress.po b/l10n/fa/impress.po deleted file mode 100644 index 7f9e9429ff5a4740890825797408e53fc85df952..0000000000000000000000000000000000000000 --- a/l10n/fa/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/fa/media.po b/l10n/fa/media.po deleted file mode 100644 index bd920337bac138a06416b857569e236903ccea8a..0000000000000000000000000000000000000000 --- a/l10n/fa/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Hossein nag <h.sname@yahoo.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Persian (http://www.transifex.net/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "موسیقی" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "پخش کردن" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "توقف کوتاه" - -#: templates/music.php:5 -msgid "Previous" -msgstr "قبلی" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "بعدی" - -#: templates/music.php:7 -msgid "Mute" -msgstr "خفه کردن" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "باز گشایی صدا" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "دوباره بازرسی مجموعه ها" - -#: templates/music.php:37 -msgid "Artist" -msgstr "هنرمند" - -#: templates/music.php:38 -msgid "Album" -msgstr "آلبوم" - -#: templates/music.php:39 -msgid "Title" -msgstr "عنوان" diff --git a/l10n/fa/tasks.po b/l10n/fa/tasks.po deleted file mode 100644 index 90c396946ba5456b9cd58416484dc7a09e7c5694..0000000000000000000000000000000000000000 --- a/l10n/fa/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Mohammad Dashtizadeh <mohammad@dashtizadeh.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 19:59+0000\n" -"Last-Translator: Mohammad Dashtizadeh <mohammad@dashtizadeh.net>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "وظایف" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=بیشترین" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=متوسط" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=کمترین" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "درحال بارگزاری وظایف" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "مهم" - -#: templates/tasks.php:23 -msgid "More" -msgstr "بیشتر" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "کمتر" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "حذف" diff --git a/l10n/fa/user_migrate.po b/l10n/fa/user_migrate.po deleted file mode 100644 index dbd3fc6600f21175de37a2a76e37144943c4a708..0000000000000000000000000000000000000000 --- a/l10n/fa/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/fa/user_openid.po b/l10n/fa/user_openid.po deleted file mode 100644 index abfc372d3c7e6f75450f412c57a9da502be9da07..0000000000000000000000000000000000000000 --- a/l10n/fa/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/fi/admin_dependencies_chk.po b/l10n/fi/admin_dependencies_chk.po deleted file mode 100644 index c3fe2f98228a40ea86871c56da5942729d8bda5c..0000000000000000000000000000000000000000 --- a/l10n/fi/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/fi/admin_migrate.po b/l10n/fi/admin_migrate.po deleted file mode 100644 index 3aea7a7ce5d83b721195c82cf136e8d592a7c417..0000000000000000000000000000000000000000 --- a/l10n/fi/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/fi/bookmarks.po b/l10n/fi/bookmarks.po deleted file mode 100644 index eb0373eb8ac688240698a3d7688566a45a408175..0000000000000000000000000000000000000000 --- a/l10n/fi/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-08-09 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/fi/calendar.po b/l10n/fi/calendar.po deleted file mode 100644 index 9b551fc88c9841f4b22d69acb9f55a1b63418dea..0000000000000000000000000000000000000000 --- a/l10n/fi/calendar.po +++ /dev/null @@ -1,813 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "" - -#: lib/object.php:373 -msgid "Daily" -msgstr "" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/fi/contacts.po b/l10n/fi/contacts.po deleted file mode 100644 index da37fef417417ddc89fb7f0107d5709e2b9d075d..0000000000000000000000000000000000000000 --- a/l10n/fi/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/fi/core.po b/l10n/fi/core.po index f44a41d09a277f7723acd215d54fc49c875aa46f..b8ba81334172735da165b21ea088880b8ce79af7 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" "MIME-Version: 1.0\n" @@ -29,55 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -182,39 +183,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -238,12 +239,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -299,52 +300,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/fi/files_odfviewer.po b/l10n/fi/files_odfviewer.po deleted file mode 100644 index e64ad2105359d85ce6351ea65717d585a502ef44..0000000000000000000000000000000000000000 --- a/l10n/fi/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/fi/files_pdfviewer.po b/l10n/fi/files_pdfviewer.po deleted file mode 100644 index 7e2c2ec64827fe029f6b02605568fec2a722ec5a..0000000000000000000000000000000000000000 --- a/l10n/fi/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/fi/files_texteditor.po b/l10n/fi/files_texteditor.po deleted file mode 100644 index 07f6f6ca27bef0635830b0cd4c6a539f2789bc89..0000000000000000000000000000000000000000 --- a/l10n/fi/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/fi/gallery.po b/l10n/fi/gallery.po deleted file mode 100644 index 786216a0af1a1602f9413c695f916a92c7bf3c5b..0000000000000000000000000000000000000000 --- a/l10n/fi/gallery.po +++ /dev/null @@ -1,58 +0,0 @@ -# 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: 2012-08-09 02:02+0200\n" -"PO-Revision-Date: 2012-01-15 13:48+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/fi/impress.po b/l10n/fi/impress.po deleted file mode 100644 index 60c70f400fdbceb1cf27e9c2f5b3eacf1d392ec4..0000000000000000000000000000000000000000 --- a/l10n/fi/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/fi/media.po b/l10n/fi/media.po deleted file mode 100644 index d0e3eab9bdedd53289a09ecc7147a03df0e1117c..0000000000000000000000000000000000000000 --- a/l10n/fi/media.po +++ /dev/null @@ -1,66 +0,0 @@ -# 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: 2012-08-09 02:02+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "" - -#: templates/music.php:5 -msgid "Previous" -msgstr "" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "" - -#: templates/music.php:7 -msgid "Mute" -msgstr "" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "" - -#: templates/music.php:37 -msgid "Artist" -msgstr "" - -#: templates/music.php:38 -msgid "Album" -msgstr "" - -#: templates/music.php:39 -msgid "Title" -msgstr "" diff --git a/l10n/fi/tasks.po b/l10n/fi/tasks.po deleted file mode 100644 index 91f222dac375a105fe77cabe3166aaf5d474d241..0000000000000000000000000000000000000000 --- a/l10n/fi/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/fi/user_migrate.po b/l10n/fi/user_migrate.po deleted file mode 100644 index cd3ef8ef5a96adb3c326cf72b5e0f4cb44655b77..0000000000000000000000000000000000000000 --- a/l10n/fi/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/fi/user_openid.po b/l10n/fi/user_openid.po deleted file mode 100644 index a6f5b6048de246058d4768dede8418fe73a8e748..0000000000000000000000000000000000000000 --- a/l10n/fi/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/fi_FI/admin_dependencies_chk.po b/l10n/fi_FI/admin_dependencies_chk.po deleted file mode 100644 index a9a1eac7b0a062edf3f9fdf29b96a33a37535b45..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:01+0200\n" -"PO-Revision-Date: 2012-08-23 13:01+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "php-gd-moduuli vaaditaan, jotta kuvista on mahdollista luoda esikatselukuvia" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "php-ldap-moduuli vaaditaan, jotta yhteys ldap-palvelimeen on mahdollista" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "php-zip-moduuli vaaditaan, jotta useiden tiedostojen samanaikainen lataus on mahdollista" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "php-xml-moduuli vaaditaan, jotta tiedostojen jako webdavia käyttäen on mahdollista" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "php-pdo-moduuli tarvitaan, jotta ownCloud-tietojen tallennus tietokantaan on mahdollista" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Riippuvuuksien tila" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Käyttökohde:" diff --git a/l10n/fi_FI/admin_migrate.po b/l10n/fi_FI/admin_migrate.po deleted file mode 100644 index ce68f4275d70b8cde589a1bd160831d4b488900f..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 10:55+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Vie tämä ownCloud-istanssi" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Vie" diff --git a/l10n/fi_FI/bookmarks.po b/l10n/fi_FI/bookmarks.po deleted file mode 100644 index 70bd07ab62f1d2b18ac0f0c5e80a759bb8adb056..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:21+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Kirjanmerkit" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "nimetön" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Vedä tämä selaimesi kirjanmerkkipalkkiin ja napsauta sitä, kun haluat lisätä kirjanmerkin nopeasti:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Lue myöhemmin" - -#: templates/list.php:13 -msgid "Address" -msgstr "Osoite" - -#: templates/list.php:14 -msgid "Title" -msgstr "Otsikko" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Tunnisteet" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Tallenna kirjanmerkki" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Sinulla ei ole kirjanmerkkejä" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Kirjanmerkitsin <br />" diff --git a/l10n/fi_FI/calendar.po b/l10n/fi_FI/calendar.po deleted file mode 100644 index 6b129f3ee911b90480336a1815286f5ca63e1066..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/calendar.po +++ /dev/null @@ -1,816 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -# Johannes Korpela <>, 2012. -# <tscooter@hotmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 12:14+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Kalentereita ei löytynyt" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Tapahtumia ei löytynyt." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Väärä kalenteri" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Tiedosto ei joko sisältänyt tapahtumia tai vaihtoehtoisesti kaikki tapahtumat on jo tallennettu kalenteriisi." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Tuonti epäonnistui" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "tapahtumaa on tallennettu kalenteriisi" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Uusi aikavyöhyke:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Aikavyöhyke vaihdettu" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Virheellinen pyyntö" - -#: appinfo/app.php:37 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalenteri" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Syntymäpäivä" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "Ota yhteyttä" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Asiakkaat" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Toimittaja" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Vapaapäivät" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideat" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Matkustus" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Vuosipäivät" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Tapaamiset" - -#: lib/app.php:131 -msgid "Other" -msgstr "Muut" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Henkilökohtainen" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projektit" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Kysymykset" - -#: lib/app.php:135 -msgid "Work" -msgstr "Työ" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "nimetön" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Uusi kalenteri" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Ei toistoa" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Päivittäin" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Viikottain" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Arkipäivisin" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Joka toinen viikko" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Kuukausittain" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Vuosittain" - -#: lib/object.php:388 -msgid "never" -msgstr "Ei koskaan" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Maanantai" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Tiistai" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Keskiviikko" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Torstai" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Perjantai" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Lauantai" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Sunnuntai" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "ensimmäinen" - -#: lib/object.php:429 -msgid "second" -msgstr "toinen" - -#: lib/object.php:430 -msgid "third" -msgstr "kolmas" - -#: lib/object.php:431 -msgid "fourth" -msgstr "neljäs" - -#: lib/object.php:432 -msgid "fifth" -msgstr "viides" - -#: lib/object.php:433 -msgid "last" -msgstr "viimeinen" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Tammikuu" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Helmikuu" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Maaliskuu" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Huhtikuu" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Toukokuu" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Kesäkuu" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Heinäkuu" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Elokuu" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Syyskuu" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Lokakuu" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Marraskuu" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Joulukuu" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Päivämäärä" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Su" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Ma" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Ti" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Ke" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "To" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Pe" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "La" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Tammi" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Helmi" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Maalis" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Huhti" - -#: templates/calendar.php:8 -msgid "May." -msgstr "Touko" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Kesä" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Heinä" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Elo" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Syys" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Loka" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Marras" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Joulu" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Koko päivä" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Puuttuvat kentät" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Otsikko" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Tapahtuma päättyy ennen alkamistaan" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Tapahtui tietokantavirhe" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Viikko" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Kuukausi" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Tänään" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Asetukset" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Omat kalenterisi" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav-linkki" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Jaetut kalenterit" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Ei jaettuja kalentereita" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Jaa kalenteri" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Lataa" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Muokkaa" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Poista" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "kanssasi jaettu" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Uusi kalenteri" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Muokkaa kalenteria" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Kalenterin nimi" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiivinen" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalenterin väri" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Tallenna" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Talleta" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Peru" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Muokkaa tapahtumaa" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Vie" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Tapahtumatiedot" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Toisto" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Hälytys" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Osallistujat" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Jaa" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Tapahtuman otsikko" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Luokka" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Erota luokat pilkuilla" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Muokkaa luokkia" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Koko päivän tapahtuma" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Alkaa" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Päättyy" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Tarkemmat asetukset" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Sijainti" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Tapahtuman sijainti" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Kuvaus" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Tapahtuman kuvaus" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Toisto" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Valitse viikonpäivät" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Valitse päivät" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Valitse kuukaudet" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Valitse viikot" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervalli" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "luo uusi kalenteri" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Tuo kalenteritiedosto" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Valitse kalenteri" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Uuden kalenterin nimi" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Samalla nimellä on jo olemassa kalenteri. Jos jatkat kaikesta huolimatta, kalenterit yhdistetään." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Tuo" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Sulje ikkuna" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Luo uusi tapahtuma" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Avaa tapahtuma" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Luokkia ei ole valittu" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "Yleiset" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Aikavyöhyke" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Päivitä aikavyöhykkeet automaattisesti" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Ajan näyttömuoto" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24 tuntia" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12 tuntia" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Viikon alkamispäivä" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Kalenterin CalDAV-synkronointiosoitteet" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Ensisijainen osoite (Kontact ja muut vastaavat)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Käyttäjät" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "valitse käyttäjät" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Muoktattava" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Ryhmät" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "valitse ryhmät" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "aseta julkiseksi" diff --git a/l10n/fi_FI/contacts.po b/l10n/fi_FI/contacts.po deleted file mode 100644 index a80843bf7e87562c8c289df146f001cba1cddd82..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/contacts.po +++ /dev/null @@ -1,956 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jesse Jaara <jesse.jaara@gmail.com>, 2012. -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -# Johannes Korpela <>, 2012. -# <tscooter@hotmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Virhe päivitettäessä osoitekirjaa." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Virhe asettaessa tarkistussummaa." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Luokkia ei ole valittu poistettavaksi." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Osoitekirjoja ei löytynyt." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Yhteystietoja ei löytynyt." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Virhe yhteystietoa lisättäessä." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Tyhjää ominaisuutta ei voi lisätä." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Vähintään yksi osoitekenttä tulee täyttää." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "vCardin tiedot eivät kelpaa. Lataa sivu uudelleen." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Virhe jäsennettäessä vCardia tunnisteelle: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Virhe tallennettaessa tilapäistiedostoa." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Kuvan polkua ei annettu." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Tiedostoa ei ole olemassa:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Virhe kuvaa ladatessa." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Virhe yhteystietoa tallennettaessa." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Virhe asettaessa kuvaa uuteen kokoon" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Virhe rajatessa kuvaa" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Virhe luotaessa väliaikaista kuvaa" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Ei virhettä, tiedosto lähetettiin onnistuneesti" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Lähetetyn tiedoston koko ylittää upload_max_filesize-asetuksen arvon php.ini-tiedostossa" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Lähetetty tiedosto lähetettiin vain osittain" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Tiedostoa ei lähetetty" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Tilapäiskansio puuttuu" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Väliaikaiskuvan tallennus epäonnistui:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Väliaikaiskuvan lataus epäonnistui:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Yhteystiedot" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Virhe" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Muokkaa nimeä" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Tiedostoja ei ole valittu lähetettäväksi." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Virhe profiilikuvaa ladatessa." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Valitse tyyppi" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Jotkin yhteystiedot on merkitty poistettaviksi, mutta niitä ei ole vielä poistettu. Odota hetki, että kyseiset yhteystiedot poistetaan." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Haluatko yhdistää nämä osoitekirjat?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Tulos: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " tuotu, " - -#: js/loader.js:49 -msgid " failed." -msgstr " epäonnistui." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Näyttönimi ei voi olla tyhjä." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Osoitekirjaa ei löytynyt:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Tämä ei ole osoitekirjasi." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Yhteystietoa ei löytynyt." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "Google Talk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Työ" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Koti" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Muu" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobiili" - -#: lib/app.php:203 -msgid "Text" -msgstr "Teksti" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Ääni" - -#: lib/app.php:205 -msgid "Message" -msgstr "Viesti" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faksi" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Hakulaite" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Syntymäpäivä" - -#: lib/app.php:253 -msgid "Business" -msgstr "Työ" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Kysymykset" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Henkilön {name} syntymäpäivä" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Yhteystieto" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Lisää yhteystieto" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Tuo" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Asetukset" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Osoitekirjat" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Sulje" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Pikanäppäimet" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Seuraava yhteystieto luettelossa" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Edellinen yhteystieto luettelossa" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Seuraava osoitekirja" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Edellinen osoitekirja" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Toiminnot" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Päivitä yhteystietoluettelo" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Lisää uusi yhteystieto" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Lisää uusi osoitekirja" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Poista nykyinen yhteystieto" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Poista nykyinen valokuva" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Muokkaa nykyistä valokuvaa" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Lähetä uusi valokuva" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Valitse valokuva ownCloudista" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Muokkaa nimitietoja" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisaatio" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Poista" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Kutsumanimi" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Anna kutsumanimi" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Verkkosivu" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Siirry verkkosivulle" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Ryhmät" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Erota ryhmät pilkuilla" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Muokkaa ryhmiä" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Ensisijainen" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Anna kelvollinen sähköpostiosoite." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Anna sähköpostiosoite" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Lähetä sähköpostia" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Poista sähköpostiosoite" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Anna puhelinnumero" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Poista puhelinnumero" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Pikaviestin" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Näytä kartalla" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Muokkaa osoitetietoja" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Lisää huomiot tähän." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Lisää kenttä" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Puhelin" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Sähköposti" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Osoite" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Huomio" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Lataa yhteystieto" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Poista yhteystieto" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Väliaikainen kuva on poistettu välimuistista." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Muokkaa osoitetta" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tyyppi" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postilokero" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Katuosoite" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Katu ja numero" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Laajennettu" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Asunnon numero jne." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Paikkakunta" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Alue" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postinumero" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Postinumero" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Maa" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Osoitekirja" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Etunimi" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Lisänimet" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Sukunimi" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Tuo yhteystiedon sisältävä tiedosto" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Valitse osoitekirja" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "luo uusi osoitekirja" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Uuden osoitekirjan nimi" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Tuodaan yhteystietoja" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Osoitekirjassasi ei ole yhteystietoja." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Lisää yhteystieto" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Valitse osoitekirjat" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Anna nimi" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Anna kuvaus" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV-synkronointiosoitteet" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Näytä CardDav-linkki" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Näytä vain luku -muodossa oleva VCF-linkki" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Jaa" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Lataa" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Muokkaa" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Uusi osoitekirja" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nimi" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Kuvaus" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Tallenna" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Peru" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Lisää..." diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 1d64256ea079814efc2ce115a229c849ed54c009..313e7668c11ac490ad55496f443682a1372a966d 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-12 02:04+0200\n" -"PO-Revision-Date: 2012-10-11 18:01+0000\n" -"Last-Translator: variaatiox <ari.takalo@iki.fi>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\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" @@ -36,55 +36,55 @@ msgstr "Ei lisättävää luokkaa?" msgid "This category already exists: " msgstr "Tämä luokka on jo olemassa: " -#: js/js.js:229 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Asetukset" -#: js/js.js:661 +#: js/js.js:670 msgid "January" msgstr "Tammikuu" -#: js/js.js:661 +#: js/js.js:670 msgid "February" msgstr "Helmikuu" -#: js/js.js:661 +#: js/js.js:670 msgid "March" msgstr "Maaliskuu" -#: js/js.js:661 +#: js/js.js:670 msgid "April" msgstr "Huhtikuu" -#: js/js.js:661 +#: js/js.js:670 msgid "May" msgstr "Toukokuu" -#: js/js.js:661 +#: js/js.js:670 msgid "June" msgstr "Kesäkuu" -#: js/js.js:662 +#: js/js.js:671 msgid "July" msgstr "Heinäkuu" -#: js/js.js:662 +#: js/js.js:671 msgid "August" msgstr "Elokuu" -#: js/js.js:662 +#: js/js.js:671 msgid "September" msgstr "Syyskuu" -#: js/js.js:662 +#: js/js.js:671 msgid "October" msgstr "Lokakuu" -#: js/js.js:662 +#: js/js.js:671 msgid "November" msgstr "Marraskuu" -#: js/js.js:662 +#: js/js.js:671 msgid "December" msgstr "Joulukuu" @@ -153,7 +153,8 @@ msgstr "Jaa linkillä" msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Salasana" @@ -245,8 +246,8 @@ msgstr "Tilattu" msgid "Login failed!" msgstr "Kirjautuminen epäonnistui!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Käyttäjätunnus" @@ -306,48 +307,73 @@ msgstr "Muokkaa luokkia" msgid "Add" msgstr "Lisää" +#: 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 "Luo <strong>ylläpitäjän tunnus</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Lisäasetukset" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datakansio" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Muokkaa tietokantaa" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "käytetään" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Viimeistele asennus" @@ -359,15 +385,29 @@ msgstr "verkkopalvelut hallinnassasi" msgid "Log out" msgstr "Kirjaudu ulos" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "muista" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Kirjaudu sisään" @@ -382,3 +422,17 @@ msgstr "edellinen" #: templates/part.pagenavi.php:20 msgid "next" msgstr "seuraava" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/fi_FI/files_odfviewer.po b/l10n/fi_FI/files_odfviewer.po deleted file mode 100644 index b6ab6054fe6eafec4615e4af46ebba11eae6511f..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/fi_FI/files_pdfviewer.po b/l10n/fi_FI/files_pdfviewer.po deleted file mode 100644 index cdccaec4c78f2fb32bf4aada216fafcd0dfd0056..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/fi_FI/files_texteditor.po b/l10n/fi_FI/files_texteditor.po deleted file mode 100644 index 69c3672db6f2d0a3207bc57137a841916767cb7f..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/fi_FI/gallery.po b/l10n/fi_FI/gallery.po deleted file mode 100644 index 275d7d08abee5e35db3637e37647cff28a3b8e4a..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/gallery.po +++ /dev/null @@ -1,60 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jesse Jaara <jesse.jaara@gmail.com>, 2012. -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 10:43+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Kuvat" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Jaa galleria" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Virhe: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Sisäinen virhe" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Diaesitys" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Takaisin" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Poiston vahvistus" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Tahdotko poistaa albumin" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Muuta albumin nimeä" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Uuden albumin nimi" diff --git a/l10n/fi_FI/impress.po b/l10n/fi_FI/impress.po deleted file mode 100644 index ccf18fac855c5425a21d2fcdfffa1c76cee7bd3a..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/fi_FI/media.po b/l10n/fi_FI/media.po deleted file mode 100644 index 86efa19e5d3e915fd1de8e8b7f5514996b873e1b..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jesse Jaara <jesse.jaara@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Finnish (Finland) (http://www.transifex.net/projects/p/owncloud/language/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musiikki" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Toista" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Tauko" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Edellinen" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Seuraava" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Mykistä" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Palauta äänet" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Etsi uusia kappaleita" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Esittäjä" - -#: templates/music.php:38 -msgid "Album" -msgstr "Albumi" - -#: templates/music.php:39 -msgid "Title" -msgstr "Nimi" diff --git a/l10n/fi_FI/tasks.po b/l10n/fi_FI/tasks.po deleted file mode 100644 index b8857baee6d5415ed0951a39d82290ccf9483707..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 13:23+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Virheellinen päivä tai aika" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Tehtävät" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Ei luokkaa" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Määrittelemätön" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=korkein" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=keskitaso" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=matalin" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Tyhjä yhteenveto" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Virheellinen prioriteetti" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Lisää tehtävä" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Ladataan tehtäviä..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Tärkeä" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Enemmän" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Vähemmän" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Poista" diff --git a/l10n/fi_FI/user_migrate.po b/l10n/fi_FI/user_migrate.po deleted file mode 100644 index b0ab6824519f903092fd8228d1b3209b0d9d6fab..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 11:06+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Vie" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Jokin meni pieleen vientiä suorittaessa" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Tapahtui virhe" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Vie käyttäjätilisi" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Tämä luo ownCloud-käyttäjätilisi sisältävän pakatun tiedoston." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Tuo käyttäjätili" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Tuo" diff --git a/l10n/fi_FI/user_openid.po b/l10n/fi_FI/user_openid.po deleted file mode 100644 index 36900815c79bdeab7a3f02fae8bd6579e52a1f59..0000000000000000000000000000000000000000 --- a/l10n/fi_FI/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Jiri Grönroos <jiri.gronroos@iki.fi>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 11:37+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identiteetti: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Alue: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Käyttäjä: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Kirjaudu" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Virhe: <b>Käyttäjää ei valittu" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/fr/admin_dependencies_chk.po b/l10n/fr/admin_dependencies_chk.po deleted file mode 100644 index 36480849becb51b093e4c560e5c5fec2178e236b..0000000000000000000000000000000000000000 --- a/l10n/fr/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Romain DEP. <rom1dep@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 15:59+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Le module php-json est requis pour l'inter-communication de nombreux modules." - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Le module php-curl est requis afin de rapatrier le titre des pages lorsque vous ajoutez un marque-pages." - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Le module php-gd est requis afin de permettre la création d'aperçus pour vos images." - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Le module php-ldap est requis afin de permettre la connexion à votre serveur ldap." - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Le module php-zip est requis pour le téléchargement simultané de plusieurs fichiers." - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Le module php-mb_multibyte est requis pour une gestion correcte des encodages." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Le module php-ctype est requis pour la validation des données." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Le module php-xml est requis pour le partage de fichiers via webdav." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "La directive allow_url_fopen de votre fichier php.ini doit être à la valeur 1 afin de permettre le rapatriement de la base de connaissance depuis les serveurs OCS." - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "le module php-pdo est requis pour le stockage des données ownCloud en base de données." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Statut des dépendances" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Utilisé par :" diff --git a/l10n/fr/admin_migrate.po b/l10n/fr/admin_migrate.po deleted file mode 100644 index a3f34310cc100595880d6a0850669602f90c9455..0000000000000000000000000000000000000000 --- a/l10n/fr/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Romain DEP. <rom1dep@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 15:51+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Exporter cette instance ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Ceci va créer une archive compressée contenant les données de cette instance ownCloud.\n Veuillez choisir le type d'export :" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Exporter" diff --git a/l10n/fr/bookmarks.po b/l10n/fr/bookmarks.po deleted file mode 100644 index f3f172409f29d966efe1141629cb8a53015bd480..0000000000000000000000000000000000000000 --- a/l10n/fr/bookmarks.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-31 00:26+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Favoris" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "sans titre" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Glissez ceci dans les favoris de votre navigateur, et cliquer dessus lorsque vous souhaitez ajouter la page en cours à vos marques-pages :" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Lire plus tard" - -#: templates/list.php:13 -msgid "Address" -msgstr "Adresse" - -#: templates/list.php:14 -msgid "Title" -msgstr "Titre" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Étiquettes" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Sauvegarder le favori" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Vous n'avez aucun favori" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Gestionnaire de favoris <br />" diff --git a/l10n/fr/calendar.po b/l10n/fr/calendar.po deleted file mode 100644 index c69485641c7de9f4076498925a397acee1c69521..0000000000000000000000000000000000000000 --- a/l10n/fr/calendar.po +++ /dev/null @@ -1,822 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <fboulogne@april.org>, 2011. -# <gp4004@arghh.org>, 2011. -# Jan-Christoph Borchardt <jan@unhosted.org>, 2011. -# Nahir Mohamed <nahirmoha@gmail.com>, 2012. -# Nicolas <boolet.is@free.fr>, 2012. -# <pierreamiel.giraud@gmail.com>, 2012. -# <rom1dep@gmail.com>, 2011, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. -# Yann Yann <chezyann@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Tous les calendriers ne sont pas mis en cache" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Tout semble être en cache" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Aucun calendrier n'a été trouvé." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Aucun événement n'a été trouvé." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Mauvais calendrier" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Soit le fichier ne contient aucun événement soit tous les événements sont déjà enregistrés dans votre calendrier." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "Les événements ont été enregistrés dans le nouveau calendrier" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Échec de l'import" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "Les événements ont été enregistrés dans votre calendrier" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nouveau fuseau horaire :" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Fuseau horaire modifié" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Requête invalide" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendrier" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd d/M" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd d/M" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, d MMM, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Anniversaire" - -#: lib/app.php:122 -msgid "Business" -msgstr "Professionnel" - -#: lib/app.php:123 -msgid "Call" -msgstr "Appel" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clientèle" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Livraison" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Vacances" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idées" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Déplacement" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubilé" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Meeting" - -#: lib/app.php:131 -msgid "Other" -msgstr "Autre" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Personnel" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projets" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Questions" - -#: lib/app.php:135 -msgid "Work" -msgstr "Travail" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "par" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "sans-nom" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nouveau Calendrier" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Pas de répétition" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Tous les jours" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Hebdomadaire" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Quotidien" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Bi-hebdomadaire" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mensuel" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Annuel" - -#: lib/object.php:388 -msgid "never" -msgstr "jamais" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "par occurrences" - -#: lib/object.php:390 -msgid "by date" -msgstr "par date" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "par jour du mois" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "par jour de la semaine" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Lundi" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Mardi" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Mercredi" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Jeudi" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Vendredi" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Samedi" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Dimanche" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "événements du mois par semaine" - -#: lib/object.php:428 -msgid "first" -msgstr "premier" - -#: lib/object.php:429 -msgid "second" -msgstr "deuxième" - -#: lib/object.php:430 -msgid "third" -msgstr "troisième" - -#: lib/object.php:431 -msgid "fourth" -msgstr "quatrième" - -#: lib/object.php:432 -msgid "fifth" -msgstr "cinquième" - -#: lib/object.php:433 -msgid "last" -msgstr "dernier" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Janvier" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Février" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Mars" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Avril" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mai" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juin" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juillet" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Août" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Septembre" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Octobre" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Novembre" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Décembre" - -#: lib/object.php:488 -msgid "by events date" -msgstr "par date d’événements" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "par jour(s) de l'année" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "par numéro de semaine(s)" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "par jour et mois" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Date" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Dim." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Lun." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Mar." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Mer." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Jeu" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Ven." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Sam." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Fév." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mars" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Avr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Mai" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Juin" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Juil." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Août" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Sep." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Oct." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Déc." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Journée entière" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Champs manquants" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titre" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "De la date" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "De l'heure" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "A la date" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "A l'heure" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "L'évènement s'est terminé avant qu'il ne commence" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Il y a eu un échec dans la base de donnée" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Semaine" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mois" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Liste" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Aujourd'hui" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Vos calendriers" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Lien CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Calendriers partagés" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Aucun calendrier partagé" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Partager le calendrier" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Télécharger" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Éditer" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Supprimer" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "partagé avec vous par" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nouveau calendrier" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Éditer le calendrier" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Nom d'affichage" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Actif" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Couleur du calendrier" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Sauvegarder" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Soumettre" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Annuler" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Éditer un événement" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exporter" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Événement" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Occurences" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarmes" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Participants" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Partage" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Titre de l'événement" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Catégorie" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Séparer les catégories par des virgules" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Modifier les catégories" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Journée entière" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "De" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "À" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Options avancées" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Emplacement" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Emplacement de l'événement" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Description" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Description de l'événement" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Répétition" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avancé" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Sélection des jours de la semaine" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Sélection des jours" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "et les événements de l'année par jour." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "et les événements du mois par jour." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Sélection des mois" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Sélection des semaines" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "et les événements de l'année par semaine." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervalle" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Fin" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "occurrences" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Créer un nouveau calendrier" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importer un fichier de calendriers" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Veuillez sélectionner un calendrier" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nom pour le nouveau calendrier" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Choisissez un nom disponible !" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Un calendrier de ce nom existe déjà. Si vous choisissez de continuer les calendriers seront fusionnés." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importer" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Fermer la fenêtre" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Créer un nouvel événement" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Voir un événement" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Aucune catégorie sélectionnée" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "de" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "à" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Fuseau horaire" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Cache" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Nettoyer le cache des événements répétitifs" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Adresses de synchronisation des calendriers CalDAV" - -#: templates/settings.php:87 -msgid "more info" -msgstr "plus d'infos" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Adresses principales (Kontact et assimilés)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "lien(s) iCalendar en lecture seule" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Utilisateurs" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "sélectionner les utilisateurs" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Modifiable" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Groupes" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "sélectionner les groupes" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "rendre public" diff --git a/l10n/fr/contacts.po b/l10n/fr/contacts.po deleted file mode 100644 index 3415f7b733aa9c090049fa64e6d66ae71a4c89d7..0000000000000000000000000000000000000000 --- a/l10n/fr/contacts.po +++ /dev/null @@ -1,964 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Borjan Tchakaloff <borjan@tchaka.fr>, 2012. -# Cyril Glapa <kyriog@gmail.com>, 2012. -# <fboulogne@april.org>, 2011. -# <gp4004@arghh.org>, 2011, 2012. -# <guiguidu31300@gmail.com>, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# <mathieu.payrol@gmail.com>, 2012. -# Nahir Mohamed <nahirmoha@gmail.com>, 2012. -# Nicolas <boolet.is@free.fr>, 2012. -# Robert Di Rosa <>, 2012. -# <rom1dep@gmail.com>, 2011, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 13:55+0000\n" -"Last-Translator: MathieuP <mathieu.payrol@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Des erreurs se sont produites lors de l'activation/désactivation du carnet d'adresses." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "L'ID n'est pas défini." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Impossible de mettre à jour le carnet d'adresses avec un nom vide." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Erreur lors de la mise à jour du carnet d'adresses." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Aucun ID fourni" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Erreur lors du paramétrage du hachage." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Pas de catégories sélectionnées pour la suppression." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Pas de carnet d'adresses trouvé." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Aucun contact trouvé." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Une erreur s'est produite lors de l'ajout du contact." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "Le champ Nom n'est pas défini." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Impossible de lire le contact :" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Impossible d'ajouter un champ vide." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Au moins un des champs d'adresses doit être complété." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Ajout d'une propriété en double:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Paramètre de Messagerie Instantanée manquants." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "Messagerie Instantanée inconnue" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Les informations relatives à cette vCard sont incorrectes. Veuillez recharger la page." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "ID manquant" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Erreur lors de l'analyse du VCard pour l'ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "L'hachage n'est pas défini." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "L'informatiion à propos de la vCard est incorrect. Merci de rafraichir la page:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Quelque chose est FUBAR." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Aucun ID de contact envoyé" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Erreur de lecture de la photo du contact." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Erreur de sauvegarde du fichier temporaire." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "La photo chargée est invalide." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "L'ID du contact est manquant." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Le chemin de la photo n'a pas été envoyé." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Fichier inexistant:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Erreur lors du chargement de l'image." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Erreur lors de l'obtention de l'objet contact" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Erreur lors de l'obtention des propriétés de la photo" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Erreur de sauvegarde du contact" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Erreur de redimensionnement de l'image" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Erreur lors du rognage de l'image" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Erreur de création de l'image temporaire" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Erreur pour trouver l'image :" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Erreur lors de l'envoi des contacts vers le stockage." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Il n'y a pas d'erreur, le fichier a été envoyé avec succes." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Le fichier envoyé dépasse la directive upload_max_filesize dans php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Le fichier envoyé dépasse la directive MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Le fichier envoyé n'a été que partiellement envoyé." - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Pas de fichier envoyé." - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Absence de dossier temporaire." - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Impossible de sauvegarder l'image temporaire :" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Impossible de charger l'image temporaire :" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Aucun fichier n'a été chargé. Erreur inconnue" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Contacts" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Désolé cette fonctionnalité n'a pas encore été implémentée" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Pas encore implémenté" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Impossible de trouver une adresse valide." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Erreur" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "Vous n'avez pas l'autorisation d'ajouter des contacts à" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Veuillez sélectionner l'un de vos carnets d'adresses." - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Erreur de permission" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Cette valeur ne doit pas être vide" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Impossible de sérialiser les éléments." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' a été appelé sans type d'arguments. Merci de rapporter un bug à bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Éditer le nom" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Aucun fichiers choisis pour être chargés" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Le fichier que vous tentez de charger dépasse la taille maximum de fichier autorisée sur ce serveur." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Erreur pendant le chargement de la photo de profil." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Sélectionner un type" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Certains contacts sont marqués pour être supprimés, mais ne le sont pas encore. Veuillez attendre que l'opération se termine." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Voulez-vous fusionner ces carnets d'adresses ?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Résultat :" - -#: js/loader.js:49 -msgid " imported, " -msgstr "importé," - -#: js/loader.js:49 -msgid " failed." -msgstr "échoué." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Le nom d'affichage ne peut pas être vide." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Carnet d'adresse introuvable : " - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Ce n'est pas votre carnet d'adresses." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Ce contact n'a pu être trouvé." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "Messagerie Instantanée" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Travail" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Domicile" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Autre" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobile" - -#: lib/app.php:203 -msgid "Text" -msgstr "Texte" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voix" - -#: lib/app.php:205 -msgid "Message" -msgstr "Message" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Vidéo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Bipeur" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Anniversaire" - -#: lib/app.php:253 -msgid "Business" -msgstr "Business" - -#: lib/app.php:254 -msgid "Call" -msgstr "Appel" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Clients" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Livreur" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Vacances" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Idées" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Trajet" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubilé" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Rendez-vous" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Personnel" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projets" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Questions" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Anniversaire de {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contact" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "Vous n'avez pas l'autorisation de modifier ce contact." - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "Vous n'avez pas l'autorisation de supprimer ce contact." - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Ajouter un Contact" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importer" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Paramètres" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Carnets d'adresses" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Fermer" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Raccourcis clavier" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navigation" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Contact suivant dans la liste" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Contact précédent dans la liste" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Dé/Replier le carnet d'adresses courant" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Carnet d'adresses suivant" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Carnet d'adresses précédent" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Actions" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Actualiser la liste des contacts" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Ajouter un nouveau contact" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Ajouter un nouveau carnet d'adresses" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Effacer le contact sélectionné" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Glisser une photo pour l'envoi" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Supprimer la photo actuelle" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Editer la photo actuelle" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Envoyer une nouvelle photo" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Sélectionner une photo depuis ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formatage personnalisé, Nom court, Nom complet, Inversé, Inversé avec virgule" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Editer les noms" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Société" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Supprimer" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Surnom" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Entrer un surnom" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Page web" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Allez à la page web" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "jj-mm-aaaa" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Groupes" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Séparer les groupes avec des virgules" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Editer les groupes" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Préféré" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Merci d'entrer une adresse e-mail valide." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Entrer une adresse e-mail" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Envoyer à l'adresse" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Supprimer l'adresse e-mail" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Entrer un numéro de téléphone" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Supprimer le numéro de téléphone" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Instant Messenger" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Supprimer la Messagerie Instantanée" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Voir sur une carte" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Editer les adresses" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Ajouter des notes ici." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Ajouter un champ." - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Téléphone" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Messagerie instantanée" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresse" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Note" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Télécharger le contact" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Supprimer le contact" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "L'image temporaire a été supprimée du cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Editer l'adresse" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Type" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Boîte postale" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Adresse postale" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Rue et numéro" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Étendu" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Numéro d'appartement, etc." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Ville" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Région" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Ex: état ou province" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Code postal" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Code postal" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Pays" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Carnet d'adresses" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Préfixe hon." - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Mlle" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Mme" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "M." - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Mme" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Prénom" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Nom supplémentaires" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Nom de famille" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Suffixes hon." - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importer un fichier de contacts" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Choisissez le carnet d'adresses SVP" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Créer un nouveau carnet d'adresses" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nom du nouveau carnet d'adresses" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importation des contacts" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Il n'y a pas de contact dans votre carnet d'adresses." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Ajouter un contact" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Choix du carnet d'adresses" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Saisissez le nom" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Saisissez une description" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Synchronisation des contacts CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "Plus d'infos" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Adresse principale" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Afficher le lien CardDav" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Afficher les liens VCF en lecture seule" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Partager" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Télécharger" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Modifier" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nouveau Carnet d'adresses" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nom" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Description" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Sauvegarder" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Annuler" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Plus…" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index aec436ebe736ac50c678937d82de21cb9aac73a3..1c412d0c968ddee39724e9c4a48e2c0503c95e21 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -4,6 +4,7 @@ # # Translators: # Christophe Lherieau <skimpax@gmail.com>, 2012. +# <fkhannouf@me.com>, 2012. # <florentin.lemoal@gmail.com>, 2012. # Guillaume Paumier <guillom.pom@gmail.com>, 2012. # Nahir Mohamed <nahirmoha@gmail.com>, 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-10-01 02:04+0200\n" -"PO-Revision-Date: 2012-09-30 15:52+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 15:01+0000\n" +"Last-Translator: fkhannouf <fkhannouf@me.com>\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" @@ -36,55 +37,55 @@ msgstr "Pas de catégorie à ajouter ?" msgid "This category already exists: " msgstr "Cette catégorie existe déjà : " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Paramètres" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "janvier" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "février" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "mars" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "avril" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "mai" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "juin" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "juillet" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "août" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "septembre" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "octobre" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "novembre" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "décembre" @@ -112,8 +113,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Aucune catégorie sélectionnée pour suppression" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Erreur" @@ -153,7 +154,8 @@ msgstr "Partager via lien" msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Mot de passe" @@ -189,39 +191,39 @@ msgstr "avec" msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "créer" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "mettre à jour" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "supprimer" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "partager" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Un erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" @@ -245,8 +247,8 @@ msgstr "Demande envoyée" msgid "Login failed!" msgstr "Nom d'utilisateur ou e-mail invalide" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nom d'utilisateur" @@ -306,52 +308,77 @@ msgstr "Modifier les catégories" msgid "Add" msgstr "Ajouter" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Avertissement de sécutité" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL" + +#: 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 "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." + +#: 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 "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." + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Créer un <strong>compte administrateur</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avancé" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "services web sous votre contrôle" @@ -359,15 +386,29 @@ msgstr "services web sous votre contrôle" msgid "Log out" msgstr "Se déconnecter" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "Connexion automatique rejetée !" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte." + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Connexion" @@ -382,3 +423,17 @@ msgstr "précédent" #: templates/part.pagenavi.php:20 msgid "next" msgstr "suivant" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "Alerte de sécurité !" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "Veuillez vérifier votre mot de passe. <br/>Par sécurité il vous sera occasionnellement demandé d'entrer votre mot de passe de nouveau." + +#: templates/verify.php:16 +msgid "Verify" +msgstr "Vérification" diff --git a/l10n/fr/files_odfviewer.po b/l10n/fr/files_odfviewer.po deleted file mode 100644 index 43bbf42f0f8e5bdf99375222e23d003a6c493ab2..0000000000000000000000000000000000000000 --- a/l10n/fr/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/fr/files_pdfviewer.po b/l10n/fr/files_pdfviewer.po deleted file mode 100644 index ce9bb24515ad87595d8df7f33d3c642885455306..0000000000000000000000000000000000000000 --- a/l10n/fr/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/fr/files_texteditor.po b/l10n/fr/files_texteditor.po deleted file mode 100644 index 3b4cb02d2c13e112d83da357e538e522bd997dce..0000000000000000000000000000000000000000 --- a/l10n/fr/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/fr/gallery.po b/l10n/fr/gallery.po deleted file mode 100644 index ea45c42e53b45c76213ff7075755c483ff5a0558..0000000000000000000000000000000000000000 --- a/l10n/fr/gallery.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Nahir Mohamed <nahirmoha@gmail.com>, 2012. -# <rom1dep@gmail.com>, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. -# Soul Kim <warlock.rf@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-07-26 09:05+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Images" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Partager la galerie" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Erreur :" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Erreur interne" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Diaporama" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Retour" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Enlever la confirmation" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Voulez-vous supprimer l'album" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Modifier le nom de l'album" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nouveau nom de l'album" diff --git a/l10n/fr/impress.po b/l10n/fr/impress.po deleted file mode 100644 index 3323106c6ef9b63a25c47d4a088e5fc9ceb87fae..0000000000000000000000000000000000000000 --- a/l10n/fr/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/fr/media.po b/l10n/fr/media.po deleted file mode 100644 index 9f757f487cffc2aef79b91485ae3a3fbba3b12f8..0000000000000000000000000000000000000000 --- a/l10n/fr/media.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <mathieu.payrol@gmail.com>, 2012. -# Nahir Mohamed <nahirmoha@gmail.com>, 2012. -# <rom1dep@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 11:57+0000\n" -"Last-Translator: MathieuP <mathieu.payrol@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "Musique" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "Ajouter l'album à la playlist" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Lire" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pause" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Précédent" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Suivant" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Muet" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Audible" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Réanalyser la Collection" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artiste" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titre" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ef847eb487893de367c87827f53cc2b0a18b2b77..881d3febfb9b2023b672e9c4eec0978e94ef6717 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-09 02:03+0200\n" -"PO-Revision-Date: 2012-10-09 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-15 15:26+0000\n" +"Last-Translator: Romain DEP. <rom1dep@gmail.com>\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" @@ -33,16 +33,11 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 -msgid "Authentication error" -msgstr "Erreur d'authentification" - -#: ajax/creategroup.php:19 +#: ajax/creategroup.php:12 msgid "Group already exists" msgstr "Ce groupe existe déjà" -#: ajax/creategroup.php:28 +#: ajax/creategroup.php:21 msgid "Unable to add group" msgstr "Impossible d'ajouter le groupe" @@ -70,7 +65,11 @@ msgstr "Requête invalide" msgid "Unable to delete group" msgstr "Impossible de supprimer le groupe" -#: ajax/removeuser.php:22 +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "Erreur d'authentification" + +#: ajax/removeuser.php:27 msgid "Unable to delete user" msgstr "Impossible de supprimer l'utilisateur" @@ -100,7 +99,7 @@ msgstr "Activer" msgid "Saving..." msgstr "Sauvegarde..." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "Français" @@ -197,7 +196,7 @@ msgstr "Ajoutez votre application" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "Plus d'applications…" #: templates/apps.php:27 msgid "Select an App" diff --git a/l10n/fr/tasks.po b/l10n/fr/tasks.po deleted file mode 100644 index 8bb451354c8e6e8a5c9759865d7e081bcbee888c..0000000000000000000000000000000000000000 --- a/l10n/fr/tasks.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <mathieu.payrol@gmail.com>, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. -# Xavier BOUTEVILLAIN <xavier.boutevillain@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 12:01+0000\n" -"Last-Translator: MathieuP <mathieu.payrol@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "date/heure invalide" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Tâches" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Sans catégorie" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Non spécifié" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=le plus important" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=importance moyenne" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=le moins important" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Résumé vide" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Pourcentage d'achèvement invalide" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Priorité invalide" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Ajouter une tâche" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Echéance tâche" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Liste tâche" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Tâche réalisée" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Lieu" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Priorité" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Etiquette tâche" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Chargement des tâches…" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Important" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Plus" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Moins" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Supprimer" diff --git a/l10n/fr/user_migrate.po b/l10n/fr/user_migrate.po deleted file mode 100644 index 2b2802bbc837508dda933a7fed4e21280e264c9a..0000000000000000000000000000000000000000 --- a/l10n/fr/user_migrate.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <mathieu.payrol@gmail.com>, 2012. -# Romain DEP. <rom1dep@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 12:00+0000\n" -"Last-Translator: MathieuP <mathieu.payrol@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Exporter" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Une erreur s'est produite pendant la génération du fichier d'export" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Une erreur s'est produite" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Exportez votre compte utilisateur" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Cette action va créer une archive compressée qui contiendra les données de votre compte ownCloud." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Importer un compte utilisateur" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "Archive Zip de l'utilisateur" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Importer" diff --git a/l10n/fr/user_openid.po b/l10n/fr/user_openid.po deleted file mode 100644 index df7952aa7ccea706eabc4198adf99b6c075ad129..0000000000000000000000000000000000000000 --- a/l10n/fr/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Romain DEP. <rom1dep@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 16:05+0000\n" -"Last-Translator: Romain DEP. <rom1dep@gmail.com>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Ce serveur est un point d'accès OpenID. Pour plus d'informations, veuillez consulter" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identité : <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Domaine : <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Utilisateur : <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Connexion" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Erreur : <b>Aucun nom d'utilisateur n'a été saisi" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "vous pouvez vous authentifier sur d'autres sites grâce à cette adresse" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Fournisseur d'identité OpenID autorisé" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Votre adresse Wordpress, Identi.ca, …" diff --git a/l10n/gl/admin_dependencies_chk.po b/l10n/gl/admin_dependencies_chk.po deleted file mode 100644 index 09e5576eba141bae578e4333f335b96723464937..0000000000000000000000000000000000000000 --- a/l10n/gl/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/gl/admin_migrate.po b/l10n/gl/admin_migrate.po deleted file mode 100644 index 7684dc62ca7abbe05717a7c694df4488522c6690..0000000000000000000000000000000000000000 --- a/l10n/gl/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 06:27+0000\n" -"Last-Translator: Xosé M. Lamas <correo.xmgz@gmail.com>\n" -"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Exporta esta instancia de ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Esto creará un ficheiro comprimido que contén os datos de esta instancia de ownCloud.\nPor favor escolla o modo de exportación:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Exportar" diff --git a/l10n/gl/bookmarks.po b/l10n/gl/bookmarks.po deleted file mode 100644 index 9086620a94e9f611b2c7227b7bd9449603d21fb5..0000000000000000000000000000000000000000 --- a/l10n/gl/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/gl/calendar.po b/l10n/gl/calendar.po deleted file mode 100644 index d9a060f2dc23fa401093198a0749b3bab3550eca..0000000000000000000000000000000000000000 --- a/l10n/gl/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# antiparvos <marcoslansgarza@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Non se atoparon calendarios." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Non se atoparon eventos." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Calendario equivocado" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Novo fuso horario:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Fuso horario trocado" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Petición non válida" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendario" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "d MMM[ yyyy]{ '—'d [ MMM] yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d,yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Aniversario" - -#: lib/app.php:122 -msgid "Business" -msgstr "Traballo" - -#: lib/app.php:123 -msgid "Call" -msgstr "Chamada" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clientes" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Remitente" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Vacacións" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideas" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Viaxe" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Aniversario especial" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Reunión" - -#: lib/app.php:131 -msgid "Other" -msgstr "Outro" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Persoal" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Proxectos" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Preguntas" - -#: lib/app.php:135 -msgid "Work" -msgstr "Traballo" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "sen nome" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Novo calendario" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Non se repite" - -#: lib/object.php:373 -msgid "Daily" -msgstr "A diario" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Semanalmente" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Todas as semanas" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Cada dúas semanas" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mensual" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Anual" - -#: lib/object.php:388 -msgid "never" -msgstr "nunca" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "por acontecementos" - -#: lib/object.php:390 -msgid "by date" -msgstr "por data" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "por día do mes" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "por día da semana" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Luns" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Martes" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Mércores" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Xoves" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Venres" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sábado" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Domingo" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "semana dos eventos no mes" - -#: lib/object.php:428 -msgid "first" -msgstr "primeiro" - -#: lib/object.php:429 -msgid "second" -msgstr "segundo" - -#: lib/object.php:430 -msgid "third" -msgstr "terceiro" - -#: lib/object.php:431 -msgid "fourth" -msgstr "cuarto" - -#: lib/object.php:432 -msgid "fifth" -msgstr "quinto" - -#: lib/object.php:433 -msgid "last" -msgstr "último" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Xaneiro" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Febreiro" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Marzo" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Abril" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maio" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Xuño" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Xullo" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Agosto" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Setembro" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Outubro" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Novembro" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Decembro" - -#: lib/object.php:488 -msgid "by events date" -msgstr "por data dos eventos" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "por dia(s) do ano" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "por número(s) de semana" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "por día e mes" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Todo o dia" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Faltan campos" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Título" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Desde a data" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Desde a hora" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "á data" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "á hora" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "O evento remata antes de iniciarse" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Produciuse un erro na base de datos" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Semana" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mes" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hoxe" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Os seus calendarios" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Ligazón CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Calendarios compartidos" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Sen calendarios compartidos" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Compartir calendario" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Descargar" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Editar" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Borrar" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "compartido con vostede por" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Novo calendario" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Editar calendario" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Mostrar nome" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Activo" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Cor do calendario" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Gardar" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Enviar" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Cancelar" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Editar un evento" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportar" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Info do evento" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Repetido" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarma" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Participantes" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Compartir" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Título do evento" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categoría" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Separe as categorías con comas" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Editar categorías" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Eventos do día" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Desde" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "a" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Opcións avanzadas" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Localización" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Localización do evento" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Descrición" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Descrición do evento" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Repetir" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avanzado" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Seleccionar días da semana" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Seleccionar días" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "e día dos eventos no ano." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "e día dos eventos no mes." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Seleccione meses" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Seleccionar semanas" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "e semana dos eventos no ano." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervalo" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Fin" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "acontecementos" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "crear un novo calendario" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importar un ficheiro de calendario" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nome do novo calendario" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importar" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Pechar diálogo" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Crear un novo evento" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Ver un evento" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Non seleccionou as categorías" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "de" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "a" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Fuso horario" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Usuarios" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "escoller usuarios" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Editable" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupos" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "escoller grupos" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "facer público" diff --git a/l10n/gl/contacts.po b/l10n/gl/contacts.po deleted file mode 100644 index 5ee98a039df05992d68f3560700410b10db0e19a..0000000000000000000000000000000000000000 --- a/l10n/gl/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# antiparvos <marcoslansgarza@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Produciuse un erro (des)activando a axenda." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "non se estableceu o id." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Non se pode actualizar a libreta de enderezos sen completar o nome." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Produciuse un erro actualizando a axenda." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Non se proveeu ID" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Erro establecendo a suma de verificación" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Non se seleccionaron categorías para borrado." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Non se atoparon libretas de enderezos." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Non se atoparon contactos." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Produciuse un erro engadindo o contacto." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "non se nomeou o elemento." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Non se pode engadir unha propiedade baleira." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Polo menos un dos campos do enderezo ten que ser cuberto." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Tentando engadir propiedade duplicada: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "A información sobre a vCard é incorrecta. Por favor volva cargar a páxina." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "ID perdido" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Erro procesando a VCard para o ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "non se estableceu a suma de verificación." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "A información sobre a vCard é incorrecta. Por favor, recargue a páxina: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Non se enviou ningún ID de contacto." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Erro lendo a fotografía do contacto." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Erro gardando o ficheiro temporal." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "A fotografía cargada non é válida." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Falta o ID do contacto." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Non se enviou a ruta a unha foto." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "O ficheiro non existe:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Erro cargando imaxe." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Erro obtendo o obxeto contacto." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Erro obtendo a propiedade PHOTO." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Erro gardando o contacto." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Erro cambiando o tamaño da imaxe" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Erro recortando a imaxe" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Erro creando a imaxe temporal" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Erro buscando a imaxe: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Erro subindo os contactos ao almacén." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Non houbo erros, o ficheiro subeuse con éxito" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "O ficheiro subido supera a directiva upload_max_filesize no php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "O ficheiro subido supera a directiva MAX_FILE_SIZE especificada no formulario HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "O ficheiro so foi parcialmente subido" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Non se subeu ningún ficheiro" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Falta o cartafol temporal" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Non se puido gardar a imaxe temporal: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Non se puido cargar a imaxe temporal: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Non se subeu ningún ficheiro. Erro descoñecido." - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Contactos" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Sentímolo, esta función aínda non foi implementada." - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Non implementada." - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Non se puido obter un enderezo de correo válido." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Erro" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Esta propiedade non pode quedar baldeira." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Non se puido serializar os elementos." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' chamado sen argumento. Por favor, informe en bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Editar nome" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Sen ficheiros escollidos para subir." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "O ficheiro que tenta subir supera o tamaño máximo permitido neste servidor." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Seleccione tipo" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultado: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " importado, " - -#: js/loader.js:49 -msgid " failed." -msgstr " fallou." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Esta non é a súa axenda." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Non se atopou o contacto." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Traballo" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Casa" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Móbil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Texto" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voz" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mensaxe" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Vídeo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Paxinador" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Aniversario" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Cumpleanos de {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contacto" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Engadir contacto" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importar" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Axendas" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Pechar" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Solte a foto a subir" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Borrar foto actual" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Editar a foto actual" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Subir unha nova foto" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Escoller foto desde ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formato personalizado, Nome corto, Nome completo, Inverso ou Inverso con coma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Editar detalles do nome" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organización" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Eliminar" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Apodo" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Introuza apodo" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupos" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Separe grupos con comas" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Editar grupos" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferido" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Por favor indique un enderezo de correo electrónico válido." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Introduza enderezo de correo electrónico" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Correo ao enderezo" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Borrar enderezo de correo electrónico" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Introducir número de teléfono" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Borrar número de teléfono" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Ver no mapa" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Editar detalles do enderezo" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Engadir aquí as notas." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Engadir campo" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Teléfono" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Correo electrónico" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Enderezo" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Nota" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Descargar contacto" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Borrar contacto" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "A imaxe temporal foi eliminada da caché." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Editar enderezo" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Escribir" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Apartado de correos" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Ampliado" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Cidade" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Autonomía" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Código postal" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "País" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Axenda" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Prefixos honoríficos" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Srta" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Sra/Srta" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Sr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Sra" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Apodo" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Nomes adicionais" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Nome familiar" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Sufixos honorarios" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importar un ficheiro de contactos" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Por favor escolla unha libreta de enderezos" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "crear unha nova libreta de enderezos" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nome da nova libreta de enderezos" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importando contactos" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Non ten contactos na súa libreta de enderezos." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Engadir contacto" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Enderezos CardDAV a sincronizar" - -#: templates/settings.php:3 -msgid "more info" -msgstr "máis información" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Enderezo primario (Kontact et al)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Descargar" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Editar" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nova axenda" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Gardar" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Cancelar" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index e1324b3c423a43241effc1bf581702622e673e42..ba2c90991a2d06230b8cb9b6ca96a9ec43de6dfa 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -31,55 +31,55 @@ msgstr "Sen categoría que engadir?" msgid "This category already exists: " msgstr "Esta categoría xa existe: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Preferencias" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Xaneiro" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Febreiro" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Marzo" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Abril" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Maio" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Xuño" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Xullo" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Agosto" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Setembro" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Outubro" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Novembro" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Nadal" @@ -107,8 +107,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Non hai categorías seleccionadas para eliminar." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Erro" @@ -148,7 +148,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Contrasinal" @@ -184,39 +185,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -240,12 +241,12 @@ msgstr "Solicitado" msgid "Login failed!" msgstr "Fallou a conexión." -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nome de usuario" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Petición de restablecemento" @@ -301,52 +302,77 @@ msgstr "Editar categorias" msgid "Add" msgstr "Engadir" +#: 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 "Crear unha <strong>contra de administrador</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "será utilizado" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Rematar configuración" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "servizos web baixo o seu control" @@ -354,15 +380,29 @@ msgstr "servizos web baixo o seu control" msgid "Log out" msgstr "Desconectar" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "lembrar" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Conectar" @@ -377,3 +417,17 @@ msgstr "anterior" #: templates/part.pagenavi.php:20 msgid "next" msgstr "seguinte" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/gl/files_odfviewer.po b/l10n/gl/files_odfviewer.po deleted file mode 100644 index 8508ffbb8eb735346b5b3c91cac48eae82300a01..0000000000000000000000000000000000000000 --- a/l10n/gl/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/gl/files_pdfviewer.po b/l10n/gl/files_pdfviewer.po deleted file mode 100644 index c9dc9eb36b86dc1824a0008be3e7136c31c854de..0000000000000000000000000000000000000000 --- a/l10n/gl/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/gl/files_texteditor.po b/l10n/gl/files_texteditor.po deleted file mode 100644 index a6074b2906eaf263f6cccdb5f99eeef467cb8221..0000000000000000000000000000000000000000 --- a/l10n/gl/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/gl/gallery.po b/l10n/gl/gallery.po deleted file mode 100644 index 2a62856bb0f512266989ff1a826e85b650275654..0000000000000000000000000000000000000000 --- a/l10n/gl/gallery.po +++ /dev/null @@ -1,96 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# antiparvos <marcoslansgarza@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/language/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Fotografías" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Configuración" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Analizar de novo" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Parar" - -#: templates/index.php:18 -msgid "Share" -msgstr "Compartir" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Atrás" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Eliminar confirmación" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Quere eliminar o album" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Trocar o nome do album" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Novo nome do album" diff --git a/l10n/gl/impress.po b/l10n/gl/impress.po deleted file mode 100644 index fe806d8cc67516c7c2537f11b08a28b1323af89b..0000000000000000000000000000000000000000 --- a/l10n/gl/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/gl/media.po b/l10n/gl/media.po deleted file mode 100644 index 16f55e5225d5275b7c2149e5106b18e08449b447..0000000000000000000000000000000000000000 --- a/l10n/gl/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# antiparvos <marcoslansgarza@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Galician (http://www.transifex.net/projects/p/owncloud/language/gl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Música" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Reproducir" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pausar" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Anterior" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Seguinte" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Silenciar" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Restaurar volume" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Analizar a colección de novo" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artista" - -#: templates/music.php:38 -msgid "Album" -msgstr "Álbun" - -#: templates/music.php:39 -msgid "Title" -msgstr "Título" diff --git a/l10n/gl/tasks.po b/l10n/gl/tasks.po deleted file mode 100644 index 39ebfcde7c505e745056c20184727114837916df..0000000000000000000000000000000000000000 --- a/l10n/gl/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/gl/user_migrate.po b/l10n/gl/user_migrate.po deleted file mode 100644 index b36741c479ecbcae86f6fc8b2db22eaa3f85b3de..0000000000000000000000000000000000000000 --- a/l10n/gl/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/gl/user_openid.po b/l10n/gl/user_openid.po deleted file mode 100644 index 6566b274dfeb17fa4d1df05881326441f0259bd9..0000000000000000000000000000000000000000 --- a/l10n/gl/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/he/admin_dependencies_chk.po b/l10n/he/admin_dependencies_chk.po deleted file mode 100644 index 01c45eae4c9a67d70e86b5094b4982ad65b75460..0000000000000000000000000000000000000000 --- a/l10n/he/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/he/admin_migrate.po b/l10n/he/admin_migrate.po deleted file mode 100644 index 6968c6351efc6aca3fc7825fe1498b023e8279ec..0000000000000000000000000000000000000000 --- a/l10n/he/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/he/bookmarks.po b/l10n/he/bookmarks.po deleted file mode 100644 index 14546978e037bd5cd6e05313d089075095a1d8b2..0000000000000000000000000000000000000000 --- a/l10n/he/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/he/calendar.po b/l10n/he/calendar.po deleted file mode 100644 index 2cbab15c82820594bf4fef771034a0e058ca1ae4..0000000000000000000000000000000000000000 --- a/l10n/he/calendar.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Elad Alfassa <elad@fedoraproject.org>, 2011. -# <ido.parag@gmail.com>, 2012. -# <tomerc+transifex.net@gmail.com>, 2011. -# Yaron Shahrabani <sh.yaron@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "לא נמצאו לוחות שנה." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "לא נמצאו אירועים." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "לוח שנה לא נכון" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "אזור זמן חדש:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "אזור זמן השתנה" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "בקשה לא חוקית" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "ח שנה" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "d MMM [ yyyy]{ '—'d[ MMM] yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "יום הולדת" - -#: lib/app.php:122 -msgid "Business" -msgstr "עסקים" - -#: lib/app.php:123 -msgid "Call" -msgstr "שיחה" - -#: lib/app.php:124 -msgid "Clients" -msgstr "לקוחות" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "משלוח" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "חגים" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "רעיונות" - -#: lib/app.php:128 -msgid "Journey" -msgstr "מסע" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "יובל" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "פגישה" - -#: lib/app.php:131 -msgid "Other" -msgstr "אחר" - -#: lib/app.php:132 -msgid "Personal" -msgstr "אישי" - -#: lib/app.php:133 -msgid "Projects" -msgstr "פרוייקטים" - -#: lib/app.php:134 -msgid "Questions" -msgstr "שאלות" - -#: lib/app.php:135 -msgid "Work" -msgstr "עבודה" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "ללא שם" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "לוח שנה חדש" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "ללא חזרה" - -#: lib/object.php:373 -msgid "Daily" -msgstr "יומי" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "שבועי" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "כל יום עבודה" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "דו שבועי" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "חודשי" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "שנתי" - -#: lib/object.php:388 -msgid "never" -msgstr "לעולם לא" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "לפי מופעים" - -#: lib/object.php:390 -msgid "by date" -msgstr "לפי תאריך" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "לפי היום בחודש" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "לפי היום בשבוע" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "יום שני" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "יום שלישי" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "יום רביעי" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "יום חמישי" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "יום שישי" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "שבת" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "יום ראשון" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "שבוע בחודש לציון הפעילות" - -#: lib/object.php:428 -msgid "first" -msgstr "ראשון" - -#: lib/object.php:429 -msgid "second" -msgstr "שני" - -#: lib/object.php:430 -msgid "third" -msgstr "שלישי" - -#: lib/object.php:431 -msgid "fourth" -msgstr "רביעי" - -#: lib/object.php:432 -msgid "fifth" -msgstr "חמישי" - -#: lib/object.php:433 -msgid "last" -msgstr "אחרון" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "ינואר" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "פברואר" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "מרץ" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "אפריל" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "מאי" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "יוני" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "יולי" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "אוגוסט" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "ספטמבר" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "אוקטובר" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "נובמבר" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "דצמבר" - -#: lib/object.php:488 -msgid "by events date" -msgstr "לפי תאריכי האירועים" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "לפי ימים בשנה" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "לפי מספרי השבועות" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "לפי יום וחודש" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "תאריך" - -#: lib/search.php:43 -msgid "Cal." -msgstr "לוח שנה" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "היום" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "שדות חסרים" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "כותרת" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "מתאריך" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "משעה" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "עד תאריך" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "עד שעה" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "האירוע מסתיים עוד לפני שהתחיל" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "אירע כשל במסד הנתונים" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "שבוע" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "חודש" - -#: templates/calendar.php:41 -msgid "List" -msgstr "רשימה" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "היום" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "לוחות השנה שלך" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "קישור CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "לוחות שנה מושתפים" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "אין לוחות שנה משותפים" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "שיתוף לוח שנה" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "הורדה" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "עריכה" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "מחיקה" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "שותף אתך על ידי" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "לוח שנה חדש" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "עריכת לוח שנה" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "שם תצוגה" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "פעיל" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "צבע לוח שנה" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "שמירה" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "שליחה" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "ביטול" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "עריכת אירוע" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "יצוא" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "פרטי האירוע" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "חוזר" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "תזכורת" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "משתתפים" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "שיתוף" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "כותרת האירוע" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "קטגוריה" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "הפרדת קטגוריות בפסיק" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "עריכת קטגוריות" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "אירוע של כל היום" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "מאת" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "עבור" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "אפשרויות מתקדמות" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "מיקום" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "מיקום האירוע" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "תיאור" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "תיאור האירוע" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "חזרה" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "מתקדם" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "יש לבחור ימים בשבוע" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "יש לבחור בימים" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "ויום האירוע בשנה." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "ויום האירוע בחודש." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "יש לבחור בחודשים" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "יש לבחור בשבועות" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "ומספור השבוע הפעיל בשנה." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "משך" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "סיום" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "מופעים" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "יצירת לוח שנה חדש" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "יבוא קובץ לוח שנה" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "שם לוח השנה החדש" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "יבוא" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "סגירת הדו־שיח" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "יצירת אירוע חדש" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "צפייה באירוע" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "לא נבחרו קטגוריות" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "מתוך" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "בשנה" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "אזור זמן" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24 שעות" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12 שעות" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "משתמשים" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "נא לבחור במשתמשים" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "ניתן לעריכה" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "קבוצות" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "בחירת קבוצות" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "הפיכה לציבורי" diff --git a/l10n/he/contacts.po b/l10n/he/contacts.po deleted file mode 100644 index df2a4bdc4e74a32a7ad5b0e608e6b488b6172ea8..0000000000000000000000000000000000000000 --- a/l10n/he/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <ido.parag@gmail.com>, 2012. -# <tomerc+transifex.net@gmail.com>, 2011. -# Yaron Shahrabani <sh.yaron@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "שגיאה בהפעלה או בנטרול פנקס הכתובות." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "מספר מזהה לא נקבע." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "אי אפשר לעדכן ספר כתובות ללא שם" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "שגיאה בעדכון פנקס הכתובות." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "לא צוין מזהה" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "שגיאה בהגדרת נתוני הביקורת." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "לא נבחור קטגוריות למחיקה." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "לא נמצאו פנקסי כתובות." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "לא נמצאו אנשי קשר." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "אירעה שגיאה בעת הוספת איש הקשר." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "שם האלמנט לא נקבע." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "לא ניתן להוסיף מאפיין ריק." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "יש למלא לפחות אחד משדות הכתובת." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "ניסיון להוספת מאפיין כפול: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "המידע אודות vCard אינו נכון. נא לטעון מחדש את הדף." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "מזהה חסר" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "שגיאה בפענוח ה VCard עבור מספר המזהה: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "סיכום ביקורת לא נקבע." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "המידע עבור ה vCard אינו נכון. אנא טען את העמוד: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "משהו לא התנהל כצפוי." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "מספר מזהה של אישר הקשר לא נשלח." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "שגיאה בקריאת תמונת איש הקשר." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "שגיאה בשמירת קובץ זמני." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "התמונה הנטענת אינה תקנית." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "מספר מזהה של אישר הקשר חסר." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "כתובת התמונה לא נשלחה" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "קובץ לא קיים:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "שגיאה בטעינת התמונה." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "שגיאה בקבלת אוביאקט איש הקשר" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "שגיאה בקבלת מידע של תמונה" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "שגיאה בשמירת איש הקשר" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "שגיאה בשינוי גודל התמונה" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "התרשה שגיאה בהעלאת אנשי הקשר לאכסון." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "גודל הקובץ שהועלה גדול מהערך upload_max_filesize שמוגדר בקובץ php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "הקובץ הועלה באופן חלקי בלבד" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "שום קובץ לא הועלה" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "תקיה זמנית חסרה" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "אנשי קשר" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "זהו אינו ספר הכתובות שלך" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "לא ניתן לאתר איש קשר" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "עבודה" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "בית" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "נייד" - -#: lib/app.php:203 -msgid "Text" -msgstr "טקסט" - -#: lib/app.php:204 -msgid "Voice" -msgstr "קולי" - -#: lib/app.php:205 -msgid "Message" -msgstr "הודעה" - -#: lib/app.php:206 -msgid "Fax" -msgstr "פקס" - -#: lib/app.php:207 -msgid "Video" -msgstr "וידאו" - -#: lib/app.php:208 -msgid "Pager" -msgstr "זימונית" - -#: lib/app.php:215 -msgid "Internet" -msgstr "אינטרנט" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "יום הולדת" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "יום ההולדת של {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "איש קשר" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "הוספת איש קשר" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "יבא" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "פנקסי כתובות" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "גרור ושחרר תמונה בשביל להעלות" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "מחק תמונה נוכחית" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "ערוך תמונה נוכחית" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "העלה תמונה חדשה" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "בחר תמונה מ ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "ערוך פרטי שם" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "ארגון" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "מחיקה" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "כינוי" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "הכנס כינוי" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "קבוצות" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "הפרד קבוצות עם פסיקים" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "ערוך קבוצות" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "מועדף" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "אנא הזן כתובת דוא\"ל חוקית" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "הזן כתובת דוא\"ל" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "כתובת" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "מחק כתובת דוא\"ל" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "הכנס מספר טלפון" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "מחק מספר טלפון" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "ראה במפה" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "ערוך פרטי כתובת" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "הוסף הערות כאן." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "הוסף שדה" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "טלפון" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "דואר אלקטרוני" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "כתובת" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "הערה" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "הורדת איש קשר" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "מחיקת איש קשר" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "ערוך כתובת" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "סוג" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "תא דואר" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "מורחב" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "עיר" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "אזור" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "מיקוד" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "מדינה" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "פנקס כתובות" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "קידומות שם" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "גב'" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "גב'" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "מר'" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "אדון" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "גב'" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "ד\"ר" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "שם" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "שמות נוספים" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "שם משפחה" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "סיומות שם" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "יבא קובץ אנשי קשר" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "אנא בחר ספר כתובות" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "צור ספר כתובות חדש" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "שם ספר כתובות החדש" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "מיבא אנשי קשר" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "איך לך אנשי קשר בספר הכתובות" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "הוסף איש קשר" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV מסנכרן כתובות" - -#: templates/settings.php:3 -msgid "more info" -msgstr "מידע נוסף" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "כתובת ראשית" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "הורדה" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "עריכה" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "פנקס כתובות חדש" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "שמירה" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "ביטול" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/he/core.po b/l10n/he/core.po index 715be471e84d4129e67860a229c80fc60e6e40e3..ba5968dffacf8a9f3b7b3d293112a99d8903cd0e 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "אין קטגוריה להוספה?" msgid "This category already exists: " msgstr "קטגוריה זאת כבר קיימת: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "הגדרות" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "ינואר" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "פברואר" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "מרץ" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "אפריל" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "מאי" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "יוני" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "יולי" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "אוגוסט" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "ספטמבר" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "אוקטובר" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "נובמבר" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "דצמבר" @@ -109,8 +109,8 @@ msgstr "בסדר" msgid "No categories selected for deletion." msgstr "לא נבחרו קטגוריות למחיקה" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "שגיאה" @@ -150,7 +150,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "ססמה" @@ -186,39 +187,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -242,12 +243,12 @@ msgstr "נדרש" msgid "Login failed!" msgstr "הכניסה נכשלה!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "שם משתמש" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "בקשת איפוס" @@ -303,52 +304,77 @@ msgstr "עריכת הקטגוריות" msgid "Add" msgstr "הוספה" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "יצירת <strong>חשבון מנהל</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "מתקדם" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "תיקיית נתונים" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "הגדרת מסד הנתונים" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "ינוצלו" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "סיום התקנה" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "שירותי רשת בשליטתך" @@ -356,15 +382,29 @@ msgstr "שירותי רשת בשליטתך" msgid "Log out" msgstr "התנתקות" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "כניסה" @@ -379,3 +419,17 @@ msgstr "הקודם" #: templates/part.pagenavi.php:20 msgid "next" msgstr "הבא" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/he/files_odfviewer.po b/l10n/he/files_odfviewer.po deleted file mode 100644 index e493bf5cb56bf60f80aa3287fd47d49b1e5409a8..0000000000000000000000000000000000000000 --- a/l10n/he/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/he/files_pdfviewer.po b/l10n/he/files_pdfviewer.po deleted file mode 100644 index 5ae16f8b58686bdfa3ed5ef3875200f4a4c28ae1..0000000000000000000000000000000000000000 --- a/l10n/he/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/he/files_texteditor.po b/l10n/he/files_texteditor.po deleted file mode 100644 index 1992f89c84c80743add5eb5501c22d46bd9cdabf..0000000000000000000000000000000000000000 --- a/l10n/he/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/he/gallery.po b/l10n/he/gallery.po deleted file mode 100644 index d2e1ed419a3cabee27af556be9982aab07d9ad4b..0000000000000000000000000000000000000000 --- a/l10n/he/gallery.po +++ /dev/null @@ -1,94 +0,0 @@ -# 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: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/language/he/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/he/impress.po b/l10n/he/impress.po deleted file mode 100644 index 722a7c44e18efd3ebff510f9849dcb27e31d1e8c..0000000000000000000000000000000000000000 --- a/l10n/he/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/he/media.po b/l10n/he/media.po deleted file mode 100644 index 993c46955ba1bf526130a3aed72a0c6548d48438..0000000000000000000000000000000000000000 --- a/l10n/he/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <tomerc+transifex.net@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Hebrew (http://www.transifex.net/projects/p/owncloud/language/he/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "מוזיקה" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "נגן" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "השהה" - -#: templates/music.php:5 -msgid "Previous" -msgstr "קודם" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "הבא" - -#: templates/music.php:7 -msgid "Mute" -msgstr "השתק" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "בטל השתקה" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "סריקת אוסף מחדש" - -#: templates/music.php:37 -msgid "Artist" -msgstr "מבצע" - -#: templates/music.php:38 -msgid "Album" -msgstr "אלבום" - -#: templates/music.php:39 -msgid "Title" -msgstr "כותרת" diff --git a/l10n/he/tasks.po b/l10n/he/tasks.po deleted file mode 100644 index 7f26426e1cd8da09b1cdc99bcdc2438f39a47631..0000000000000000000000000000000000000000 --- a/l10n/he/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/he/user_migrate.po b/l10n/he/user_migrate.po deleted file mode 100644 index 0a4f2c67393e0d68cbe0b186b540b5e80ed3f8d6..0000000000000000000000000000000000000000 --- a/l10n/he/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/he/user_openid.po b/l10n/he/user_openid.po deleted file mode 100644 index 58c09141c7a0d76b6cefe2bc78ec4ca29b5c4b1a..0000000000000000000000000000000000000000 --- a/l10n/he/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index b6cb8ef89bedfd562749f4b4fa8415fa012386e6..9f9f0bf08237c14f6ee5a0fd9ff0b453c4d29a82 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -106,8 +106,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "पासवर्ड" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "प्रयोक्ता का नाम" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -300,52 +301,77 @@ msgstr "" 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:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "उन्नत" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "डेटाबेस कॉन्फ़िगर करें " -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "सेटअप समाप्त करे" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -353,15 +379,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -376,3 +416,17 @@ msgstr "पिछला" #: templates/part.pagenavi.php:20 msgid "next" msgstr "अगला" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/hr/admin_dependencies_chk.po b/l10n/hr/admin_dependencies_chk.po deleted file mode 100644 index 5278ae63b010a4a51d5a41b016ceccdf8b4186e5..0000000000000000000000000000000000000000 --- a/l10n/hr/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/hr/admin_migrate.po b/l10n/hr/admin_migrate.po deleted file mode 100644 index 6b445e7e51d8d1d0a6093f122a1a805eba74fe76..0000000000000000000000000000000000000000 --- a/l10n/hr/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/hr/bookmarks.po b/l10n/hr/bookmarks.po deleted file mode 100644 index b9e98477cfefcc7934d818250f51ae3d6d86674e..0000000000000000000000000000000000000000 --- a/l10n/hr/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/hr/calendar.po b/l10n/hr/calendar.po deleted file mode 100644 index e848e042a0028c7a39b5882be389a412c84b9875..0000000000000000000000000000000000000000 --- a/l10n/hr/calendar.po +++ /dev/null @@ -1,816 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Davor Kustec <dkustec@gmail.com>, 2011. -# Domagoj Delimar <transifex.net@domdelimar.com>, 2012. -# Thomas Silađi <thomas.siladi@net.hr>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Nisu pronađeni kalendari" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Događaj nije pronađen." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Pogrešan kalendar" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nova vremenska zona:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Vremenska zona promijenjena" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Neispravan zahtjev" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalendar" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Rođendan" - -#: lib/app.php:122 -msgid "Business" -msgstr "Poslovno" - -#: lib/app.php:123 -msgid "Call" -msgstr "Poziv" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klijenti" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Dostavljač" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Praznici" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideje" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Putovanje" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Obljetnica" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Sastanak" - -#: lib/app.php:131 -msgid "Other" -msgstr "Ostalo" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Osobno" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekti" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Pitanja" - -#: lib/app.php:135 -msgid "Work" -msgstr "Posao" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "bezimeno" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Novi kalendar" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Ne ponavlja se" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Dnevno" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Tjedno" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Svakog radnog dana" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Dvotjedno" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mjesečno" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Godišnje" - -#: lib/object.php:388 -msgid "never" -msgstr "nikad" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "po pojavama" - -#: lib/object.php:390 -msgid "by date" -msgstr "po datum" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "po dana mjeseca" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "po tjednu" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "ponedeljak" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "utorak" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "srijeda" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "četvrtak" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "petak" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "subota" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "nedelja" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "prvi" - -#: lib/object.php:429 -msgid "second" -msgstr "drugi" - -#: lib/object.php:430 -msgid "third" -msgstr "treći" - -#: lib/object.php:431 -msgid "fourth" -msgstr "četvrti" - -#: lib/object.php:432 -msgid "fifth" -msgstr "peti" - -#: lib/object.php:433 -msgid "last" -msgstr "zadnji" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "siječanj" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "veljača" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "ožujak" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "travanj" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "svibanj" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "lipanj" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "srpanj" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "kolovoz" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "rujan" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "listopad" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "studeni" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "prosinac" - -#: lib/object.php:488 -msgid "by events date" -msgstr "po datumu događaja" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "po godini(-nama)" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "po broju tjedna(-ana)" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "po danu i mjeseca" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "datum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Cijeli dan" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Nedostaju polja" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Naslov" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Datum od" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Vrijeme od" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Datum do" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Vrijeme do" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Događaj završava prije nego počinje" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Pogreška u bazi podataka" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Tjedan" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mjesec" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Danas" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Vaši kalendari" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav poveznica" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Podijeljeni kalendari" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Nema zajedničkih kalendara" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Podjeli kalendar" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Spremi lokalno" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Uredi" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Briši" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "podijeljeno s vama od " - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Novi kalendar" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Uredi kalendar" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Naziv" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktivan" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Boja kalendara" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Spremi" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Potvrdi" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Odustani" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Uredi događaj" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Izvoz" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informacije o događaju" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Ponavljanje" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Polaznici" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Podijeli" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Naslov događaja" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategorija" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Odvoji kategorije zarezima" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Uredi kategorije" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Cjelodnevni događaj" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Od" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Za" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Napredne mogućnosti" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Lokacija" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Lokacija događaja" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Opis" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Opis događaja" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Ponavljanje" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Napredno" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Odaberi dane u tjednu" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Odaberi dane" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Odaberi mjesece" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Odaberi tjedne" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Interval" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Kraj" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "pojave" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "stvori novi kalendar" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Uvozite datoteku kalendara" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Ime novog kalendara" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Uvoz" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Zatvori dijalog" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Unesi novi događaj" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Vidjeti događaj" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nema odabranih kategorija" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "od" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "na" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Vremenska zona" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Korisnici" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "odaberi korisnike" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Može se uređivati" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupe" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "izaberite grupe" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "podjeli s javnošću" diff --git a/l10n/hr/contacts.po b/l10n/hr/contacts.po deleted file mode 100644 index 1e98b0080737ae7487434665502b103f378f3790..0000000000000000000000000000000000000000 --- a/l10n/hr/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Davor Kustec <dkustec@gmail.com>, 2011, 2012. -# Domagoj Delimar <transifex.net@domdelimar.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Pogreška pri (de)aktivaciji adresara." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id nije postavljen." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Ne mogu ažurirati adresar sa praznim nazivom." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Pogreška pri ažuriranju adresara." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Nema dodijeljenog ID identifikatora" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Pogreška pri postavljanju checksuma." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Niti jedna kategorija nije odabrana za brisanje." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Nema adresara." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Nema kontakata." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Dogodila se pogreška prilikom dodavanja kontakta." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "naziv elementa nije postavljen." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Prazno svojstvo se ne može dodati." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Morate ispuniti barem jedno od adresnih polja." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Pokušali ste dodati duplo svojstvo:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informacija o vCard je neispravna. Osvježite stranicu." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Nedostupan ID identifikator" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Pogreška pri raščlanjivanju VCard za ID:" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "checksum nije postavljen." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informacije o VCard su pogrešne. Molimo, učitajte ponovno stranicu:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Nešto je otišlo... krivo..." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "ID kontakta nije podnešen." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Pogreška pri čitanju kontakt fotografije." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Pogreška pri spremanju privremene datoteke." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Fotografija nije valjana." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "ID kontakta nije dostupan." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Putanja do fotografije nije podnešena." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Datoteka ne postoji:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Pogreška pri učitavanju slike." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Pogreška pri slanju kontakata." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Nema pogreške, datoteka je poslana uspješno." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Veličina poslane datoteke prelazi veličinu prikazanu u upload_max_filesize direktivi u konfiguracijskoj datoteci php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Poslana datoteka je parcijalno poslana" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Datoteka nije poslana" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Nedostaje privremeni direktorij" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontakti" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Ovo nije vaš adresar." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontakt ne postoji." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Posao" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Kuća" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobitel" - -#: lib/app.php:203 -msgid "Text" -msgstr "Tekst" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Glasovno" - -#: lib/app.php:205 -msgid "Message" -msgstr "Poruka" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Rođendan" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name} Rođendan" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Dodaj kontakt" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Uvezi" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adresari" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Dovucite fotografiju za slanje" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Uredi trenutnu sliku" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Uredi detalje imena" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizacija" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Obriši" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Nadimak" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Unesi nadimank" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupe" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Uredi grupe" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferirano" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Unesi email adresu" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Unesi broj telefona" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Prikaži na karti" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Uredi detalje adrese" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Dodaj bilješke ovdje." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Dodaj polje" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresa" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Bilješka" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Preuzmi kontakt" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Izbriši kontakt" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Uredi adresu" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tip" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Poštanski Pretinac" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Prošireno" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Grad" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regija" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Poštanski broj" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Država" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adresar" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Preuzimanje" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Uredi" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Novi adresar" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Spremi" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Prekini" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index cc72990a914cdb6fd109586ac03ce7d819d065ce..9ab1d15928b0ea462204382c1037b973a755fb97 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.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-10-08 02:03+0200\n" -"PO-Revision-Date: 2012-10-07 15:56+0000\n" -"Last-Translator: fposavec <franz@franz-net.info>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,55 +33,55 @@ msgstr "Nemate kategorija koje možete dodati?" msgid "This category already exists: " msgstr "Ova kategorija već postoji: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Postavke" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Siječanj" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Veljača" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Ožujak" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Travanj" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Svibanj" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Lipanj" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Srpanj" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Kolovoz" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Rujan" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Listopad" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Studeni" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Prosinac" @@ -109,8 +109,8 @@ msgstr "U redu" msgid "No categories selected for deletion." msgstr "Nema odabranih kategorija za brisanje." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 -#: js/share.js:506 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Pogreška" @@ -150,7 +150,8 @@ msgstr "Djeli preko link-a" msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Lozinka" @@ -210,15 +211,15 @@ msgstr "izbriši" msgid "share" msgstr "djeli" -#: js/share.js:322 js/share.js:481 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:494 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:506 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" @@ -242,8 +243,8 @@ msgstr "Zahtijevano" msgid "Login failed!" msgstr "Prijava nije uspjela!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Korisničko ime" @@ -303,48 +304,73 @@ msgstr "Uredi kategorije" msgid "Add" msgstr "Dodaj" +#: 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 "Stvori <strong>administratorski račun</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Dodatno" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Završi postavljanje" @@ -356,15 +382,29 @@ msgstr "web usluge pod vašom kontrolom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Prijava" @@ -379,3 +419,17 @@ msgstr "prethodan" #: templates/part.pagenavi.php:20 msgid "next" msgstr "sljedeći" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/hr/files_odfviewer.po b/l10n/hr/files_odfviewer.po deleted file mode 100644 index ad4066e3f624e68b7d7e8b3fab307094d81c622c..0000000000000000000000000000000000000000 --- a/l10n/hr/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/hr/files_pdfviewer.po b/l10n/hr/files_pdfviewer.po deleted file mode 100644 index 711c71bc86453f4e701e38cd7ebdbee83d9dc797..0000000000000000000000000000000000000000 --- a/l10n/hr/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/hr/files_texteditor.po b/l10n/hr/files_texteditor.po deleted file mode 100644 index 31c7b3bc4e2c9118e3f69043a4c5df8ef3120362..0000000000000000000000000000000000000000 --- a/l10n/hr/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/hr/gallery.po b/l10n/hr/gallery.po deleted file mode 100644 index 3bfe413c2855b3cea3eb5194c578eb6b1f9333c8..0000000000000000000000000000000000000000 --- a/l10n/hr/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Domagoj Delimar <transifex.net@domdelimar.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Slike" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Postavke" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Ponovo očitaj" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Zaustavi" - -#: templates/index.php:18 -msgid "Share" -msgstr "Podijeli" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Natrag" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Ukloni potvrdu" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Želite li ukloniti album" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Promijeni ime albuma" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Novo ime albuma" diff --git a/l10n/hr/impress.po b/l10n/hr/impress.po deleted file mode 100644 index b66fc94ed8e9bce26b0f33005e49f999043bdf70..0000000000000000000000000000000000000000 --- a/l10n/hr/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/hr/media.po b/l10n/hr/media.po deleted file mode 100644 index aa4711f5d5d663ef2a80cb4b76db7381072ede96..0000000000000000000000000000000000000000 --- a/l10n/hr/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Davor Kustec <dkustec@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Croatian (http://www.transifex.net/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Glazba" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Reprodukcija" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pauza" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Prethodna" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Sljedeća" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Utišaj zvuk" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Uključi zvuk" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Ponovi skeniranje kolekcije" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Izvođač" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Naslov" diff --git a/l10n/hr/tasks.po b/l10n/hr/tasks.po deleted file mode 100644 index 210a819f64c98d54c7a42734427f822349f1067c..0000000000000000000000000000000000000000 --- a/l10n/hr/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/hr/user_migrate.po b/l10n/hr/user_migrate.po deleted file mode 100644 index edbfa8b17645821b89ee3df2ba2e849af4af7e74..0000000000000000000000000000000000000000 --- a/l10n/hr/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/hr/user_openid.po b/l10n/hr/user_openid.po deleted file mode 100644 index 1f9e7c5ad595e9111a7889e3212b31de456e60ed..0000000000000000000000000000000000000000 --- a/l10n/hr/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/hu_HU/admin_dependencies_chk.po b/l10n/hu_HU/admin_dependencies_chk.po deleted file mode 100644 index 1dad50f27ac8b0990773c2b43eeb3a20f55eb001..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/hu_HU/admin_migrate.po b/l10n/hu_HU/admin_migrate.po deleted file mode 100644 index f23b87abaa34a868bb9ef245d539bac996c99e75..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/hu_HU/bookmarks.po b/l10n/hu_HU/bookmarks.po deleted file mode 100644 index 4fe0e566ab13f56bc560a001dd8e81215d867de7..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/hu_HU/calendar.po b/l10n/hu_HU/calendar.po deleted file mode 100644 index 4e689ee90eb853543457b3d982f9cf7b9efc9c10..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Adam Toth <adazlord@gmail.com>, 2012. -# Peter Borsa <peter.borsa@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Nem található naptár" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Nem található esemény" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Hibás naptár" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Új időzóna" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Időzóna megváltozott" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Érvénytelen kérés" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Naptár" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "nnn" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "nnn H/n" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "nnnn H/n" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "HHHH éééé" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "nnnn, HHH n, éééé" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Születésap" - -#: lib/app.php:122 -msgid "Business" -msgstr "Üzlet" - -#: lib/app.php:123 -msgid "Call" -msgstr "Hívás" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Kliensek" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Szállító" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Ünnepek" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ötletek" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Utazás" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Évforduló" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Találkozó" - -#: lib/app.php:131 -msgid "Other" -msgstr "Egyéb" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Személyes" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projektek" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Kérdések" - -#: lib/app.php:135 -msgid "Work" -msgstr "Munka" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "névtelen" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Új naptár" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Nem ismétlődik" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Napi" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Heti" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Minden hétköznap" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Kéthetente" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Havi" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Évi" - -#: lib/object.php:388 -msgid "never" -msgstr "soha" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "előfordulás szerint" - -#: lib/object.php:390 -msgid "by date" -msgstr "dátum szerint" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "hónap napja szerint" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "hét napja szerint" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Hétfő" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Kedd" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Szerda" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Csütörtök" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Péntek" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Szombat" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Vasárnap" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "hónap heteinek sorszáma" - -#: lib/object.php:428 -msgid "first" -msgstr "első" - -#: lib/object.php:429 -msgid "second" -msgstr "második" - -#: lib/object.php:430 -msgid "third" -msgstr "harmadik" - -#: lib/object.php:431 -msgid "fourth" -msgstr "negyedik" - -#: lib/object.php:432 -msgid "fifth" -msgstr "ötödik" - -#: lib/object.php:433 -msgid "last" -msgstr "utolsó" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Január" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Február" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Március" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Április" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Május" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Június" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Július" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Augusztus" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Szeptember" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Október" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "December" - -#: lib/object.php:488 -msgid "by events date" -msgstr "az esemény napja szerint" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "az év napja(i) szerint" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "a hét sorszáma szerint" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "nap és hónap szerint" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Dátum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Naptár" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Egész nap" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Hiányzó mezők" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Cím" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Napjától" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Időtől" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Napig" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Ideig" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Az esemény véget ér a kezdés előtt." - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Adatbázis hiba történt" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Hét" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Hónap" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Ma" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Naptárjaid" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDAV link" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Megosztott naptárak" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Nincs megosztott naptár" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Naptármegosztás" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Letöltés" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Szerkesztés" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Törlés" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "megosztotta veled: " - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Új naptár" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Naptár szerkesztése" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Megjelenítési név" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktív" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Naptár szín" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Mentés" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Beküldés" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Mégse" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Esemény szerkesztése" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Export" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Eseményinfó" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Ismétlődő" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Riasztás" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Résztvevők" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Megosztás" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Az esemény címe" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategória" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Vesszővel válaszd el a kategóriákat" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Kategóriák szerkesztése" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Egész napos esemény" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Ettől" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Eddig" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Haladó beállítások" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Hely" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Az esemény helyszíne" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Leírás" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Az esemény leírása" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Ismétlés" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Haladó" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Hétköznapok kiválasztása" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Napok kiválasztása" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "és az éves esemény napja." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "és a havi esemény napja." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Hónapok kiválasztása" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Hetek kiválasztása" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "és az heti esemény napja." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Időköz" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Vége" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "előfordulások" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "új naptár létrehozása" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Naptár-fájl importálása" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Új naptár neve" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importálás" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Párbeszédablak bezárása" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Új esemény létrehozása" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Esemény megtekintése" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nincs kiválasztott kategória" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr ", tulaj " - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr ", " - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Időzóna" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Felhasználók" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "válassz felhasználókat" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Szerkeszthető" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Csoportok" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "válassz csoportokat" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "nyilvánossá tétel" diff --git a/l10n/hu_HU/contacts.po b/l10n/hu_HU/contacts.po deleted file mode 100644 index e1ab92a5a44343a563628b6219c28063dd6999d6..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/contacts.po +++ /dev/null @@ -1,956 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Adam Toth <adazlord@gmail.com>, 2012. -# <mail@tamas-nagy.net>, 2011. -# Peter Borsa <peter.borsa@gmail.com>, 2011. -# Tamas Nagy <mail@tamas-nagy.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Címlista (de)aktiválása sikertelen" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID nincs beállítva" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Üres névvel nem frissíthető a címlista" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Hiba a címlista frissítésekor" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Nincs ID megadva" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Hiba az ellenőrzőösszeg beállításakor" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Nincs kiválasztva törlendő kategória" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Nem található címlista" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Nem található kontakt" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Hiba a kapcsolat hozzáadásakor" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "az elem neve nincs beállítva" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Nem adható hozzá üres tulajdonság" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Legalább egy címmező kitöltendő" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Kísérlet dupla tulajdonság hozzáadására: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "A vCardról szóló információ helytelen. Töltsd újra az oldalt." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Hiányzó ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "VCard elemzése sikertelen a következő ID-hoz: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "az ellenőrzőösszeg nincs beállítva" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Helytelen információ a vCardról. Töltse újra az oldalt: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Valami balul sült el." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Nincs ID megadva a kontakthoz" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "A kontakt képének beolvasása sikertelen" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Ideiglenes fájl mentése sikertelen" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "A kép érvénytelen" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Hiányzik a kapcsolat ID" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Nincs fénykép-útvonal megadva" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "A fájl nem létezik:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Kép betöltése sikertelen" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "A kontakt-objektum feldolgozása sikertelen" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "A PHOTO-tulajdonság feldolgozása sikertelen" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "A kontakt mentése sikertelen" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Képméretezés sikertelen" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Képvágás sikertelen" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Ideiglenes kép létrehozása sikertelen" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "A kép nem található" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Hiba a kapcsolatok feltöltésekor" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Nincs hiba, a fájl sikeresen feltöltődött" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "A feltöltött fájl mérete meghaladja az upload_max_filesize értéket a php.ini-ben" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "A feltöltött fájl mérete meghaladja a HTML form-ban megadott MAX_FILE_SIZE értéket" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "A fájl csak részlegesen lett feltöltve" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Nincs feltöltött fájl" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Hiányzik az ideiglenes könyvtár" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Ideiglenes kép létrehozása sikertelen" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Ideiglenes kép betöltése sikertelen" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Nem történt feltöltés. Ismeretlen hiba" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kapcsolatok" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Sajnáljuk, ez a funkció még nem támogatott" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Nem támogatott" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Érvényes cím lekérése sikertelen" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Hiba" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Ezt a tulajdonságot muszáj kitölteni" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Sorbarakás sikertelen" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "A 'deleteProperty' argumentum nélkül lett meghívva. Kérjük, jelezze a hibát." - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Név szerkesztése" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Nincs kiválasztva feltöltendő fájl" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "A feltöltendő fájl mérete meghaladja a megengedett mértéket" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Típus kiválasztása" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Eredmény: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " beimportálva, " - -#: js/loader.js:49 -msgid " failed." -msgstr " sikertelen" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Ez nem a te címjegyzéked." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kapcsolat nem található." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Munkahelyi" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Otthoni" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobiltelefonszám" - -#: lib/app.php:203 -msgid "Text" -msgstr "Szöveg" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Hang" - -#: lib/app.php:205 -msgid "Message" -msgstr "Üzenet" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Személyhívó" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Születésnap" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name} születésnapja" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kapcsolat" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Kapcsolat hozzáadása" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Import" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Címlisták" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Bezár" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Húzza ide a feltöltendő képet" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Aktuális kép törlése" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Aktuális kép szerkesztése" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Új kép feltöltése" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Kép kiválasztása ownCloud-ból" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formátum egyedi, Rövid név, Teljes név, Visszafelé vagy Visszafelé vesszővel" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Név részleteinek szerkesztése" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Szervezet" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Törlés" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Becenév" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Becenév megadása" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "yyyy-mm-dd" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Csoportok" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Vesszővel válassza el a csoportokat" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Csoportok szerkesztése" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Előnyben részesített" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Adjon meg érvényes email címet" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Adja meg az email címet" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Postai cím" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Email cím törlése" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Adja meg a telefonszámot" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Telefonszám törlése" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Megtekintés a térképen" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Cím részleteinek szerkesztése" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Megjegyzések" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Mező hozzáadása" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefonszám" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Cím" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Jegyzet" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Kapcsolat letöltése" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Kapcsolat törlése" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Az ideiglenes kép el lett távolítva a gyorsítótárból" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Cím szerkesztése" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Típus" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postafiók" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Kiterjesztett" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Város" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Megye" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Irányítószám" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Ország" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Címlista" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Előtag" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Miss" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Ms" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Mr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Mrs" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Teljes név" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "További nevek" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Családnév" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Utótag" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Ifj." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Id." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Kapcsolat-fájl importálása" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Válassza ki a címlistát" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Címlista létrehozása" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Új címlista neve" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Kapcsolatok importálása" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Nincsenek kapcsolatok a címlistában" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Kapcsolat hozzáadása" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV szinkronizációs címek" - -#: templates/settings.php:3 -msgid "more info" -msgstr "további információ" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Elsődleges cím" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Letöltés" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Szerkesztés" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Új címlista" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Mentés" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Mégsem" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 0b0e753c080a794388aebfc08921b512485fe124..20cf6de2f5d92b2b8e29717bad3854950cdefa53 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -32,55 +32,55 @@ msgstr "Nincs hozzáadandó kategória?" msgid "This category already exists: " msgstr "Ez a kategória már létezik" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Beállítások" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Január" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Február" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Március" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Április" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Május" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Június" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Július" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Augusztus" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Szeptember" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Október" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "November" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "December" @@ -108,8 +108,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nincs törlésre jelölt kategória" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Hiba" @@ -149,7 +149,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Jelszó" @@ -185,39 +186,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -241,12 +242,12 @@ msgstr "Kérés elküldve" msgid "Login failed!" msgstr "Belépés sikertelen!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Felhasználónév" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Visszaállítás igénylése" @@ -302,52 +303,77 @@ msgstr "Kategóriák szerkesztése" msgid "Add" msgstr "Hozzáadás" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>Rendszergazdafiók</strong> létrehozása" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Haladó" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Adatkönyvtár" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Adatbázis konfigurálása" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "használva lesz" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Adatbázis név" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Beállítás befejezése" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "webszolgáltatások az irányításod alatt" @@ -355,15 +381,29 @@ msgstr "webszolgáltatások az irányításod alatt" msgid "Log out" msgstr "Kilépés" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Elfelejtett jelszó?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Bejelentkezés" @@ -378,3 +418,17 @@ msgstr "Előző" #: templates/part.pagenavi.php:20 msgid "next" msgstr "Következő" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/hu_HU/files_odfviewer.po b/l10n/hu_HU/files_odfviewer.po deleted file mode 100644 index 159ec8745238ae828ff4e2a2af45c63295d7129f..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/hu_HU/files_pdfviewer.po b/l10n/hu_HU/files_pdfviewer.po deleted file mode 100644 index 1499ece9d1547e8a58436c1ed9ad203f57961120..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/hu_HU/files_texteditor.po b/l10n/hu_HU/files_texteditor.po deleted file mode 100644 index bf2f4e4b51c2c4b7540864c213217ae6f4c5fb98..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/hu_HU/gallery.po b/l10n/hu_HU/gallery.po deleted file mode 100644 index 2953d7adda80b12f0db746dbf8b19d5d182f9420..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Adam Toth <adazlord@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Képek" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Beállítások" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Újravizsgálás" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Állj" - -#: templates/index.php:18 -msgid "Share" -msgstr "Megosztás" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Vissza" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Megerősítés eltávolítása" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "El akarja távolítani az albumot?" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Albumnév megváltoztatása" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Új albumnév" diff --git a/l10n/hu_HU/impress.po b/l10n/hu_HU/impress.po deleted file mode 100644 index 4c5473d27ed772f64274ceb705f8de8db6f7f6e0..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/hu_HU/media.po b/l10n/hu_HU/media.po deleted file mode 100644 index aead2550d9b507770d5530dcee56707fc041ded3..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Adam Toth <adazlord@gmail.com>, 2012. -# Peter Borsa <peter.borsa@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.net/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Zene" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Lejátszás" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Szünet" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Előző" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Következő" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Némítás" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Némítás megszüntetése" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Gyűjtemény újraolvasása" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Előadó" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Cím" diff --git a/l10n/hu_HU/tasks.po b/l10n/hu_HU/tasks.po deleted file mode 100644 index 73f8d611037e19d0b243036cdc3ac501b75eba8d..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/hu_HU/user_migrate.po b/l10n/hu_HU/user_migrate.po deleted file mode 100644 index ba51abb24d95d30d3c21d2469c122e3646f93c6b..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/hu_HU/user_openid.po b/l10n/hu_HU/user_openid.po deleted file mode 100644 index bc86ad58968e77c5a08b75e58f8635db6d1058c7..0000000000000000000000000000000000000000 --- a/l10n/hu_HU/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/hy/admin_dependencies_chk.po b/l10n/hy/admin_dependencies_chk.po deleted file mode 100644 index c649d0fc44d59f232752da59f14dc0b805de0165..0000000000000000000000000000000000000000 --- a/l10n/hy/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/hy/admin_migrate.po b/l10n/hy/admin_migrate.po deleted file mode 100644 index 2affc03615a0f5d02b5957b0fbc5b12e6c2f8fd8..0000000000000000000000000000000000000000 --- a/l10n/hy/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/hy/bookmarks.po b/l10n/hy/bookmarks.po deleted file mode 100644 index 74aef2630193c66083ce91e652c8d4baebcb1424..0000000000000000000000000000000000000000 --- a/l10n/hy/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/hy/calendar.po b/l10n/hy/calendar.po deleted file mode 100644 index 2187e755864c3fb9c9ad9eaf17272f1bfa42f3ec..0000000000000000000000000000000000000000 --- a/l10n/hy/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Arman Poghosyan <armpogart@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Օրացույց" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "Այլ" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "" - -#: lib/object.php:373 -msgid "Daily" -msgstr "" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Ամիս" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Այսօր" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Բեռնել" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Ջնջել" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Պահպանել" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Հաստատել" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Նկարագրություն" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/hy/contacts.po b/l10n/hy/contacts.po deleted file mode 100644 index 4cffb4779e5a06971cf132c322f371c27ad36f82..0000000000000000000000000000000000000000 --- a/l10n/hy/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 7a03a8bcd298a2307763337687741defbbafbfe9..92b68ed29b008f9b27a68610cc57d08e76d4820d 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -29,55 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -182,39 +183,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -238,12 +239,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -299,52 +300,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/hy/files_odfviewer.po b/l10n/hy/files_odfviewer.po deleted file mode 100644 index bdc26a3a67acd2fa433feb74dccec30e26db5363..0000000000000000000000000000000000000000 --- a/l10n/hy/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/hy/files_pdfviewer.po b/l10n/hy/files_pdfviewer.po deleted file mode 100644 index 7b725e07b84839146b155b1e2d2bb2ef1ae3e732..0000000000000000000000000000000000000000 --- a/l10n/hy/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/hy/files_texteditor.po b/l10n/hy/files_texteditor.po deleted file mode 100644 index e9e8f856c93008d137c872590900fe52577a56cb..0000000000000000000000000000000000000000 --- a/l10n/hy/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/hy/gallery.po b/l10n/hy/gallery.po deleted file mode 100644 index c9eb3b260a826958f67040e71cc89aa0a79ff701..0000000000000000000000000000000000000000 --- a/l10n/hy/gallery.po +++ /dev/null @@ -1,94 +0,0 @@ -# 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: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/hy/impress.po b/l10n/hy/impress.po deleted file mode 100644 index 78bcd125e1a8be817e2190f94874760124d8628b..0000000000000000000000000000000000000000 --- a/l10n/hy/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/hy/media.po b/l10n/hy/media.po deleted file mode 100644 index fb40ed0755f536428bfbb6fa1adf3a6d0bb1bb02..0000000000000000000000000000000000000000 --- a/l10n/hy/media.po +++ /dev/null @@ -1,66 +0,0 @@ -# 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: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Armenian (http://www.transifex.net/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "" - -#: templates/music.php:5 -msgid "Previous" -msgstr "" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "" - -#: templates/music.php:7 -msgid "Mute" -msgstr "" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "" - -#: templates/music.php:37 -msgid "Artist" -msgstr "" - -#: templates/music.php:38 -msgid "Album" -msgstr "" - -#: templates/music.php:39 -msgid "Title" -msgstr "" diff --git a/l10n/hy/tasks.po b/l10n/hy/tasks.po deleted file mode 100644 index d459a98917c377fb752b5e22ced51fe0e88ce5ba..0000000000000000000000000000000000000000 --- a/l10n/hy/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/hy/user_migrate.po b/l10n/hy/user_migrate.po deleted file mode 100644 index b834f8ceeeef7aaec4975e249272eea240cbd5e8..0000000000000000000000000000000000000000 --- a/l10n/hy/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/hy/user_openid.po b/l10n/hy/user_openid.po deleted file mode 100644 index ccf243a3aa0e37ee6fb4ee34ed23258c6051640a..0000000000000000000000000000000000000000 --- a/l10n/hy/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hy\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/ia/admin_dependencies_chk.po b/l10n/ia/admin_dependencies_chk.po deleted file mode 100644 index 1ac2e890832ff18dc24777c1327767fa5b72abb7..0000000000000000000000000000000000000000 --- a/l10n/ia/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/ia/admin_migrate.po b/l10n/ia/admin_migrate.po deleted file mode 100644 index c767ecf34f8a20aaa8531cb7faf614bf7121c62d..0000000000000000000000000000000000000000 --- a/l10n/ia/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/ia/bookmarks.po b/l10n/ia/bookmarks.po deleted file mode 100644 index 1848a204c0a4c45a448e68de67fc216929c4d77a..0000000000000000000000000000000000000000 --- a/l10n/ia/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/ia/calendar.po b/l10n/ia/calendar.po deleted file mode 100644 index 1f9814996359efdacaf1136585e86c9bc301ff1a..0000000000000000000000000000000000000000 --- a/l10n/ia/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Emilio Sepúlveda <djfunkinmixer@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Necun calendarios trovate." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Nulle eventos trovate." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nove fuso horari" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Requesta invalide." - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendario" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Anniversario de nativitate" - -#: lib/app.php:122 -msgid "Business" -msgstr "Affaires" - -#: lib/app.php:123 -msgid "Call" -msgstr "Appello" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clientes" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Dies feriate" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Incontro" - -#: lib/app.php:131 -msgid "Other" -msgstr "Altere" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Personal" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projectos" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Demandas" - -#: lib/app.php:135 -msgid "Work" -msgstr "Travalio" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "sin nomine" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nove calendario" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Non repite" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Quotidian" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Septimanal" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Cata die" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mensual" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Cata anno" - -#: lib/object.php:388 -msgid "never" -msgstr "nunquam" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "per data" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Lunedi" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Martedi" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Mercuridi" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Jovedi" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Venerdi" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sabbato" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Dominica" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "prime" - -#: lib/object.php:429 -msgid "second" -msgstr "secunde" - -#: lib/object.php:430 -msgid "third" -msgstr "tertie" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "ultime" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "januario" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februario" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Martio" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "April" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mai" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Junio" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Julio" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Augusto" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Septembre" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Octobre" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Novembre" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Decembre" - -#: lib/object.php:488 -msgid "by events date" -msgstr "per data de eventos" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "per dia e mense" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Omne die" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Campos incomplete" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titulo" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Data de initio" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Hora de initio" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Data de fin" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Hora de fin" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Septimana" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mense" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hodie" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Tu calendarios" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Discarga" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Modificar" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Deler" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nove calendario" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Modificar calendario" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Active" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Color de calendario" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Salveguardar" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Inviar" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Cancellar" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Modificar evento" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportar" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Compartir" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Titulo del evento." - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categoria" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Modificar categorias" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Ab" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "A" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Optiones avantiate" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Loco" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Loco del evento." - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Description" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Description del evento" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Repeter" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avantiate" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Seliger dies del septimana" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Seliger dies" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Seliger menses" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Seliger septimanas" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervallo" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Fin" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "crear un nove calendario" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importar un file de calendario" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nomine del calendario" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importar" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Clauder dialogo" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Crear un nove evento" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Vide un evento" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nulle categorias seligite" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "de" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "in" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Fuso horari" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Usatores" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Gruppos" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/ia/contacts.po b/l10n/ia/contacts.po deleted file mode 100644 index 8b6bbeb6752f0b493142436aac77ade0ab1c0359..0000000000000000000000000000000000000000 --- a/l10n/ia/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Emilio Sepúlveda <djfunkinmixer@gmail.com>, 2011. -# Emilio Sepúlveda <emisepulvedam@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Nulle adressario trovate" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Nulle contactos trovate." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Non pote adder proprietate vacue." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Error durante le scriptura in le file temporari" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Il habeva un error durante le cargamento del imagine." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Nulle file esseva incargate." - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Manca un dossier temporari" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Contactos" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Iste non es tu libro de adresses" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Contacto non poterea esser legite" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Travalio" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Domo" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobile" - -#: lib/app.php:203 -msgid "Text" -msgstr "Texto" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voce" - -#: lib/app.php:205 -msgid "Message" -msgstr "Message" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Anniversario" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contacto" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Adder contacto" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importar" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adressarios" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Deler photo currente" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Modificar photo currente" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Incargar nove photo" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Seliger photo ex ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisation" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Deler" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Pseudonymo" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Inserer pseudonymo" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Gruppos" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Modificar gruppos" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferite" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Entrar un adresse de e-posta" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Deler adresse de E-posta" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Entrar un numero de telephono" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Deler numero de telephono" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Vider in un carta" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Adder notas hic" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Adder campo" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Phono" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-posta" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresse" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Nota" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Discargar contacto" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Deler contacto" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Modificar adresses" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Typo" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Cassa postal" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Extendite" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Citate" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Region" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Codice postal" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Pais" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adressario" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Prefixos honorific" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Senioretta" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Sr." - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Sra." - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Nomine date" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Nomines additional" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Nomine de familia" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Suffixos honorific" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importar un file de contactos" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Per favor selige le adressario" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Crear un nove adressario" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nomine del nove gruppo:" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Adder adressario" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "plus info" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Discargar" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Modificar" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nove adressario" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Salveguardar" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Cancellar" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 76ea29ba15ca912dfd2ae289e421173cdc326401..f194ff40eb68626bd837585326c8e3e6992bbbbf 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "Iste categoria jam existe:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurationes" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -106,8 +106,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Contrasigno" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "Requestate" msgid "Login failed!" msgstr "Initio de session fallite!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nomine de usator" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Requestar reinitialisation" @@ -300,52 +301,77 @@ msgstr "Modificar categorias" msgid "Add" msgstr "Adder" +#: 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 "Crear un <strong>conto de administration</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "servicios web sub tu controlo" @@ -353,15 +379,29 @@ msgstr "servicios web sub tu controlo" msgid "Log out" msgstr "Clauder le session" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "memora" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Aperir session" @@ -376,3 +416,17 @@ msgstr "prev" #: templates/part.pagenavi.php:20 msgid "next" msgstr "prox" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/ia/files_odfviewer.po b/l10n/ia/files_odfviewer.po deleted file mode 100644 index 566f1c5b671573f1d659faf9de601a735ec81602..0000000000000000000000000000000000000000 --- a/l10n/ia/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ia/files_pdfviewer.po b/l10n/ia/files_pdfviewer.po deleted file mode 100644 index 46c46d9c816edfd6521cd2ad1017b42b877c8e0b..0000000000000000000000000000000000000000 --- a/l10n/ia/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ia/files_texteditor.po b/l10n/ia/files_texteditor.po deleted file mode 100644 index a7f1af65067826186cd8ddb8d929cba7166aa90d..0000000000000000000000000000000000000000 --- a/l10n/ia/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ia/gallery.po b/l10n/ia/gallery.po deleted file mode 100644 index 3e8249066f6a7e6cc8fb58dcaca154e06ca1e6e0..0000000000000000000000000000000000000000 --- a/l10n/ia/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Emilio Sepúlveda <emisepulvedam@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Rescannar" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Retro" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/ia/impress.po b/l10n/ia/impress.po deleted file mode 100644 index 0f36f5ce300554d66f0a4146254d3cdf8c0bf2d3..0000000000000000000000000000000000000000 --- a/l10n/ia/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ia/media.po b/l10n/ia/media.po deleted file mode 100644 index 4da59fbd03d7a50060ee99a322016a5ce8c6e34a..0000000000000000000000000000000000000000 --- a/l10n/ia/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Emilio Sepúlveda <djfunkinmixer@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Interlingua (http://www.transifex.net/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musica" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Reproducer" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pausa" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Previe" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Proxime" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Mute" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Con sono" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Rescannar collection" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artista" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titulo" diff --git a/l10n/ia/tasks.po b/l10n/ia/tasks.po deleted file mode 100644 index be00099555c15b3e2a266ad4b58a966a60c4f139..0000000000000000000000000000000000000000 --- a/l10n/ia/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/ia/user_migrate.po b/l10n/ia/user_migrate.po deleted file mode 100644 index b581cb2029f4eae35a4ab4ad3e64ca0e28cd4ee0..0000000000000000000000000000000000000000 --- a/l10n/ia/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/ia/user_openid.po b/l10n/ia/user_openid.po deleted file mode 100644 index a3e999d4377ae9a6b2d76f8e633f450c621cba78..0000000000000000000000000000000000000000 --- a/l10n/ia/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ia\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/id/admin_dependencies_chk.po b/l10n/id/admin_dependencies_chk.po deleted file mode 100644 index ae358d17af8160b10bbf82d387fab32c28c6919f..0000000000000000000000000000000000000000 --- a/l10n/id/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/id/admin_migrate.po b/l10n/id/admin_migrate.po deleted file mode 100644 index 52a6b1908b9d886233a2cfc467b564b9dbe9d4f9..0000000000000000000000000000000000000000 --- a/l10n/id/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/id/bookmarks.po b/l10n/id/bookmarks.po deleted file mode 100644 index d9e1fba3acad03560ecc205ce466b7f488954676..0000000000000000000000000000000000000000 --- a/l10n/id/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/id/calendar.po b/l10n/id/calendar.po deleted file mode 100644 index 9b2e6aaf97c83b73af2c9631b868f5f1431abb19..0000000000000000000000000000000000000000 --- a/l10n/id/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Muhammad Radifar <m_radifar05@yahoo.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Zona waktu telah diubah" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Permintaan tidak sah" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Tidak akan mengulangi" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Harian" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Mingguan" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Setiap Hari Minggu" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Dwi-mingguan" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Bulanan" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Tahunan" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Semua Hari" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Judul" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Minggu" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Bulan" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hari ini" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Unduh" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Sunting" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Sunting kalender" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Namatampilan" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktif" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Warna kalender" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Sampaikan" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Sunting agenda" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Judul Agenda" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategori" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Agenda di Semua Hari" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Dari" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Ke" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Lokasi" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Lokasi Agenda" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Deskripsi" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Deskripsi dari Agenda" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Ulangi" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Buat agenda baru" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Zonawaktu" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/id/contacts.po b/l10n/id/contacts.po deleted file mode 100644 index 0b3df912c24ad1cab5604eaafd8489f0de207198..0000000000000000000000000000000000000000 --- a/l10n/id/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 1cd079372c466f6518624ea1c6f35b2d9c29b4f4..2f45fed4aaf99ad150141532878de79274f6c715 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -32,55 +32,55 @@ msgstr "Tidak ada kategori yang akan ditambahkan?" msgid "This category already exists: " msgstr "Kategori ini sudah ada:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Setelan" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Januari" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Februari" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Maret" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "April" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mei" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Juni" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Juli" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Agustus" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "September" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Oktober" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Nopember" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Desember" @@ -108,8 +108,8 @@ msgstr "Oke" msgid "No categories selected for deletion." msgstr "Tidak ada kategori terpilih untuk penghapusan." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -149,7 +149,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Password" @@ -185,39 +186,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -241,12 +242,12 @@ msgstr "Telah diminta" msgid "Login failed!" msgstr "Login gagal!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Username" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Meminta reset" @@ -302,52 +303,77 @@ msgstr "Edit kategori" msgid "Add" msgstr "Tambahkan" +#: 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 "Buat sebuah <strong>akun admin</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Tingkat Lanjut" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfigurasi database" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Pengguna database" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Password database" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nama database" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Host database" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "web service dibawah kontrol anda" @@ -355,15 +381,29 @@ msgstr "web service dibawah kontrol anda" msgid "Log out" msgstr "Keluar" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Lupa password anda?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "selalu login" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Masuk" @@ -378,3 +418,17 @@ msgstr "sebelum" #: templates/part.pagenavi.php:20 msgid "next" msgstr "selanjutnya" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/id/files_odfviewer.po b/l10n/id/files_odfviewer.po deleted file mode 100644 index 7680253aef3fa998189004d09f64fdddf90b10cd..0000000000000000000000000000000000000000 --- a/l10n/id/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/id/files_pdfviewer.po b/l10n/id/files_pdfviewer.po deleted file mode 100644 index a9fc081e1854bd3cce1affa9637eee4cc1647e18..0000000000000000000000000000000000000000 --- a/l10n/id/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/id/files_texteditor.po b/l10n/id/files_texteditor.po deleted file mode 100644 index 754e5072994361f014d05b68073534f83d138d6c..0000000000000000000000000000000000000000 --- a/l10n/id/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/id/gallery.po b/l10n/id/gallery.po deleted file mode 100644 index 6b4c75eae942adfe99fd2b633426afd92f7a0882..0000000000000000000000000000000000000000 --- a/l10n/id/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Muhammad Panji <sumodirjo@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Gambar" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Setting" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Scan ulang" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Berhenti" - -#: templates/index.php:18 -msgid "Share" -msgstr "Bagikan" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Kembali" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Hapus konfirmasi" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Apakah anda ingin menghapus album" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Ubah nama album" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nama album baru" diff --git a/l10n/id/impress.po b/l10n/id/impress.po deleted file mode 100644 index dfec96ea44fe70924d767d0ba3664e03b0fe788b..0000000000000000000000000000000000000000 --- a/l10n/id/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/id/media.po b/l10n/id/media.po deleted file mode 100644 index 5d6c3e38ec1d9d4a24cdc47781f35bf93f189789..0000000000000000000000000000000000000000 --- a/l10n/id/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Muhammad Radifar <m_radifar05@yahoo.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musik" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Mainkan" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Jeda" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Sebelumnya" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Selanjutnya" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Nonaktifkan suara" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Aktifkan suara" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Pindai ulang Koleksi" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artis" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Judul" diff --git a/l10n/id/tasks.po b/l10n/id/tasks.po deleted file mode 100644 index bea6e2596fe4bf4775253acdf881852e4ceef6ae..0000000000000000000000000000000000000000 --- a/l10n/id/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/id/user_migrate.po b/l10n/id/user_migrate.po deleted file mode 100644 index 8ff8940b53f7055b8f896dffdf7daf80f4c2d864..0000000000000000000000000000000000000000 --- a/l10n/id/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/id/user_openid.po b/l10n/id/user_openid.po deleted file mode 100644 index 426a6396684f71e3818762f047f62e0d026d0193..0000000000000000000000000000000000000000 --- a/l10n/id/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/id_ID/admin_dependencies_chk.po b/l10n/id_ID/admin_dependencies_chk.po deleted file mode 100644 index 359c14556bb001745d2077b562c73f0f0ffb3600..0000000000000000000000000000000000000000 --- a/l10n/id_ID/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/id_ID/admin_migrate.po b/l10n/id_ID/admin_migrate.po deleted file mode 100644 index 129c39c8d73513b4e74bd2c33be8012204e9ca1c..0000000000000000000000000000000000000000 --- a/l10n/id_ID/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/id_ID/bookmarks.po b/l10n/id_ID/bookmarks.po deleted file mode 100644 index f954c1e8a4c31dca75331c4dc0110992933205be..0000000000000000000000000000000000000000 --- a/l10n/id_ID/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/id_ID/calendar.po b/l10n/id_ID/calendar.po deleted file mode 100644 index ebef9b9adec1fc2f5164ef2bc029ec08426987ce..0000000000000000000000000000000000000000 --- a/l10n/id_ID/calendar.po +++ /dev/null @@ -1,813 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "" - -#: lib/object.php:373 -msgid "Daily" -msgstr "" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/id_ID/contacts.po b/l10n/id_ID/contacts.po deleted file mode 100644 index a7964324daacedfe1d52b6f5699d1a018da72fa3..0000000000000000000000000000000000000000 --- a/l10n/id_ID/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/id_ID/core.po b/l10n/id_ID/core.po index d0c351df95d1812bc76d788b290965850355b550..bda0015060e82d3d3a9bc55e15a2e521254c7136 100644 --- a/l10n/id_ID/core.po +++ b/l10n/id_ID/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -29,55 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -182,39 +183,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -238,12 +239,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -299,52 +300,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/id_ID/files_odfviewer.po b/l10n/id_ID/files_odfviewer.po deleted file mode 100644 index 0f3cc53112bc521eef9f6efdd20b8ceed774d1fa..0000000000000000000000000000000000000000 --- a/l10n/id_ID/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/id_ID/files_pdfviewer.po b/l10n/id_ID/files_pdfviewer.po deleted file mode 100644 index 395dc8b4c1288eb9813a1dd8629b782845de89f6..0000000000000000000000000000000000000000 --- a/l10n/id_ID/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/id_ID/files_texteditor.po b/l10n/id_ID/files_texteditor.po deleted file mode 100644 index a94adcdcf361710384a180de10cbd843878e86ee..0000000000000000000000000000000000000000 --- a/l10n/id_ID/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/id_ID/gallery.po b/l10n/id_ID/gallery.po deleted file mode 100644 index 6d62fde891dea3d3ff2a16cf6b0bbf68abcf1429..0000000000000000000000000000000000000000 --- a/l10n/id_ID/gallery.po +++ /dev/null @@ -1,58 +0,0 @@ -# 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: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:30+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/id_ID/impress.po b/l10n/id_ID/impress.po deleted file mode 100644 index d5c02597729e1f35df85aa86937ffc5cb80ab01d..0000000000000000000000000000000000000000 --- a/l10n/id_ID/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/id_ID/media.po b/l10n/id_ID/media.po deleted file mode 100644 index 1db3e2f400f0858cc57dcec255ff39377fb3536a..0000000000000000000000000000000000000000 --- a/l10n/id_ID/media.po +++ /dev/null @@ -1,66 +0,0 @@ -# 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: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "" - -#: templates/music.php:5 -msgid "Previous" -msgstr "" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "" - -#: templates/music.php:7 -msgid "Mute" -msgstr "" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "" - -#: templates/music.php:37 -msgid "Artist" -msgstr "" - -#: templates/music.php:38 -msgid "Album" -msgstr "" - -#: templates/music.php:39 -msgid "Title" -msgstr "" diff --git a/l10n/id_ID/tasks.po b/l10n/id_ID/tasks.po deleted file mode 100644 index cf74571c756aa8b4603691044da0d8ed60ac1192..0000000000000000000000000000000000000000 --- a/l10n/id_ID/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/id_ID/user_migrate.po b/l10n/id_ID/user_migrate.po deleted file mode 100644 index fd3779f871c946840c2452ed04ec74c539d827a0..0000000000000000000000000000000000000000 --- a/l10n/id_ID/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/id_ID/user_openid.po b/l10n/id_ID/user_openid.po deleted file mode 100644 index 42b92de9fa085a3abe6014fa032a2e661c55d02c..0000000000000000000000000000000000000000 --- a/l10n/id_ID/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/owncloud/language/id_ID/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/it/admin_dependencies_chk.po b/l10n/it/admin_dependencies_chk.po deleted file mode 100644 index 46d1082e634f81bac9328206a2a0f1d1661fdd3c..0000000000000000000000000000000000000000 --- a/l10n/it/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 05:51+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Il modulo php-json è richiesto per l'intercomunicazione di diverse applicazioni" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Il modulo php-curl è richiesto per scaricare il titolo della pagina quando si aggiunge un segnalibro" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Il modulo php-gd è richiesto per creare miniature delle tue immagini" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Il modulo php-ldap è richiesto per collegarsi a un server ldap" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Il modulo php-zip è richiesto per scaricare diversi file contemporaneamente" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Il modulo php-mb_multibyte è richiesto per gestire correttamente la codifica." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Il modulo php-ctype è richiesto per la validazione dei dati." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Il modulo php-xml è richiesto per condividere i file con webdav." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "La direttiva allow_url_fopen del tuo php.ini deve essere impostata a 1 per recuperare la base di conoscenza dai server di OCS" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Il modulo php-pdo è richiesto per archiviare i dati di ownCloud in un database." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Stato delle dipendenze" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Usato da:" diff --git a/l10n/it/admin_migrate.po b/l10n/it/admin_migrate.po deleted file mode 100644 index 2da23d877f83029fd3db6364265ecab573ea2ac1..0000000000000000000000000000000000000000 --- a/l10n/it/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 05:47+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Esporta questa istanza di ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Questa operazione creerà un file compresso che contiene i dati dell'istanza di ownCloud. Scegli il tipo di esportazione:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Esporta" diff --git a/l10n/it/bookmarks.po b/l10n/it/bookmarks.po deleted file mode 100644 index 7ed1ded6a77cab558984ec1000347462424cc276..0000000000000000000000000000000000000000 --- a/l10n/it/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 08:36+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "senza nome" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Quando vuoi creare rapidamente un segnalibro, trascinalo sui segnalibri del browser e fai clic su di esso:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Leggi dopo" - -#: templates/list.php:13 -msgid "Address" -msgstr "Indirizzo" - -#: templates/list.php:14 -msgid "Title" -msgstr "Titolo" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Tag" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Salva segnalibro" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Non hai segnalibri" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Bookmarklet <br />" diff --git a/l10n/it/calendar.po b/l10n/it/calendar.po deleted file mode 100644 index efdc82532d89cc3defcd69aa1e07a541c62ef5f8..0000000000000000000000000000000000000000 --- a/l10n/it/calendar.po +++ /dev/null @@ -1,821 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Andrea Scarpino <andrea@archlinux.org>, 2011. -# <cosenal@gmail.com>, 2011. -# <formalist@email.it>, 2012. -# Francesco Apruzzese <cescoap@gmail.com>, 2011. -# Lorenzo Beltrami <lorenzo.beba@gmail.com>, 2011. -# <marco@carnazzo.it>, 2011, 2012. -# <rb.colombo@gmail.com>, 2011. -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-12 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 07:01+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Non tutti i calendari sono mantenuti completamente in cache" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Tutto sembra essere mantenuto completamente in cache" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Nessun calendario trovato." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Nessun evento trovato." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Calendario sbagliato" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Il file non conteneva alcun evento o tutti gli eventi erano già salvati nel tuo calendario." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "gli eventi sono stati salvati nel nuovo calendario" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Importazione non riuscita" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "gli eventi sono stati salvati nel tuo calendario" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nuovo fuso orario:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Fuso orario cambiato" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Richiesta non valida" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendario" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd d/M" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd d/M" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, d MMM yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Compleanno" - -#: lib/app.php:122 -msgid "Business" -msgstr "Azienda" - -#: lib/app.php:123 -msgid "Call" -msgstr "Chiama" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clienti" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Consegna" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Vacanze" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idee" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Viaggio" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Anniversario" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Riunione" - -#: lib/app.php:131 -msgid "Other" -msgstr "Altro" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Personale" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Progetti" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Domande" - -#: lib/app.php:135 -msgid "Work" -msgstr "Lavoro" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "da" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "senza nome" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nuovo calendario" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Non ripetere" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Giornaliero" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Settimanale" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Ogni giorno della settimana" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Ogni due settimane" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mensile" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Annuale" - -#: lib/object.php:388 -msgid "never" -msgstr "mai" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "per occorrenze" - -#: lib/object.php:390 -msgid "by date" -msgstr "per data" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "per giorno del mese" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "per giorno della settimana" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Lunedì" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Martedì" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Mercoledì" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Giovedì" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Venerdì" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sabato" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Domenica" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "settimana del mese degli eventi" - -#: lib/object.php:428 -msgid "first" -msgstr "primo" - -#: lib/object.php:429 -msgid "second" -msgstr "secondo" - -#: lib/object.php:430 -msgid "third" -msgstr "terzo" - -#: lib/object.php:431 -msgid "fourth" -msgstr "quarto" - -#: lib/object.php:432 -msgid "fifth" -msgstr "quinto" - -#: lib/object.php:433 -msgid "last" -msgstr "ultimo" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Gennaio" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Febbraio" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Marzo" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Aprile" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maggio" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Giugno" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Luglio" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Agosto" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Settembre" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Ottobre" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Novembre" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Dicembre" - -#: lib/object.php:488 -msgid "by events date" -msgstr "per data evento" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "per giorno/i dell'anno" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "per numero/i settimana" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "per giorno e mese" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Dom." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Lun." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Mar." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Mer." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Gio." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Ven." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Sab." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Gen." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Apr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Mag." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Giu." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Lug." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Ago." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Set." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Ott." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Dic." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Tutti il giorno" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Campi mancanti" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titolo" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Dal giorno" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Ora iniziale" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Al giorno" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Ora finale" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "L'evento finisce prima d'iniziare" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Si è verificato un errore del database" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Settimana" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mese" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Elenco" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Oggi" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Impostazioni" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "I tuoi calendari" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Collegamento CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Calendari condivisi" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Nessun calendario condiviso" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Condividi calendario" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Scarica" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Modifica" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Elimina" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "condiviso con te da" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nuovo calendario" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Modifica calendario" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Nome visualizzato" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Attivo" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Colore calendario" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Salva" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Invia" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Annulla" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Modifica un evento" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Esporta" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informazioni evento" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Ripetizione" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Avviso" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Partecipanti" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Condividi" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Titolo dell'evento" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categoria" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Categorie separate da virgole" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Modifica le categorie" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Evento che occupa tutta la giornata" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Da" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "A" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Opzioni avanzate" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Luogo" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Luogo dell'evento" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Descrizione" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Descrizione dell'evento" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Ripeti" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avanzato" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Seleziona i giorni della settimana" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Seleziona i giorni" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "e il giorno dell'anno degli eventi." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "e il giorno del mese degli eventi." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Seleziona i mesi" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Seleziona le settimane" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "e la settimana dell'anno degli eventi." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervallo" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Fine" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "occorrenze" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Crea un nuovo calendario" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importa un file di calendario" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Scegli un calendario" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nome del nuovo calendario" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Usa un nome disponibile!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Un calendario con questo nome esiste già. Se continui, i due calendari saranno uniti." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importa" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Chiudi la finestra di dialogo" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Crea un nuovo evento" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Visualizza un evento" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nessuna categoria selezionata" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "di" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "alle" - -#: templates/settings.php:10 -msgid "General" -msgstr "Generale" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Fuso orario" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Aggiorna automaticamente il fuso orario" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Formato orario" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "La settimana inizia il" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Cache" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Cancella gli eventi che si ripetono dalla cache" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URL" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Indirizzi di sincronizzazione calendari CalDAV" - -#: templates/settings.php:87 -msgid "more info" -msgstr "ulteriori informazioni" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Indirizzo principale (Kontact e altri)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Collegamento(i) iCalendar sola lettura" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Utenti" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "seleziona utenti" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Modificabile" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Gruppi" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "seleziona gruppi" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "rendi pubblico" diff --git a/l10n/it/contacts.po b/l10n/it/contacts.po deleted file mode 100644 index 3512cf8d11c0965e898954fa922b5fbc6430afc2..0000000000000000000000000000000000000000 --- a/l10n/it/contacts.po +++ /dev/null @@ -1,956 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <formalist@email.it>, 2012. -# Francesco Apruzzese <cescoap@gmail.com>, 2011. -# <marco@carnazzo.it>, 2011, 2012. -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 05:41+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Errore nel (dis)attivare la rubrica." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID non impostato." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Impossibile aggiornare una rubrica senza nome." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Errore durante l'aggiornamento della rubrica." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Nessun ID fornito" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Errore di impostazione del codice di controllo." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Nessuna categoria selezionata per l'eliminazione." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Nessuna rubrica trovata." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Nessun contatto trovato." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Si è verificato un errore nell'aggiunta del contatto." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "il nome dell'elemento non è impostato." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Impossibile elaborare il contatto: " - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Impossibile aggiungere una proprietà vuota." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Deve essere inserito almeno un indirizzo." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "P" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Parametro IM mancante." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "IM sconosciuto:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informazioni sulla vCard non corrette. Ricarica la pagina." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "ID mancante" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Errore in fase di elaborazione del file VCard per l'ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "il codice di controllo non è impostato." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Le informazioni della vCard non sono corrette. Ricarica la pagina: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Qualcosa è andato storto. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Nessun ID di contatto inviato." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Errore di lettura della foto del contatto." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Errore di salvataggio del file temporaneo." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "La foto caricata non è valida." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Manca l'ID del contatto." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Non è stato inviato alcun percorso a una foto." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Il file non esiste:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Errore di caricamento immagine." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Errore di recupero dell'oggetto contatto." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Errore di recupero della proprietà FOTO." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Errore di salvataggio del contatto." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Errore di ridimensionamento dell'immagine" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Errore di ritaglio dell'immagine" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Errore durante la creazione dell'immagine temporanea" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Errore durante la ricerca dell'immagine: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Errore di invio dei contatti in archivio." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Non ci sono errori, il file è stato inviato correttamente" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Il file inviato supera la direttiva upload_max_filesize nel php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Il file è stato inviato solo parzialmente" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Nessun file è stato inviato" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Manca una cartella temporanea" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Impossibile salvare l'immagine temporanea: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Impossibile caricare l'immagine temporanea: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Nessun file è stato inviato. Errore sconosciuto" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Contatti" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Siamo spiacenti, questa funzionalità non è stata ancora implementata" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Non implementata" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Impossibile ottenere un indirizzo valido." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Errore" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "Non hai i permessi per aggiungere contatti a" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Seleziona una delle tue rubriche." - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Errore relativo ai permessi" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Questa proprietà non può essere vuota." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Impossibile serializzare gli elementi." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' invocata senza l'argomento di tipo. Segnalalo a bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Modifica il nome" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Nessun file selezionato per l'invio" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Il file che stai cercando di inviare supera la dimensione massima per l'invio dei file su questo server." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Errore durante il caricamento dell'immagine di profilo." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Seleziona il tipo" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Alcuni contatti sono marcati per l'eliminazione, ma non sono stati ancora rimossi. Attendi fino al completamento dell'operazione." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Vuoi unire queste rubriche?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Risultato: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " importato, " - -#: js/loader.js:49 -msgid " failed." -msgstr " non riuscito." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Il nome visualizzato non può essere vuoto." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Rubrica non trovata:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Questa non è la tua rubrica." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Il contatto non può essere trovato." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Lavoro" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Casa" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Altro" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Cellulare" - -#: lib/app.php:203 -msgid "Text" -msgstr "Testo" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voce" - -#: lib/app.php:205 -msgid "Message" -msgstr "Messaggio" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Cercapersone" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Compleanno" - -#: lib/app.php:253 -msgid "Business" -msgstr "Lavoro" - -#: lib/app.php:254 -msgid "Call" -msgstr "Chiama" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Client" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Corriere" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Festività" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Idee" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Viaggio" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Anniversario" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Riunione" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Personale" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Progetti" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Domande" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Data di nascita di {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contatto" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "Non hai i permessi per modificare questo contatto." - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "Non hai i permessi per eliminare questo contatto." - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Aggiungi contatto" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importa" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Impostazioni" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Rubriche" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Chiudi" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Scorciatoie da tastiera" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navigazione" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Contatto successivo in elenco" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Contatto precedente in elenco" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Espandi/Contrai la rubrica corrente" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Rubrica successiva" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Rubrica precedente" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Azioni" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Aggiorna l'elenco dei contatti" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Aggiungi un nuovo contatto" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Aggiungi una nuova rubrica" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Elimina il contatto corrente" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Rilascia una foto da inviare" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Elimina la foto corrente" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Modifica la foto corrente" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Invia una nuova foto" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Seleziona la foto da ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formato personalizzato, nome breve, nome completo, invertito o invertito con virgola" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Modifica dettagli del nome" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizzazione" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Elimina" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Pseudonimo" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Inserisci pseudonimo" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Sito web" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Vai al sito web" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "gg-mm-aaaa" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Gruppi" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Separa i gruppi con virgole" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Modifica gruppi" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferito" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Specifica un indirizzo email valido" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Inserisci indirizzo email" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Invia per email" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Elimina l'indirizzo email" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Inserisci il numero di telefono" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Elimina il numero di telefono" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Client di messaggistica istantanea" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Elimina IM" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Visualizza sulla mappa" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Modifica dettagli dell'indirizzo" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Aggiungi qui le note." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Aggiungi campo" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefono" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Email" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Messaggistica istantanea" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Indirizzo" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Nota" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Scarica contatto" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Elimina contatto" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "L'immagine temporanea è stata rimossa dalla cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Modifica indirizzo" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tipo" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Casella postale" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Indirizzo" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Via e numero" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Esteso" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Numero appartamento ecc." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Città" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regione" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Ad es. stato o provincia" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "CAP" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "CAP" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Stato" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Rubrica" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Prefissi onorifici" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Sig.na" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Sig.ra" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Sig." - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sig." - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Sig.ra" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dott." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Nome" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Nomi aggiuntivi" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Cognome" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Suffissi onorifici" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importa un file di contatti" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Scegli la rubrica" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "crea una nuova rubrica" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nome della nuova rubrica" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importazione contatti" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Non hai contatti nella rubrica." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Aggiungi contatto" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Seleziona rubriche" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Inserisci il nome" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Inserisci una descrizione" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Indirizzi di sincronizzazione CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "altre informazioni" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Indirizzo principale (Kontact e altri)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Mostra collegamento CardDav" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Mostra collegamento VCF in sola lettura" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Condividi" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Scarica" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Modifica" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nuova rubrica" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nome" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Descrizione" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Salva" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Annulla" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Altro..." diff --git a/l10n/it/core.po b/l10n/it/core.po index 6127433b0fe842052fd3e9208635b529ddb500d4..7cc9f7dedddc55a40ee87769d4e19eefe65bea8a 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" -"PO-Revision-Date: 2012-09-29 05:31+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 08:03+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Nessuna categoria da aggiungere?" msgid "This category already exists: " msgstr "Questa categoria esiste già: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Gennaio" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Febbraio" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Marzo" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Aprile" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Maggio" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Giugno" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Luglio" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Agosto" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Settembre" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Ottobre" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Novembre" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Dicembre" @@ -110,8 +110,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nessuna categoria selezionata per l'eliminazione." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Errore" @@ -151,7 +151,8 @@ msgstr "Condividi con collegamento" msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Password" @@ -187,39 +188,39 @@ msgstr "con" msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "può modificare" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "creare" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "aggiornare" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "eliminare" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "condividere" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" @@ -243,8 +244,8 @@ msgstr "Richiesto" msgid "Login failed!" msgstr "Accesso non riuscito!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nome utente" @@ -304,52 +305,77 @@ msgstr "Modifica le categorie" msgid "Add" msgstr "Aggiungi" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Avviso di sicurezza" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Non è disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account." + +#: 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 "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito." + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Crea un <strong>account amministratore</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avanzate" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Cartella dati" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configura il database" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "sarà utilizzato" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "servizi web nelle tue mani" @@ -357,15 +383,29 @@ msgstr "servizi web nelle tue mani" msgid "Log out" msgstr "Esci" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "Accesso automatico rifiutato." + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Se non hai cambiato la password recentemente, il tuo account potrebbe essere stato compromesso." + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "ricorda" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Accedi" @@ -380,3 +420,17 @@ msgstr "precedente" #: templates/part.pagenavi.php:20 msgid "next" msgstr "successivo" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "Avviso di sicurezza" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "Verifica la tua password.<br/>Per motivi di sicurezza, potresti ricevere una richiesta di digitare nuovamente la password." + +#: templates/verify.php:16 +msgid "Verify" +msgstr "Verifica" diff --git a/l10n/it/files_odfviewer.po b/l10n/it/files_odfviewer.po deleted file mode 100644 index 0fae9bc23f9902d4ba5912359a5721d130e39bd1..0000000000000000000000000000000000000000 --- a/l10n/it/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/it/files_pdfviewer.po b/l10n/it/files_pdfviewer.po deleted file mode 100644 index 3f4595ffe2ae31a8227be4728aa0a3b6fd114980..0000000000000000000000000000000000000000 --- a/l10n/it/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/it/files_texteditor.po b/l10n/it/files_texteditor.po deleted file mode 100644 index 747a70244c9b70207b4194695f929d2e45e06cdc..0000000000000000000000000000000000000000 --- a/l10n/it/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/it/gallery.po b/l10n/it/gallery.po deleted file mode 100644 index d60292cea1537bd7530717aa8e24b52750ba1762..0000000000000000000000000000000000000000 --- a/l10n/it/gallery.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <formalist@email.it>, 2012. -# <marco@carnazzo.it>, 2012. -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-26 02:01+0200\n" -"PO-Revision-Date: 2012-07-25 20:36+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Immagini" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Condividi la galleria" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Errore: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Errore interno" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Presentazione" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Indietro" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Rimuovi conferma" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Vuoi rimuovere l'album" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Cambia il nome dell'album" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nuovo nome dell'album" diff --git a/l10n/it/impress.po b/l10n/it/impress.po deleted file mode 100644 index 31e6171b4d5c95c985f7d2e8cc6f12adfb6ab26a..0000000000000000000000000000000000000000 --- a/l10n/it/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/it/media.po b/l10n/it/media.po deleted file mode 100644 index 054877623e527c5f31800df75a4bd0e976780876..0000000000000000000000000000000000000000 --- a/l10n/it/media.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Francesco Apruzzese <cescoap@gmail.com>, 2011. -# <marco@carnazzo.it>, 2011. -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musica" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Riproduci" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pausa" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Precedente" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Successivo" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Disattiva audio" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Riattiva audio" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Nuova scansione collezione" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artista" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titolo" diff --git a/l10n/it/tasks.po b/l10n/it/tasks.po deleted file mode 100644 index 6e5f07a0873a6d896cec5ecee4ec28ee3c549c86..0000000000000000000000000000000000000000 --- a/l10n/it/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 06:00+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Ora/Data non valida" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Attività" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Nessuna categoria" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Non specificata" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=massima" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=media" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=minima" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Riepilogo vuoto" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Percentuale di completamento non valida" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Priorità non valida" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Aggiungi attività" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Ordina per scadenza" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Ordina per elenco" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Ordina per completamento" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Ordina per posizione" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Ordina per priorità" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Ordina per etichetta" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Caricamento attività in corso..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Importante" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Più" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Meno" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Elimina" diff --git a/l10n/it/user_migrate.po b/l10n/it/user_migrate.po deleted file mode 100644 index 9c918e027c5d5e582879d7344ce534ad7050ee63..0000000000000000000000000000000000000000 --- a/l10n/it/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 11:55+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Esporta" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Si è verificato un errore durante la creazione del file di esportazione" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Si è verificato un errore" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Esporta il tuo account utente" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Questa operazione creerà un file compresso che contiene il tuo account ownCloud." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Importa account utente" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "Zip account utente" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Importa" diff --git a/l10n/it/user_openid.po b/l10n/it/user_openid.po deleted file mode 100644 index b8036426bc97f4123f5cb241a04bf2a13c895d70..0000000000000000000000000000000000000000 --- a/l10n/it/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Vincenzo Reale <vinx.reale@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 20:39+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" -"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Questo è un server OpenID. Per ulteriori informazioni, vedi " - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identità: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Dominio: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Utente: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Accesso" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Errore: <b>nessun utente selezionato" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "puoi autenticarti ad altri siti con questo indirizzo" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Fornitore OpenID autorizzato" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Il tuo indirizzo su Wordpress, Identi.ca, …" diff --git a/l10n/ja_JP/admin_dependencies_chk.po b/l10n/ja_JP/admin_dependencies_chk.po deleted file mode 100644 index be8f217eba16999201c034616960e85d71c350ac..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 03:08+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "php-jsonモジュールはアプリケーション間の内部通信に必要です" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "php-curlモジュールはブックマーク追加時のページタイトル取得に必要です" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "php-gdモジュールはサムネイル画像の生成に必要です" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "php-ldapモジュールはLDAPサーバへの接続に必要です" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "php-zipモジュールは複数ファイルの同時ダウンロードに必要です" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "php-mb_multibyteモジュールはエンコードを正しく扱うために必要です" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "php-ctypeモジュールはデータのバリデーションに必要です" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "php-xmlモジュールはWebDAVでのファイル共有に必要です" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "php.iniのallow_url_fopenはOCSサーバから知識ベースを取得するために1に設定しなくてはなりません" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "php-pdoモジュールはデータベースにownCloudのデータを格納するために必要です" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "依存関係の状況" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "利用先 :" diff --git a/l10n/ja_JP/admin_migrate.po b/l10n/ja_JP/admin_migrate.po deleted file mode 100644 index 4411d9e77cda2e25803426ee48a0600d8d98f29d..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 05:29+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "ownCloudをエクスポート" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "このownCloudのデータを含む圧縮ファイルを生成します。\nエクスポートの種類を選択してください:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "エクスポート" diff --git a/l10n/ja_JP/bookmarks.po b/l10n/ja_JP/bookmarks.po deleted file mode 100644 index a708697103daada4555b39dd3257d77ba9c985c7..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/ja_JP/calendar.po b/l10n/ja_JP/calendar.po deleted file mode 100644 index 605bf02d2ef3f0f85783c93b81b698d258363dc3..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# <tetuyano+transi@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-22 02:03+0200\n" -"PO-Revision-Date: 2012-08-21 02:29+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "すべてのカレンダーは完全にキャッシュされていません" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "すべて完全にキャッシュされていると思われます" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "カレンダーが見つかりませんでした。" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "イベントが見つかりませんでした。" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "誤ったカレンダーです" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "イベントの無いもしくはすべてのイベントを含むファイルは既にあなたのカレンダーに保存されています。" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "イベントは新しいカレンダーに保存されました" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "インポートに失敗" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "イベントはあなたのカレンダーに保存されました" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "新しいタイムゾーン:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "タイムゾーンが変更されました" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "無効なリクエストです" - -#: appinfo/app.php:37 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "カレンダー" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "dddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "M月d日 (dddd)" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "M月d日 (dddd)" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "yyyy年M月" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "yyyy年M月d日{ '~' [yyyy年][M月]d日}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "yyyy年M月d日 (dddd)" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "誕生日" - -#: lib/app.php:122 -msgid "Business" -msgstr "ビジネス" - -#: lib/app.php:123 -msgid "Call" -msgstr "電話をかける" - -#: lib/app.php:124 -msgid "Clients" -msgstr "顧客" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "運送会社" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "休日" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "アイデア" - -#: lib/app.php:128 -msgid "Journey" -msgstr "旅行" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "記念祭" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "ミーティング" - -#: lib/app.php:131 -msgid "Other" -msgstr "その他" - -#: lib/app.php:132 -msgid "Personal" -msgstr "個人" - -#: lib/app.php:133 -msgid "Projects" -msgstr "プロジェクト" - -#: lib/app.php:134 -msgid "Questions" -msgstr "質問事項" - -#: lib/app.php:135 -msgid "Work" -msgstr "週の始まり" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "による" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "無名" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "新しくカレンダーを作成" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "繰り返さない" - -#: lib/object.php:373 -msgid "Daily" -msgstr "毎日" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "毎週" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "毎平日" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "2週間ごと" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "毎月" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "毎年" - -#: lib/object.php:388 -msgid "never" -msgstr "無し" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "回数で指定" - -#: lib/object.php:390 -msgid "by date" -msgstr "日付で指定" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "日にちで指定" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "曜日で指定" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "月" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "火" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "水" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "木" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "金" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "土" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "日" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "予定のある週を指定" - -#: lib/object.php:428 -msgid "first" -msgstr "1週目" - -#: lib/object.php:429 -msgid "second" -msgstr "2週目" - -#: lib/object.php:430 -msgid "third" -msgstr "3週目" - -#: lib/object.php:431 -msgid "fourth" -msgstr "4週目" - -#: lib/object.php:432 -msgid "fifth" -msgstr "5週目" - -#: lib/object.php:433 -msgid "last" -msgstr "最終週" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "1月" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "2月" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "3月" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "4月" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "5月" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "6月" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "7月" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "8月" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "9月" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "10月" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "11月" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "12月" - -#: lib/object.php:488 -msgid "by events date" -msgstr "日付で指定" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "日番号で指定" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "週番号で指定" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "月と日で指定" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "日付" - -#: lib/search.php:43 -msgid "Cal." -msgstr "カレンダー" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "日" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "月" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "火" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "水" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "木" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "金" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "土" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "1月" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "2月" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "3月" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "4月" - -#: templates/calendar.php:8 -msgid "May." -msgstr "5月" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "6月" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "7月" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "8月" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "9月" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "10月" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "11月" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "12月" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "終日" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "項目がありません" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "タイトル" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "開始日" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "開始時間" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "終了日" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "終了時間" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "イベント終了時間が開始時間より先です" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "データベースのエラーがありました" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "週" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "月" - -#: templates/calendar.php:41 -msgid "List" -msgstr "予定リスト" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "今日" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "設定" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "あなたのカレンダー" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDavへのリンク" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "共有カレンダー" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "共有カレンダーはありません" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "カレンダーを共有する" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "ダウンロード" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "編集" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "削除" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "共有者" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "新しいカレンダー" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "カレンダーを編集" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "表示名" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "アクティブ" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "カレンダーの色" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "保存" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "完了" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "キャンセル" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "イベントを編集" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "エクスポート" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "イベント情報" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "繰り返し" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "アラーム" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "参加者" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "共有" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "イベントのタイトル" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "カテゴリー" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "カテゴリをコンマで区切る" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "カテゴリを編集" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "終日イベント" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "開始" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "終了" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "詳細設定" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "場所" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "イベントの場所" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "メモ" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "イベントの説明" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "繰り返し" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "詳細設定" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "曜日を指定" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "日付を指定" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "対象の年を選択する。" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "対象の月を選択する。" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "月を指定する" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "週を指定する" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "対象の週を選択する。" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "間隔" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "繰り返す期間" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "回繰り返す" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "新規カレンダーの作成" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "カレンダーファイルをインポート" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "カレンダーを選択してください" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "新規カレンダーの名称" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "利用可能な名前を指定してください!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "このカレンダー名はすでに使われています。もし続行する場合は、これらのカレンダーはマージされます。" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "インポート" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "ダイアログを閉じる" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "新しいイベントを作成" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "イベントを閲覧" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "カテゴリが選択されていません" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "of" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "at" - -#: templates/settings.php:10 -msgid "General" -msgstr "一般" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "タイムゾーン" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "自動的にタイムゾーンを更新" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "時刻の表示形式" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "1週間の初めの曜日" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "キャッシュ" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "繰り返しイベントのキャッシュをクリア" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URL" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "CalDAVカレンダーの同期用アドレス" - -#: templates/settings.php:87 -msgid "more info" -msgstr "さらに" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "プライマリアドレス(コンタクト等)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "読み取り専用のiCalendarリンク" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "ユーザ" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "ユーザを選択" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "編集可能" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "グループ" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "グループを選択" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "公開する" diff --git a/l10n/ja_JP/contacts.po b/l10n/ja_JP/contacts.po deleted file mode 100644 index 0cf04a8a0a9c7f042a8aa2d561fe33f9a373c592..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# <tetuyano+transi@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 02:39+0000\n" -"Last-Translator: ttyn <tetuyano+transi@gmail.com>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "アドレス帳の有効/無効化に失敗しました。" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "idが設定されていません。" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "空白の名前でアドレス帳を更新することはできません。" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "アドレス帳の更新に失敗しました。" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "IDが提供されていません" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "チェックサムの設定エラー。" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "削除するカテゴリが選択されていません。" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "アドレス帳が見つかりません。" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "連絡先が見つかりません。" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "連絡先の追加でエラーが発生しました。" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "要素名が設定されていません。" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "連絡先を解析できませんでした:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "項目の新規追加に失敗しました。" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "住所の項目のうち1つは入力して下さい。" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "重複する属性を追加: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "IMのパラメータが不足しています。" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "不明なIM:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "vCardの情報に誤りがあります。ページをリロードして下さい。" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "IDが見つかりません" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "VCardからIDの抽出エラー: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "チェックサムが設定されていません。" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "vCardの情報が正しくありません。ページを再読み込みしてください: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "何かがFUBARへ移動しました。" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "連絡先IDは登録されませんでした。" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "連絡先写真の読み込みエラー。" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "一時ファイルの保存エラー。" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "写真の読み込みは無効です。" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "連絡先 IDが見つかりません。" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "写真のパスが登録されていません。" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "ファイルが存在しません:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "画像の読み込みエラー。" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "連絡先オブジェクトの取得エラー。" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "写真属性の取得エラー。" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "連絡先の保存エラー。" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "画像のリサイズエラー" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "画像の切り抜きエラー" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "一時画像の生成エラー" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "画像検索エラー: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "ストレージへの連絡先のアップロードエラー。" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "エラーはありません。ファイルのアップロードは成功しました" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "アップロードファイルは php.ini 内の upload_max_filesize の制限を超えています" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "アップロードファイルは一部分だけアップロードされました" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "ファイルはアップロードされませんでした" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "一時保存フォルダが見つかりません" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "一時的な画像の保存ができませんでした: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "一時的な画像の読み込みができませんでした: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "ファイルは何もアップロードされていません。不明なエラー" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "連絡先" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "申し訳ありません。この機能はまだ実装されていません" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "未実装" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "有効なアドレスを取得できませんでした。" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "エラー" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "連絡先を追加する権限がありません" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "アドレス帳を一つ選択してください" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "権限エラー" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "この属性は空にできません。" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "要素をシリアライズできませんでした。" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' は型の引数無しで呼び出されました。bugs.owncloud.org へ報告してください。" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "名前を編集" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "アップロードするファイルが選択されていません。" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "アップロードしようとしているファイルは、このサーバの最大ファイルアップロードサイズを超えています。" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "プロファイルの画像の読み込みエラー" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "タイプを選択" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "いくつかの連絡先が削除とマークされていますが、まだ削除されていません。削除するまでお待ちください。" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "これらのアドレス帳をマージしてもよろしいですか?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "結果: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " をインポート、 " - -#: js/loader.js:49 -msgid " failed." -msgstr " は失敗しました。" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "表示名は空にできません。" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "アドレス帳が見つかりません:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "これはあなたの電話帳ではありません。" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "連絡先を見つける事ができません。" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "Googleトーク" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "勤務先" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "住居" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "その他" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "携帯電話" - -#: lib/app.php:203 -msgid "Text" -msgstr "TTY TDD" - -#: lib/app.php:204 -msgid "Voice" -msgstr "音声番号" - -#: lib/app.php:205 -msgid "Message" -msgstr "メッセージ" - -#: lib/app.php:206 -msgid "Fax" -msgstr "FAX" - -#: lib/app.php:207 -msgid "Video" -msgstr "テレビ電話" - -#: lib/app.php:208 -msgid "Pager" -msgstr "ポケベル" - -#: lib/app.php:215 -msgid "Internet" -msgstr "インターネット" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "誕生日" - -#: lib/app.php:253 -msgid "Business" -msgstr "ビジネス" - -#: lib/app.php:254 -msgid "Call" -msgstr "電話" - -#: lib/app.php:255 -msgid "Clients" -msgstr "顧客" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "運送会社" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "休日" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "アイデア" - -#: lib/app.php:259 -msgid "Journey" -msgstr "旅行" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "記念祭" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "打ち合わせ" - -#: lib/app.php:263 -msgid "Personal" -msgstr "個人" - -#: lib/app.php:264 -msgid "Projects" -msgstr "プロジェクト" - -#: lib/app.php:265 -msgid "Questions" -msgstr "質問" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name}の誕生日" - -#: lib/search.php:15 -msgid "Contact" -msgstr "連絡先" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "この連絡先を編集する権限がありません" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "この連絡先を削除する権限がありません" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "連絡先の追加" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "インポート" - -#: templates/index.php:18 -msgid "Settings" -msgstr "設定" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "アドレス帳" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "閉じる" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "キーボードショートカット" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "ナビゲーション" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "リスト内の次の連絡先" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "リスト内の前の連絡先" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "現在のアドレス帳を展開する/折りたたむ" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "次のアドレス帳" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "前のアドレス帳" - -#: templates/index.php:54 -msgid "Actions" -msgstr "アクション" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "連絡先リストを再読込する" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "新しい連絡先を追加" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "新しいアドレス帳を追加" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "現在の連絡先を削除" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "写真をドロップしてアップロード" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "現在の写真を削除" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "現在の写真を編集" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "新しい写真をアップロード" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "ownCloudから写真を選択" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "編集フォーマット、ショートネーム、フルネーム、逆順、カンマ区切りの逆順" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "名前の詳細を編集" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "所属" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "削除" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "ニックネーム" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "ニックネームを入力" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "ウェブサイト" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Webサイトへ移動" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "yyyy-mm-dd" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "グループ" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "コンマでグループを分割" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "グループを編集" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "推奨" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "有効なメールアドレスを指定してください。" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "メールアドレスを入力" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "アドレスへメールを送る" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "メールアドレスを削除" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "電話番号を入力" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "電話番号を削除" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "インスタントメッセンジャー" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "IMを削除" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "地図で表示" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "住所の詳細を編集" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "ここにメモを追加。" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "項目を追加" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "電話番号" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "メールアドレス" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "インスタントメッセージ" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "住所" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "メモ" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "連絡先のダウンロード" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "連絡先の削除" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "一時画像はキャッシュから削除されました。" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "住所を編集" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "種類" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "私書箱" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "住所1" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "番地" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "住所2" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "アパート名等" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "都市" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "都道府県" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "例:東京都、大阪府" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "郵便番号" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "郵便番号" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "国名" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "アドレス帳" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "敬称" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Miss" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Ms" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Mr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Mrs" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "名" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "ミドルネーム" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "姓" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "称号" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "連絡先ファイルをインポート" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "アドレス帳を選択してください" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "新しいアドレス帳を作成" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "新しいアドレスブックの名前" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "連絡先をインポート" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "アドレス帳に連絡先が登録されていません。" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "連絡先を追加" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "アドレス帳を選択してください" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "名前を入力" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "説明を入力してください" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV同期アドレス" - -#: templates/settings.php:3 -msgid "more info" -msgstr "詳細情報" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "プライマリアドレス(Kontact 他)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "CarDavリンクを表示" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "読み取り専用のVCFリンクを表示" - -#: templates/settings.php:26 -msgid "Share" -msgstr "共有" - -#: templates/settings.php:29 -msgid "Download" -msgstr "ダウンロード" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "編集" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "新規のアドレス帳" - -#: templates/settings.php:44 -msgid "Name" -msgstr "名前" - -#: templates/settings.php:45 -msgid "Description" -msgstr "説明" - -#: templates/settings.php:46 -msgid "Save" -msgstr "保存" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "取り消し" - -#: templates/settings.php:52 -msgid "More..." -msgstr "もっと..." diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 9ab3f59c8b39e0cf0a78b7478cbb81734f9d566e..ab8cf78a5b3950e23fdf76944cd5d056929ac3a7 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 02:03+0200\n" -"PO-Revision-Date: 2012-10-01 08:51+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 06:57+0000\n" +"Last-Translator: ttyn <tetuyano+transi@gmail.com>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,55 +31,55 @@ msgstr "追加するカテゴリはありませんか?" msgid "This category already exists: " msgstr "このカテゴリはすでに存在します: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "設定" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "1月" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "2月" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "3月" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "4月" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "5月" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "6月" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "7月" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "8月" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "9月" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "10月" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "11月" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "12月" @@ -107,8 +107,8 @@ msgstr "OK" msgid "No categories selected for deletion." msgstr "削除するカテゴリが選択されていません。" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:493 -#: js/share.js:505 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "エラー" @@ -148,7 +148,8 @@ msgstr "URLリンクで共有" msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "パスワード" @@ -208,15 +209,15 @@ msgstr "削除" msgid "share" msgstr "共有" -#: js/share.js:321 js/share.js:480 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:493 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:505 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" @@ -240,8 +241,8 @@ msgstr "送信されました" msgid "Login failed!" msgstr "ログインに失敗しました!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "ユーザ名" @@ -301,52 +302,77 @@ msgstr "カテゴリを編集" 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 "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。" + +#: 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 "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。 " + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>管理者アカウント</strong>を作成してください" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "詳細設定" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "データフォルダ" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "データベースを設定してください" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "が使用されます" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "データベースのユーザ名" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "セットアップを完了します" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "管理下にあるウェブサービス" @@ -354,15 +380,29 @@ msgstr "管理下にあるウェブサービス" msgid "Log out" msgstr "ログアウト" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "自動ログインは拒否されました!" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "パスワードを記憶する" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "ログイン" @@ -377,3 +417,17 @@ 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 "パスワードの確認をお願いします。<br/>セキュリティ上の理由により、時々パスワードの再入力をお願いする場合があります。" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "確認" diff --git a/l10n/ja_JP/files_odfviewer.po b/l10n/ja_JP/files_odfviewer.po deleted file mode 100644 index 75c2c65bbfa33770aeb863c150f8ca60c840f752..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ja_JP/files_pdfviewer.po b/l10n/ja_JP/files_pdfviewer.po deleted file mode 100644 index 910d0963593a5276120d64452b53ba03a342cbbb..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ja_JP/files_texteditor.po b/l10n/ja_JP/files_texteditor.po deleted file mode 100644 index ab61c0af522f4660a827c177fe4beb2a9eaa7f1d..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ja_JP/gallery.po b/l10n/ja_JP/gallery.po deleted file mode 100644 index 75913ac9a7a7f24a6e6f31b2c359ff6c6740a1c4..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "写真" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "設定" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "再スキャン" - -#: templates/index.php:17 -msgid "Stop" -msgstr "停止" - -#: templates/index.php:18 -msgid "Share" -msgstr "共有" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "戻る" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "承認を取りやめ" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "アルバムを削除しますか?" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "アルバム名を変更する" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "新しいアルバム名" diff --git a/l10n/ja_JP/impress.po b/l10n/ja_JP/impress.po deleted file mode 100644 index 360c0eca04e2ecd44dffda3f3c08256c14ad1b03..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ja_JP/media.po b/l10n/ja_JP/media.po deleted file mode 100644 index ef58f5e08792ec3242ec9b773782696dac162ec8..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.net/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "ミュージック" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "再生" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "一時停止" - -#: templates/music.php:5 -msgid "Previous" -msgstr "前" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "次" - -#: templates/music.php:7 -msgid "Mute" -msgstr "ミュート" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "ミュート解除" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "コレクションの再スキャン" - -#: templates/music.php:37 -msgid "Artist" -msgstr "アーティスト" - -#: templates/music.php:38 -msgid "Album" -msgstr "アルバム" - -#: templates/music.php:39 -msgid "Title" -msgstr "曲名" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 8cbf0d2223643a96f91a8d92e9999428c9412078..88c1e5402c1ba4d468df333335820f05fbd04736 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.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-10-09 02:03+0200\n" -"PO-Revision-Date: 2012-10-09 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-15 07:29+0000\n" +"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,16 +23,11 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "アプリストアからリストをロードできません" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 -msgid "Authentication error" -msgstr "認証エラー" - -#: ajax/creategroup.php:19 +#: ajax/creategroup.php:12 msgid "Group already exists" msgstr "グループは既に存在しています" -#: ajax/creategroup.php:28 +#: ajax/creategroup.php:21 msgid "Unable to add group" msgstr "グループを追加できません" @@ -60,7 +55,11 @@ msgstr "無効なリクエストです" msgid "Unable to delete group" msgstr "グループを削除できません" -#: ajax/removeuser.php:22 +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "認証エラー" + +#: ajax/removeuser.php:27 msgid "Unable to delete user" msgstr "ユーザを削除できません" @@ -90,7 +89,7 @@ msgstr "有効" msgid "Saving..." msgstr "保存中..." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "Japanese (日本語)" @@ -187,7 +186,7 @@ msgstr "アプリを追加" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "さらにアプリを表示" #: templates/apps.php:27 msgid "Select an App" @@ -228,7 +227,7 @@ msgstr "解答" #: templates/personal.php:8 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s<strong>" -msgstr "現在、<strong>%s</strong> / <strong>%s<strong> を利用しています" +msgstr "現在、 <strong>%s</strong> / <strong>%s<strong> を利用しています" #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" diff --git a/l10n/ja_JP/tasks.po b/l10n/ja_JP/tasks.po deleted file mode 100644 index 13b0423ca16beec7dfbcdd5ef207314e99b81818..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/tasks.po +++ /dev/null @@ -1,108 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# <tetuyano+transi@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 03:40+0000\n" -"Last-Translator: ttyn <tetuyano+transi@gmail.com>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "無効な日付/時刻" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "タスク" - -#: js/tasks.js:415 -msgid "No category" -msgstr "カテゴリ無し" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "未指定" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=高" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=中" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=低" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "要旨が未記入" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "進捗%が不正" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "無効な優先度" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "タスクを追加" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "期日で並べ替え" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "リストで並び替え" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "完了で並べ替え" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "場所で並べ替え" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "優先度で並べ替え" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "ラベルで並べ替え" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "タスクをロード中..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "重要" - -#: templates/tasks.php:23 -msgid "More" -msgstr "詳細" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "閉じる" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "削除" diff --git a/l10n/ja_JP/user_migrate.po b/l10n/ja_JP/user_migrate.po deleted file mode 100644 index 71b2c612ed61c79839f6f9445a359a0c9bb4422f..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 05:28+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "エクスポート" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "エクスポートファイルの生成時に何か不具合が発生しました。" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "エラーが発生しました" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "ユーザアカウントのエクスポート" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "あなたのownCloudアカウントを含む圧縮ファイルを生成します。" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "ユーザアカウントをインポート" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "ownCloudユーザZip" - -#: templates/settings.php:17 -msgid "Import" -msgstr "インポート" diff --git a/l10n/ja_JP/user_openid.po b/l10n/ja_JP/user_openid.po deleted file mode 100644 index 5fe4094e68341f74c486a9e167c0207cb6c8afe2..0000000000000000000000000000000000000000 --- a/l10n/ja_JP/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 06:36+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@is.nagoya-u.ac.jp>\n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "これはOpenIDサーバのエンドポイントです。詳細は下記をチェックしてください。" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "識別子: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "レルム: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "ユーザ: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "ログイン" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "エラー: <b>ユーザが選択されていません" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "他のサイトにこのアドレスで認証することができます" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "認証されたOpenIDプロバイダ" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Wordpressのアドレス、Identi.ca、…" diff --git a/l10n/ko/admin_dependencies_chk.po b/l10n/ko/admin_dependencies_chk.po deleted file mode 100644 index a6510ce3a87ec3a086efc85261f0ed3127cb043f..0000000000000000000000000000000000000000 --- a/l10n/ko/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/ko/bookmarks.po b/l10n/ko/bookmarks.po deleted file mode 100644 index 1992ba3b141844bc413ae911b94d89b556cc2104..0000000000000000000000000000000000000000 --- a/l10n/ko/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/ko/calendar.po b/l10n/ko/calendar.po deleted file mode 100644 index 89b070aa85893590656c6596701c975f9b5260d0..0000000000000000000000000000000000000000 --- a/l10n/ko/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <limonade83@gmail.com>, 2012. -# Shinjo Park <kde@peremen.name>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "달력이 없습니다" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "일정이 없습니다" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "잘못된 달력" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "새로운 시간대 설정" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "시간대 변경됨" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "잘못된 요청" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "달력" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "생일" - -#: lib/app.php:122 -msgid "Business" -msgstr "사업" - -#: lib/app.php:123 -msgid "Call" -msgstr "통화" - -#: lib/app.php:124 -msgid "Clients" -msgstr "클라이언트" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "배송" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "공휴일" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "생각" - -#: lib/app.php:128 -msgid "Journey" -msgstr "여행" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "기념일" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "미팅" - -#: lib/app.php:131 -msgid "Other" -msgstr "기타" - -#: lib/app.php:132 -msgid "Personal" -msgstr "개인" - -#: lib/app.php:133 -msgid "Projects" -msgstr "프로젝트" - -#: lib/app.php:134 -msgid "Questions" -msgstr "질문" - -#: lib/app.php:135 -msgid "Work" -msgstr "작업" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "익명의" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "새로운 달력" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "반복 없음" - -#: lib/object.php:373 -msgid "Daily" -msgstr "매일" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "매주" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "매주 특정 요일" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "2주마다" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "매월" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "매년" - -#: lib/object.php:388 -msgid "never" -msgstr "전혀" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "번 이후" - -#: lib/object.php:390 -msgid "by date" -msgstr "날짜" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "월" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "주" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "월요일" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "화요일" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "수요일" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "목요일" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "금요일" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "토요일" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "일요일" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "이달의 한 주 일정" - -#: lib/object.php:428 -msgid "first" -msgstr "첫번째" - -#: lib/object.php:429 -msgid "second" -msgstr "두번째" - -#: lib/object.php:430 -msgid "third" -msgstr "세번째" - -#: lib/object.php:431 -msgid "fourth" -msgstr "네번째" - -#: lib/object.php:432 -msgid "fifth" -msgstr "다섯번째" - -#: lib/object.php:433 -msgid "last" -msgstr "마지막" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "1월" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "2월" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "3월" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "4월" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "5월" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "6월" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "7월" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "8월" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "9월" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "10월" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "11월" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "12월" - -#: lib/object.php:488 -msgid "by events date" -msgstr "이벤트 날짜 순" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "날짜 번호 순" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "주 번호 순" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "날짜 순" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "날짜" - -#: lib/search.php:43 -msgid "Cal." -msgstr "달력" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "매일" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "기입란이 비어있습니다" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "제목" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "시작날짜" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "시작시간" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "마침 날짜" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "마침 시간" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "마침일정이 시작일정 보다 빠릅니다. " - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "데이터베이스 에러입니다." - -#: templates/calendar.php:39 -msgid "Week" -msgstr "주" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "달" - -#: templates/calendar.php:41 -msgid "List" -msgstr "목록" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "오늘" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "내 달력" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav 링크" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "공유 달력" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "달력 공유하지 않음" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "달력 공유" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "다운로드" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "편집" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "삭제" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "로 인해 당신과 함께 공유" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "새로운 달력" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "달력 편집" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "표시 이름" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "활성" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "달력 색상" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "저장" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "보내기" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "취소" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "이벤트 편집" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "출력" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "일정 정보" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "반복" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "알람" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "참석자" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "공유" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "이벤트 제목" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "분류" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "쉼표로 카테고리 구분" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "카테고리 수정" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "종일 이벤트" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "시작" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "끝" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "고급 설정" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "위치" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "이벤트 위치" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "설명" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "이벤트 설명" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "반복" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "고급" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "요일 선택" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "날짜 선택" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "그리고 이 해의 일정" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "그리고 이 달의 일정" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "달 선택" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "주 선택" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "그리고 이 해의 주간 일정" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "간격" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "끝" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "번 이후" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "새 달력 만들기" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "달력 파일 가져오기" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "새 달력 이름" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "입력" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "대화 마침" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "새 이벤트 만들기" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "일정 보기" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "선택된 카테고리 없음" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "의" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "에서" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "시간대" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24시간" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12시간" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "사용자" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "사용자 선택" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "편집 가능" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "그룹" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "선택 그룹" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "공개" diff --git a/l10n/ko/contacts.po b/l10n/ko/contacts.po deleted file mode 100644 index 410011e08251b7cfb4314d78cc41f22c261b5f78..0000000000000000000000000000000000000000 --- a/l10n/ko/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <limonade83@gmail.com>, 2012. -# Shinjo Park <kde@peremen.name>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "주소록을 (비)활성화하는 데 실패했습니다." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "아이디가 설정되어 있지 않습니다. " - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "주소록에 이름란이 비어있으면 업데이트를 할 수 없습니다. " - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "주소록을 업데이트할 수 없습니다." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "제공되는 아이디 없음" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "오류 검사합계 설정" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "삭제 카테고리를 선택하지 않았습니다. " - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "주소록을 찾을 수 없습니다." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "연락처를 찾을 수 없습니다." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "연락처를 추가하는 중 오류가 발생하였습니다." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "element 이름이 설정되지 않았습니다." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "빈 속성을 추가할 수 없습니다." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "최소한 하나의 주소록 항목을 입력해야 합니다." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "중복 속성 추가 시도: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "vCard 정보가 올바르지 않습니다. 페이지를 새로 고치십시오." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "아이디 분실" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "아이디에 대한 VCard 분석 오류" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "체크섬이 설정되지 않았습니다." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr " vCard에 대한 정보가 잘못되었습니다. 페이지를 다시 로드하세요:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "접속 아이디가 기입되지 않았습니다." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "사진 읽기 오류" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "임시 파일을 저장하는 동안 오류가 발생했습니다. " - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "로딩 사진이 유효하지 않습니다. " - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "접속 아이디가 없습니다. " - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "사진 경로가 제출되지 않았습니다. " - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "파일이 존재하지 않습니다. " - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "로딩 이미지 오류입니다." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "연락처 개체를 가져오는 중 오류가 발생했습니다. " - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "사진 속성을 가져오는 중 오류가 발생했습니다. " - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "연락처 저장 중 오류가 발생했습니다." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "이미지 크기 조정 중 오류가 발생했습니다." - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "이미지를 자르던 중 오류가 발생했습니다." - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "임시 이미지를 생성 중 오류가 발생했습니다." - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "이미지를 찾던 중 오류가 발생했습니다:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "스토리지 에러 업로드 연락처." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "오류없이 파일업로드 성공." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "php.ini 형식으로 업로드 된 이 파일은 MAX_FILE_SIZE를 초과하였다." - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "HTML형식으로 업로드 된 이 파일은 MAX_FILE_SIZE를 초과하였다." - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "이 업로드된 파일은 부분적으로만 업로드 되었습니다." - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "파일이 업로드 되어있지 않습니다" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "임시 폴더 분실" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "임시 이미지를 저장할 수 없습니다:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "임시 이미지를 불러올 수 없습니다. " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류." - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "연락처" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "죄송합니다. 이 기능은 아직 구현되지 않았습니다. " - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "구현되지 않음" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "유효한 주소를 얻을 수 없습니다." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "오류" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "요소를 직렬화 할 수 없습니다." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty'가 문서형식이 없이 불려왔습니다. bugs.owncloud.org에 보고해주세요. " - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "이름 편집" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "업로드를 위한 파일이 선택되지 않았습니다. " - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "이 파일은 이 서버 파일 업로드 최대 용량을 초과 합니다. " - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "유형 선택" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "결과:" - -#: js/loader.js:49 -msgid " imported, " -msgstr "불러오기," - -#: js/loader.js:49 -msgid " failed." -msgstr "실패." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "내 주소록이 아닙니다." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "연락처를 찾을 수 없습니다." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "직장" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "자택" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "휴대폰" - -#: lib/app.php:203 -msgid "Text" -msgstr "문자 번호" - -#: lib/app.php:204 -msgid "Voice" -msgstr "음성 번호" - -#: lib/app.php:205 -msgid "Message" -msgstr "메세지" - -#: lib/app.php:206 -msgid "Fax" -msgstr "팩스 번호" - -#: lib/app.php:207 -msgid "Video" -msgstr "영상 번호" - -#: lib/app.php:208 -msgid "Pager" -msgstr "호출기" - -#: lib/app.php:215 -msgid "Internet" -msgstr "인터넷" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "생일" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{이름}의 생일" - -#: lib/search.php:15 -msgid "Contact" -msgstr "연락처" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "연락처 추가" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "입력" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "주소록" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "닫기" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Drop photo to upload" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "현재 사진 삭제" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "현재 사진 편집" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "새로운 사진 업로드" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "ownCloud에서 사진 선택" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format custom, Short name, Full name, Reverse or Reverse with comma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "이름 세부사항을 편집합니다. " - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "조직" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "삭제" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "별명" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "별명 입력" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "일-월-년" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "그룹" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "쉼표로 그룹 구분" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "그룹 편집" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "선호함" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "올바른 이메일 주소를 입력하세요." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "이메일 주소 입력" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "이메일 주소 삭제" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "전화번호 입력" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "전화번호 삭제" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "지도에서 보기" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "상세 주소 수정" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "여기에 노트 추가." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "파일 추가" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "전화 번호" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "전자 우편" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "주소" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "노트" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "연락처 다운로드" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "연락처 삭제" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "임시 이미지가 캐시에서 제거 되었습니다. " - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "주소 수정" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "종류" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "사서함" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "확장" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "도시" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "지역" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "우편 번호" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "국가" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "주소록" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Hon. prefixes" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Miss" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Ms" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Mr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Mrs" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Given name" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "추가 이름" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "성" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Hon. suffixes" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "연락처 파일 입력" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "주소록을 선택해 주세요." - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "새 주소록 만들기" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "새 주소록 이름" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "연락처 입력" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "당신의 주소록에는 연락처가 없습니다. " - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "연락처 추가" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV 주소 동기화" - -#: templates/settings.php:3 -msgid "more info" -msgstr "더 많은 정보" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "기본 주소 (Kontact et al)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "다운로드" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "편집" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "새 주소록" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "저장" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "취소" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index abd9275c62e011a7bd71781cfde96ddf99affab1..79125bc4578451b0201f99823d7add35f382bbb7 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -31,55 +31,55 @@ msgstr "추가할 카테고리가 없습니까?" msgid "This category already exists: " msgstr "이 카테고리는 이미 존재합니다:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "설정" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "1월" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "2월" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "3월" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "4월" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "5월" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "6월" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "7월" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "8월" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "9월" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "10월" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "11월" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "12월" @@ -107,8 +107,8 @@ msgstr "승락" msgid "No categories selected for deletion." msgstr "삭제 카테고리를 선택하지 않았습니다." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "에러" @@ -148,7 +148,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "암호" @@ -184,39 +185,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -240,12 +241,12 @@ msgstr "요청함" msgid "Login failed!" msgstr "로그인 실패!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "사용자 이름" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "요청 초기화" @@ -301,52 +302,77 @@ msgstr "카테고리 편집" msgid "Add" msgstr "추가" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "<strong>관리자 계정</strong>을 만드십시오" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "고급" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "자료 폴더" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "데이터베이스 구성" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "사용 될 것임" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "설치 완료" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" @@ -354,15 +380,29 @@ msgstr "내가 관리하는 웹 서비스" msgid "Log out" msgstr "로그아웃" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "기억하기" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "로그인" @@ -377,3 +417,17 @@ msgstr "이전" #: templates/part.pagenavi.php:20 msgid "next" msgstr "다음" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/ko/files_odfviewer.po b/l10n/ko/files_odfviewer.po deleted file mode 100644 index 2be8c176ae87d7fac2cd0bf810872e851b2b9313..0000000000000000000000000000000000000000 --- a/l10n/ko/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ko/files_pdfviewer.po b/l10n/ko/files_pdfviewer.po deleted file mode 100644 index a29b407be8a460bcb05bbb44498c8e37b1d6d1d0..0000000000000000000000000000000000000000 --- a/l10n/ko/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ko/files_texteditor.po b/l10n/ko/files_texteditor.po deleted file mode 100644 index 6beeb686b9e72da6e54bf23ab251dd90f6961738..0000000000000000000000000000000000000000 --- a/l10n/ko/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ko/gallery.po b/l10n/ko/gallery.po deleted file mode 100644 index 8a972e4ec9a2a0992f1d25fdf14b38cbd39074e7..0000000000000000000000000000000000000000 --- a/l10n/ko/gallery.po +++ /dev/null @@ -1,96 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <limonade83@gmail.com>, 2012. -# Shinjo Park <kde@peremen.name>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Korean (http://www.transifex.net/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "사진" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "세팅" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "재검색" - -#: templates/index.php:17 -msgid "Stop" -msgstr "정지" - -#: templates/index.php:18 -msgid "Share" -msgstr "공유" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "뒤로" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "삭제 승인" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "앨범을 삭제하시겠습니까" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "앨범 이름 변경" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "새로운 앨범 이름" diff --git a/l10n/ko/impress.po b/l10n/ko/impress.po deleted file mode 100644 index c7be0756da3f0c3d05ab10994d4e0b9abfc3d496..0000000000000000000000000000000000000000 --- a/l10n/ko/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ko/media.po b/l10n/ko/media.po deleted file mode 100644 index 5b1734b80726b9a1b74404c0e0ad35dd4103f6de..0000000000000000000000000000000000000000 --- a/l10n/ko/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Shinjo Park <kde@peremen.name>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Korean (http://www.transifex.net/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "음악" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "재생" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "일시 정지" - -#: templates/music.php:5 -msgid "Previous" -msgstr "이전" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "다음" - -#: templates/music.php:7 -msgid "Mute" -msgstr "음소거" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "음소거 해제" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "모음집 재검색" - -#: templates/music.php:37 -msgid "Artist" -msgstr "음악가" - -#: templates/music.php:38 -msgid "Album" -msgstr "앨범" - -#: templates/music.php:39 -msgid "Title" -msgstr "제목" diff --git a/l10n/ko/tasks.po b/l10n/ko/tasks.po deleted file mode 100644 index 58c447717b42b04d77acd69be22e1b0684fe9db0..0000000000000000000000000000000000000000 --- a/l10n/ko/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/ko/user_migrate.po b/l10n/ko/user_migrate.po deleted file mode 100644 index 5d9886e7058f0bd76059f04a7b9c0f548e71d940..0000000000000000000000000000000000000000 --- a/l10n/ko/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/ko/user_openid.po b/l10n/ko/user_openid.po deleted file mode 100644 index aaa8bf48371c20dc31a843d16945450c8db01e48..0000000000000000000000000000000000000000 --- a/l10n/ko/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 01e916f1ebfca1c452581cca287fdd0443147063..56a268f7ba1fa05ae4dc76dfd4cf0f23d3beea72 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-11 02:04+0200\n" -"PO-Revision-Date: 2012-10-10 15:25+0000\n" -"Last-Translator: kurdboy <itkurd0@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,55 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:229 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "دهستكاری" -#: js/js.js:661 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:661 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:661 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:661 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:661 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:661 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:662 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:662 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:662 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:662 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:662 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:662 +#: js/js.js:671 msgid "December" msgstr "" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "وشەی تێپەربو" @@ -239,8 +240,8 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" @@ -300,48 +301,73 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "ههڵبژاردنی پیشكهوتوو" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "زانیاری فۆڵدهر" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "بهكارهێنهری داتابهیس" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "وشهی نهێنی داتا بهیس" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "ناوی داتابهیس" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "هۆستی داتابهیس" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "كۆتایی هات دهستكاریهكان" @@ -353,15 +379,29 @@ msgstr "" msgid "Log out" msgstr "چوونەدەرەوە" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -376,3 +416,17 @@ msgstr "پێشتر" #: templates/part.pagenavi.php:20 msgid "next" msgstr "دواتر" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/lb/admin_dependencies_chk.po b/l10n/lb/admin_dependencies_chk.po deleted file mode 100644 index f49abb281402180c23976b811d0572e4fd5242cf..0000000000000000000000000000000000000000 --- a/l10n/lb/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/lb/admin_migrate.po b/l10n/lb/admin_migrate.po deleted file mode 100644 index a4912b42c8372a590f63f571b59e34311bb612b3..0000000000000000000000000000000000000000 --- a/l10n/lb/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/lb/bookmarks.po b/l10n/lb/bookmarks.po deleted file mode 100644 index 024a705e2433f2731476312733a5b3adac9b8466..0000000000000000000000000000000000000000 --- a/l10n/lb/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/lb/calendar.po b/l10n/lb/calendar.po deleted file mode 100644 index 389711175964cd0aeb59ee5d16de259915a277bc..0000000000000000000000000000000000000000 --- a/l10n/lb/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <sim0n@trypill.org>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Keng Kalenner fonnt." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Keng Evenementer fonnt." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Falschen Kalenner" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nei Zäitzone:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Zäitzon geännert" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Ongülteg Requête" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalenner" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Gebuertsdag" - -#: lib/app.php:122 -msgid "Business" -msgstr "Geschäftlech" - -#: lib/app.php:123 -msgid "Call" -msgstr "Uruff" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clienten" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Liwwerant" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Vakanzen" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideeën" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Dag" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubiläum" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Meeting" - -#: lib/app.php:131 -msgid "Other" -msgstr "Aner" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Perséinlech" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projeten" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Froen" - -#: lib/app.php:135 -msgid "Work" -msgstr "Aarbecht" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Neien Kalenner" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Widderhëlt sech net" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Deeglech" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "All Woch" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "All Wochendag" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "All zweet Woch" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "All Mount" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "All Joer" - -#: lib/object.php:388 -msgid "never" -msgstr "ni" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "no Virkommes" - -#: lib/object.php:390 -msgid "by date" -msgstr "no Datum" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "no Mount-Dag" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "no Wochendag" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Méindes" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Dënschdes" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Mëttwoch" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Donneschdes" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Freides" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Samschdes" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Sonndes" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "éischt" - -#: lib/object.php:429 -msgid "second" -msgstr "Sekonn" - -#: lib/object.php:430 -msgid "third" -msgstr "Drëtt" - -#: lib/object.php:431 -msgid "fourth" -msgstr "Féiert" - -#: lib/object.php:432 -msgid "fifth" -msgstr "Fënneft" - -#: lib/object.php:433 -msgid "last" -msgstr "Läscht" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januar" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februar" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Mäerz" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Abrëll" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mee" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juni" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juli" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "August" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Dezember" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Datum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "All Dag" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Felder déi feelen" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titel" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Vun Datum" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Vun Zäit" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Bis Datum" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Bis Zäit" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "D'Evenement hält op ier et ufänkt" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "En Datebank Feeler ass opgetrueden" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Woch" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mount" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lescht" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Haut" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Deng Kalenneren" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav Link" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Gedeelte Kalenneren" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Keng gedeelten Kalenneren" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Eroflueden" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Editéieren" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Läschen" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Neien Kalenner" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Kalenner editéieren" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Numm" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiv" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Fuerf vum Kalenner" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Späicheren" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Fortschécken" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Ofbriechen" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Evenement editéieren" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Export" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Titel vum Evenement" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategorie" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Ganz-Dag Evenement" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Vun" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Fir" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Avancéiert Optiounen" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Uert" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Uert vum Evenement" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Beschreiwung" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Beschreiwung vum Evenement" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Widderhuelen" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Erweidert" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Wochendeeg auswielen" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Deeg auswielen" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Méint auswielen" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Wochen auswielen" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervall" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Enn" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "Virkommes" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "E neie Kalenner uleeën" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "E Kalenner Fichier importéieren" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Numm vum neie Kalenner" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Import" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Dialog zoumaachen" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "En Evenement maachen" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Zäitzon" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/lb/contacts.po b/l10n/lb/contacts.po deleted file mode 100644 index 2d22dc6b1e6e8a6769b5dedc2f2a9dbad1d8a40c..0000000000000000000000000000000000000000 --- a/l10n/lb/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <sim0n@trypill.org>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Fehler beim (de)aktivéieren vum Adressbuch." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID ass net gesat." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Fehler beim updaten vum Adressbuch." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Keng ID uginn" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Fehler beim setzen vun der Checksum." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Keng Kategorien fir ze läschen ausgewielt." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Keen Adressbuch fonnt." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Keng Kontakter fonnt." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Fehler beim bäisetzen vun engem Kontakt." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Ka keng eidel Proprietéit bäisetzen." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Probéieren duebel Proprietéit bäi ze setzen:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informatioun iwwert vCard ass net richteg. Lued d'Säit wegl nei." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "ID fehlt" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Kontakt ID ass net mat geschéckt ginn." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Fehler beim liesen vun der Kontakt Photo." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Fehler beim späicheren vum temporäre Fichier." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Déi geluede Photo ass net gülteg." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Kontakt ID fehlt." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Fichier existéiert net:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Fehler beim lueden vum Bild." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Et ass kee Fichier ropgeluede ginn" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontakter" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Fehler" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultat: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " importéiert, " - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Dat do ass net däin Adressbuch." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Konnt den Kontakt net fannen." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Aarbecht" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Doheem" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "GSM" - -#: lib/app.php:203 -msgid "Text" -msgstr "SMS" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voice" - -#: lib/app.php:205 -msgid "Message" -msgstr "Message" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Gebuertsdag" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name} säi Gebuertsdag" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Kontakt bäisetzen" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adressbicher " - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Zoumaachen" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Firma" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Läschen" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Spëtznumm" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Gëff e Spëtznumm an" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Gruppen" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Gruppen editéieren" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Telefonsnummer aginn" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Telefonsnummer läschen" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Op da Kaart uweisen" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Adress Detailer editéieren" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Email" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adress" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Note" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Kontakt eroflueden" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Kontakt läschen" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Typ" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postleetzuel" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Erweidert" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Staat" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regioun" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postleetzuel" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Land" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adressbuch" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "M" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Mme" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Virnumm" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Weider Nimm" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Famillje Numm" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Download" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Editéieren" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Neit Adressbuch" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Späicheren" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Ofbriechen" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 80b7b61b14c53016ce5a28ac66910533c533ce07..eeafec6d3bd4cb83269a5d8c0bed809470265ac9 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "Keng Kategorie fir bäizesetzen?" msgid "This category already exists: " msgstr "Des Kategorie existéiert schonn:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Astellungen" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Januar" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Februar" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Mäerz" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Abrëll" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mee" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Juni" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Juli" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "August" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "September" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Oktober" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "November" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Dezember" @@ -106,8 +106,8 @@ msgstr "OK" msgid "No categories selected for deletion." msgstr "Keng Kategorien ausgewielt fir ze läschen." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Fehler" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Passwuert" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "Gefrot" msgid "Login failed!" msgstr "Falschen Login!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Benotzernumm" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Reset ufroen" @@ -300,52 +301,77 @@ msgstr "Kategorien editéieren" msgid "Add" msgstr "Bäisetzen" +#: 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 "En <strong>Admin Account</strong> uleeën" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Daten Dossier" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Datebank konfiguréieren" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Installatioun ofschléissen" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "Web Servicer ënnert denger Kontroll" @@ -353,15 +379,29 @@ msgstr "Web Servicer ënnert denger Kontroll" msgid "Log out" msgstr "Ausloggen" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "verhalen" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Log dech an" @@ -376,3 +416,17 @@ msgstr "zeréck" #: templates/part.pagenavi.php:20 msgid "next" msgstr "weider" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/lb/files_odfviewer.po b/l10n/lb/files_odfviewer.po deleted file mode 100644 index 1ce99cf81a85b45d7e43ec31a8b971199a60c98c..0000000000000000000000000000000000000000 --- a/l10n/lb/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/lb/files_pdfviewer.po b/l10n/lb/files_pdfviewer.po deleted file mode 100644 index a7665ab24e838e91dfedff65a2741d1cef894ddb..0000000000000000000000000000000000000000 --- a/l10n/lb/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/lb/files_texteditor.po b/l10n/lb/files_texteditor.po deleted file mode 100644 index abffc55df0638b5d07b3f5d685bb103f703297b8..0000000000000000000000000000000000000000 --- a/l10n/lb/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/lb/gallery.po b/l10n/lb/gallery.po deleted file mode 100644 index 933f3228917519386e3fc2adf569ab374ee59d97..0000000000000000000000000000000000000000 --- a/l10n/lb/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <sim0n@trypill.org>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Fotoen" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Astellungen" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Nei scannen" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Stop" - -#: templates/index.php:18 -msgid "Share" -msgstr "Deelen" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Zeréck" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Konfirmatioun läschen" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Wëlls de den Album läschen" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Album Numm änneren" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Neien Numm fir den Album" diff --git a/l10n/lb/impress.po b/l10n/lb/impress.po deleted file mode 100644 index a03f893b0f703704b9bcba4f13bac530392c5213..0000000000000000000000000000000000000000 --- a/l10n/lb/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/lb/media.po b/l10n/lb/media.po deleted file mode 100644 index cd44542ece05f37078ff4f51e43a3537e6c89abc..0000000000000000000000000000000000000000 --- a/l10n/lb/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <sim0n@trypill.org>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musek" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Ofspillen" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Paus" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Zeréck" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Weider" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Toun ausmaachen" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Toun umaachen" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Kollektioun nei scannen" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artist" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titel" diff --git a/l10n/lb/tasks.po b/l10n/lb/tasks.po deleted file mode 100644 index 62a9a4b722b71567bcb44aab2af95473b5c62063..0000000000000000000000000000000000000000 --- a/l10n/lb/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/lb/user_migrate.po b/l10n/lb/user_migrate.po deleted file mode 100644 index 7ecbf9a92b6f5be66bcb2d133d2ffc31f83a879d..0000000000000000000000000000000000000000 --- a/l10n/lb/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/lb/user_openid.po b/l10n/lb/user_openid.po deleted file mode 100644 index 785483e735099541faf2517634c7119fc2c906a1..0000000000000000000000000000000000000000 --- a/l10n/lb/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/lt_LT/admin_dependencies_chk.po b/l10n/lt_LT/admin_dependencies_chk.po deleted file mode 100644 index 3cf43f2491e273b507df1809da987a1d42139248..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:02+0200\n" -"PO-Revision-Date: 2012-08-22 13:30+0000\n" -"Last-Translator: Dr. ROX <to.dr.rox@gmail.com>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Php-json modulis yra reikalingas duomenų keitimuisi tarp programų" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Php-curl modulis automatiškai nuskaito tinklapio pavadinimą kuomet išsaugoma žymelė." - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Php-gd modulis yra naudojamas paveikslėlių miniatiūroms kurti." - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Php-ldap modulis yra reikalingas prisijungimui prie jūsų ldap serverio" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Php-zip modulis yra reikalingas kelių failų atsiuntimui iš karto." - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Php-mb_multibyte modulis yra naudojamas apdoroti įvairius teksto kodavimo formatus." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Php-ctype modulis yra reikalingas duomenų tikrinimui." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Php-xml modulis yra reikalingas failų dalinimuisi naudojant webdav." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "allow_url_fopen direktyva turėtų būti nustatyta į \"1\" jei norite automatiškai gauti žinių bazės informaciją iš OCS serverių." - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Php-pdo modulis yra reikalingas duomenų saugojimui į owncloud duomenų bazę." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Priklausomybės" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Naudojama:" diff --git a/l10n/lt_LT/admin_migrate.po b/l10n/lt_LT/admin_migrate.po deleted file mode 100644 index 8f3d5927fff5b1eb5e36581e4c010fc18b95ee38..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:02+0200\n" -"PO-Revision-Date: 2012-08-22 14:12+0000\n" -"Last-Translator: Dr. ROX <to.dr.rox@gmail.com>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Eksportuoti šią ownCloud instaliaciją" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Bus sukurtas archyvas su visais owncloud duomenimis ir failais.\n Pasirinkite eksportavimo tipą:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Eksportuoti" diff --git a/l10n/lt_LT/bookmarks.po b/l10n/lt_LT/bookmarks.po deleted file mode 100644 index 4593ae1ec6fa3228619fcf616dce3cc7510a5413..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:02+0200\n" -"PO-Revision-Date: 2012-08-22 12:36+0000\n" -"Last-Translator: Dr. ROX <to.dr.rox@gmail.com>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "be pavadinimo" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/lt_LT/calendar.po b/l10n/lt_LT/calendar.po deleted file mode 100644 index 9d116aac12f63fd606ea3e55c53e0c5d600638e4..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Kalendorių nerasta." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Įvykių nerasta." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Ne tas kalendorius" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nauja laiko juosta:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Laiko zona pakeista" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Klaidinga užklausa" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalendorius" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Gimtadienis" - -#: lib/app.php:122 -msgid "Business" -msgstr "Verslas" - -#: lib/app.php:123 -msgid "Call" -msgstr "Skambučiai" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klientai" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Vykdytojas" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Išeiginės" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idėjos" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Kelionė" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubiliejus" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Susitikimas" - -#: lib/app.php:131 -msgid "Other" -msgstr "Kiti" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Asmeniniai" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projektai" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Klausimai" - -#: lib/app.php:135 -msgid "Work" -msgstr "Darbas" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "be pavadinimo" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Naujas kalendorius" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Nekartoti" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Kasdien" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Kiekvieną savaitę" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Kiekvieną savaitės dieną" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Kas dvi savaites" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Kiekvieną mėnesį" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Kiekvienais metais" - -#: lib/object.php:388 -msgid "never" -msgstr "niekada" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "pagal datą" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "pagal mėnesio dieną" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "pagal savaitės dieną" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Pirmadienis" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Antradienis" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Trečiadienis" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Ketvirtadienis" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Penktadienis" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Šeštadienis" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Sekmadienis" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Sausis" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Vasaris" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Kovas" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Balandis" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Gegužė" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Birželis" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Liepa" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Rugpjūtis" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Rugsėjis" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Spalis" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Lapkritis" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Gruodis" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Visa diena" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Trūkstami laukai" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Pavadinimas" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Nuo datos" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Nuo laiko" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Iki datos" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Iki laiko" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Įvykis baigiasi anksčiau nei jis prasideda" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Įvyko duomenų bazės klaida" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Savaitė" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mėnuo" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Sąrašas" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Šiandien" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Jūsų kalendoriai" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav adresas" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Bendri kalendoriai" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Bendrų kalendorių nėra" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Dalintis kalendoriumi" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Atsisiųsti" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Keisti" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Trinti" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Naujas kalendorius" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Taisyti kalendorių" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Pavadinimas" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Naudojamas" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalendoriaus spalva" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Išsaugoti" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Išsaugoti" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Atšaukti" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Taisyti įvykį" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Eksportuoti" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informacija" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Pasikartojantis" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Priminimas" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Dalyviai" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Dalintis" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Įvykio pavadinimas" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategorija" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Atskirkite kategorijas kableliais" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Redaguoti kategorijas" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Visos dienos įvykis" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Nuo" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Iki" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Papildomi nustatymai" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Vieta" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Įvykio vieta" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Aprašymas" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Įvykio aprašymas" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Kartoti" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Pasirinkite savaitės dienas" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Pasirinkite dienas" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Pasirinkite mėnesius" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Pasirinkite savaites" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervalas" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Pabaiga" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "sukurti naują kalendorių" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importuoti kalendoriaus failą" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Naujo kalendoriaus pavadinimas" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importuoti" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Uždaryti" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Sukurti naują įvykį" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Peržiūrėti įvykį" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nepasirinktos jokios katagorijos" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Laiko juosta" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24val" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12val" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Vartotojai" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "pasirinkti vartotojus" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Redaguojamas" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupės" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "pasirinkti grupes" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "viešinti" diff --git a/l10n/lt_LT/contacts.po b/l10n/lt_LT/contacts.po deleted file mode 100644 index 963907b29745c2d0abb2e567982b00450000bf0c..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Klaida (de)aktyvuojant adresų knygą." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Kontaktų nerasta." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Pridedant kontaktą įvyko klaida." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informacija apie vCard yra neteisinga. " - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Klaida skaitant kontakto nuotrauką." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Netinkama įkeliama nuotrauka." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Failas neegzistuoja:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Klaida įkeliant nuotrauką." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Failas įkeltas sėkmingai, be klaidų" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Įkeliamo failo dydis viršija upload_max_filesize nustatymą php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE nustatymą, kuris naudojamas HTML formoje." - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Failas buvo įkeltas tik dalinai" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Nebuvo įkeltas joks failas" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontaktai" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Tai ne jūsų adresų knygelė." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontaktas nerastas" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Darbo" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Namų" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobilusis" - -#: lib/app.php:203 -msgid "Text" -msgstr "Žinučių" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Balso" - -#: lib/app.php:205 -msgid "Message" -msgstr "Žinutė" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faksas" - -#: lib/app.php:207 -msgid "Video" -msgstr "Vaizdo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pranešimų gaviklis" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internetas" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Gimtadienis" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontaktas" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Pridėti kontaktą" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adresų knygos" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizacija" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Trinti" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Slapyvardis" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Įveskite slapyvardį" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefonas" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "El. paštas" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresas" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Atsisųsti kontaktą" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Ištrinti kontaktą" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tipas" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Pašto dėžutė" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Miestas" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regionas" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Pašto indeksas" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Šalis" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adresų knyga" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Atsisiųsti" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Keisti" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nauja adresų knyga" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Išsaugoti" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Atšaukti" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 130c447211eecfaba1d565999861bb7dd8484c07..529ba10793d5cecfb11c5f0a5499ee018c331843 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "Nepridėsite jokios kategorijos?" msgid "This category already exists: " msgstr "Tokia kategorija jau yra:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Sausis" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Vasaris" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Kovas" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Balandis" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Gegužė" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Birželis" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Liepa" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Rugpjūtis" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Rugsėjis" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Spalis" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Lapkritis" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Gruodis" @@ -106,8 +106,8 @@ msgstr "Gerai" msgid "No categories selected for deletion." msgstr "Trynimui nepasirinkta jokia kategorija." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Klaida" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Slaptažodis" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "Užklausta" msgid "Login failed!" msgstr "Prisijungti nepavyko!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Prisijungimo vardas" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Prašyti nustatymo iš najo" @@ -300,52 +301,77 @@ msgstr "Redaguoti kategorijas" msgid "Add" msgstr "Pridėti" +#: 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 "Sukurti <strong>administratoriaus paskyrą</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Išplėstiniai" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Baigti diegimą" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" @@ -353,15 +379,29 @@ msgstr "jūsų valdomos web paslaugos" msgid "Log out" msgstr "Atsijungti" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "prisiminti" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Prisijungti" @@ -376,3 +416,17 @@ msgstr "atgal" #: templates/part.pagenavi.php:20 msgid "next" msgstr "kitas" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/lt_LT/files_odfviewer.po b/l10n/lt_LT/files_odfviewer.po deleted file mode 100644 index 9fdcfb4a0c0e355dab53ec2d7846e94e513bd5eb..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/lt_LT/files_pdfviewer.po b/l10n/lt_LT/files_pdfviewer.po deleted file mode 100644 index e224f4ccb57a7e7dc4dbd9d49d4b93e1d32ce804..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/lt_LT/files_texteditor.po b/l10n/lt_LT/files_texteditor.po deleted file mode 100644 index bd2a8dbff169e1c819e21815a0852c9965d910cf..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/lt_LT/gallery.po b/l10n/lt_LT/gallery.po deleted file mode 100644 index 383e3cf66f931d9b450f9d75d39e25eec13ba65b..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Nuotraukos" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Nustatymai" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Atnaujinti" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Sustabdyti" - -#: templates/index.php:18 -msgid "Share" -msgstr "Dalintis" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Atgal" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Išjungti patvirtinimą" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Ar tikrai norite pašalinti albumą" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Keisti albumo pavadinimą" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Naujo albumo pavadinimas" diff --git a/l10n/lt_LT/impress.po b/l10n/lt_LT/impress.po deleted file mode 100644 index 8aaf1712b0d92ab8dc26b7016eef52fc784d4e60..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/lt_LT/media.po b/l10n/lt_LT/media.po deleted file mode 100644 index c466de33beb73da3f484c349e62401a43376f53f..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.net/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Muzika" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Groti" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pristabdyti" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Atgal" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Kitas" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Nutildyti" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Įjungti garsą" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Atnaujinti kolekciją" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Atlikėjas" - -#: templates/music.php:38 -msgid "Album" -msgstr "Albumas" - -#: templates/music.php:39 -msgid "Title" -msgstr "Pavadinimas" diff --git a/l10n/lt_LT/tasks.po b/l10n/lt_LT/tasks.po deleted file mode 100644 index 4d53aef5a79ca1e94611b081bde09a8e0c570791..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 14:05+0000\n" -"Last-Translator: Dr. ROX <to.dr.rox@gmail.com>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Netinkama data/laikas" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Be kategorijos" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Tuščias aprašymas" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Netinkamas baigimo procentas" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Svarbūs" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Daugiau" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Mažiau" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Ištrinti" diff --git a/l10n/lt_LT/user_migrate.po b/l10n/lt_LT/user_migrate.po deleted file mode 100644 index a0c8819f796d4b9afd470ca2b52fa3279d2317d6..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dr. ROX <to.dr.rox@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-23 02:03+0200\n" -"PO-Revision-Date: 2012-08-22 13:34+0000\n" -"Last-Translator: Dr. ROX <to.dr.rox@gmail.com>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Eksportuoti" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Įvyko klaida kuriant eksportuojamą failą" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Įvyko klaida" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Eksportuoti jūsų vartotojo paskyrą" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Bus sukurtas suglaudintas failas su jūsų ownCloud vartotojo paskyra." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Importuoti vartotojo paskyrą" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "ownCloud vartotojo paskyros Zip archyvas" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Importuoti" diff --git a/l10n/lt_LT/user_openid.po b/l10n/lt_LT/user_openid.po deleted file mode 100644 index 9567cf6ec3a0da29e29cb5f11bf9512bf513eb8e..0000000000000000000000000000000000000000 --- a/l10n/lt_LT/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/lv/admin_dependencies_chk.po b/l10n/lv/admin_dependencies_chk.po deleted file mode 100644 index 0ad70f3449105be5ef98c4cf0fdac9837ea7c839..0000000000000000000000000000000000000000 --- a/l10n/lv/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/lv/admin_migrate.po b/l10n/lv/admin_migrate.po deleted file mode 100644 index 2be34daece467d5a9f9f278443462303652ccb50..0000000000000000000000000000000000000000 --- a/l10n/lv/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/lv/bookmarks.po b/l10n/lv/bookmarks.po deleted file mode 100644 index 2114fcd31a9a7ee5fe776ce7aae5957e3d5d2bf5..0000000000000000000000000000000000000000 --- a/l10n/lv/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/lv/calendar.po b/l10n/lv/calendar.po deleted file mode 100644 index f3a17a29c46467c6c13a30c8faa427e0c6bc72be..0000000000000000000000000000000000000000 --- a/l10n/lv/calendar.po +++ /dev/null @@ -1,813 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "" - -#: lib/object.php:373 -msgid "Daily" -msgstr "" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/lv/contacts.po b/l10n/lv/contacts.po deleted file mode 100644 index 206e0cb05d45188516e5eccd552297e55dcefb4f..0000000000000000000000000000000000000000 --- a/l10n/lv/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index a28f72fdd52a3346eced52d45ed1e31da1858ea6..dbc6b29788ee24d36fb3424bf98c37a215f07d09 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -106,8 +106,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Parole" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "Obligāts" msgid "Login failed!" msgstr "Neizdevās ielogoties." -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Lietotājvārds" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Pieprasīt paroles maiņu" @@ -300,52 +301,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Nokonfigurēt datubāzi" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Datubāzes mājvieta" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Pabeigt uzstādījumus" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -353,15 +379,29 @@ msgstr "" msgid "Log out" msgstr "Izlogoties" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Aizmirsāt paroli?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "atcerēties" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Ielogoties" @@ -376,3 +416,17 @@ msgstr "iepriekšējā" #: templates/part.pagenavi.php:20 msgid "next" msgstr "nākamā" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/lv/files_odfviewer.po b/l10n/lv/files_odfviewer.po deleted file mode 100644 index ef357e02f1e59279b8798c969f9d671471acd765..0000000000000000000000000000000000000000 --- a/l10n/lv/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/lv/files_pdfviewer.po b/l10n/lv/files_pdfviewer.po deleted file mode 100644 index 06441aecdabcd4d06882671b30d1c8e4b9e1d965..0000000000000000000000000000000000000000 --- a/l10n/lv/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/lv/files_texteditor.po b/l10n/lv/files_texteditor.po deleted file mode 100644 index e0c9f6755086a9e09cbe694c5751cddf61a4a09d..0000000000000000000000000000000000000000 --- a/l10n/lv/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/lv/gallery.po b/l10n/lv/gallery.po deleted file mode 100644 index 03b337f7da5e9e94c6a77f22bf825676c3c17969..0000000000000000000000000000000000000000 --- a/l10n/lv/gallery.po +++ /dev/null @@ -1,58 +0,0 @@ -# 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: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2012-01-15 13:48+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/lv/impress.po b/l10n/lv/impress.po deleted file mode 100644 index 1685472a3e540177292e6888d477e6ade82d8533..0000000000000000000000000000000000000000 --- a/l10n/lv/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/lv/media.po b/l10n/lv/media.po deleted file mode 100644 index 8f717c8e6ef5be738245d4946f589827a7d83009..0000000000000000000000000000000000000000 --- a/l10n/lv/media.po +++ /dev/null @@ -1,66 +0,0 @@ -# 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: 2012-07-27 02:02+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "" - -#: templates/music.php:5 -msgid "Previous" -msgstr "" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "" - -#: templates/music.php:7 -msgid "Mute" -msgstr "" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "" - -#: templates/music.php:37 -msgid "Artist" -msgstr "" - -#: templates/music.php:38 -msgid "Album" -msgstr "" - -#: templates/music.php:39 -msgid "Title" -msgstr "" diff --git a/l10n/lv/tasks.po b/l10n/lv/tasks.po deleted file mode 100644 index 20b56238ac7fe6370ea87e875c84646bef752df9..0000000000000000000000000000000000000000 --- a/l10n/lv/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/lv/user_migrate.po b/l10n/lv/user_migrate.po deleted file mode 100644 index d54da6a081a64100a2dfcf045a0e0f0007a1597c..0000000000000000000000000000000000000000 --- a/l10n/lv/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/lv/user_openid.po b/l10n/lv/user_openid.po deleted file mode 100644 index 2dbaa488ad754e8b8579e91e0a5a563a9aa65ae6..0000000000000000000000000000000000000000 --- a/l10n/lv/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/mk/admin_dependencies_chk.po b/l10n/mk/admin_dependencies_chk.po deleted file mode 100644 index 18aee717b6da6d284297aeb4909dedf3e40849d5..0000000000000000000000000000000000000000 --- a/l10n/mk/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/mk/admin_migrate.po b/l10n/mk/admin_migrate.po deleted file mode 100644 index f692f219857fd595a1e34813c1bd2f04c0e6c446..0000000000000000000000000000000000000000 --- a/l10n/mk/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/mk/bookmarks.po b/l10n/mk/bookmarks.po deleted file mode 100644 index 547a2c5da28afc295dc5766992ae21f496a9e7fe..0000000000000000000000000000000000000000 --- a/l10n/mk/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/mk/calendar.po b/l10n/mk/calendar.po deleted file mode 100644 index 6dfc90153f108280acf127cd0b921c84f0a093db..0000000000000000000000000000000000000000 --- a/l10n/mk/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Miroslav Jovanovic <j.miroslav@gmail.com>, 2012. -# Miroslav Jovanovic <jmiroslav@softhome.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Не се најдени календари." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Не се најдени настани." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Погрешен календар" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Нова временска зона:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Временската зона е променета" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Неправилно барање" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Календар" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ддд" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ддд М/д" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "дддд М/д" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "ММММ гггг" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "дддд, МММ д, гггг" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Роденден" - -#: lib/app.php:122 -msgid "Business" -msgstr "Деловно" - -#: lib/app.php:123 -msgid "Call" -msgstr "Повикај" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Клиенти" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Доставувач" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Празници" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Идеи" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Патување" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Јубилеј" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Состанок" - -#: lib/app.php:131 -msgid "Other" -msgstr "Останато" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Лично" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Проекти" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Прашања" - -#: lib/app.php:135 -msgid "Work" -msgstr "Работа" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "неименувано" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Нов календар" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Не се повторува" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Дневно" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Седмично" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Секој работен ден" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Дво-седмично" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Месечно" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Годишно" - -#: lib/object.php:388 -msgid "never" -msgstr "никогаш" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "по настан" - -#: lib/object.php:390 -msgid "by date" -msgstr "по датум" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "по ден во месецот" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "по работен ден" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Понеделник" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Вторник" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Среда" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Четврток" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Петок" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Сабота" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Недела" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "седмични настани од месец" - -#: lib/object.php:428 -msgid "first" -msgstr "прв" - -#: lib/object.php:429 -msgid "second" -msgstr "втор" - -#: lib/object.php:430 -msgid "third" -msgstr "трет" - -#: lib/object.php:431 -msgid "fourth" -msgstr "четврт" - -#: lib/object.php:432 -msgid "fifth" -msgstr "пет" - -#: lib/object.php:433 -msgid "last" -msgstr "последен" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Јануари" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Февруари" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Март" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Април" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Мај" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Јуни" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Јули" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Август" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Септември" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Октомври" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Ноември" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Декември" - -#: lib/object.php:488 -msgid "by events date" -msgstr "по датумот на настанот" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "по вчерашните" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "по број на седмицата" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "по ден и месец" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Датум" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Кал." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Цел ден" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Полиња кои недостасуваат" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Наслов" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Од датум" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Од време" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "До датум" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "До време" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Овој настан завршува пред за почне" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Имаше проблем со базата" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Седмица" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Месец" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Листа" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Денеска" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Ваши календари" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Врска за CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Споделени календари" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Нема споделени календари" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Сподели календар" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Преземи" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Уреди" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Избриши" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "Споделен со вас од" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Нов календар" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Уреди календар" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Име за приказ" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Активен" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Боја на календарот" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Сними" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Прати" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Откажи" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Уреди настан" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Извези" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Инфо за настан" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Повторување" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Аларм" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Присутни" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Сподели" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Наслов на настанот" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Категорија" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Одвоете ги категориите со запирка" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Уреди категории" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Целодневен настан" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Од" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "До" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Напредни опции" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Локација" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Локација на настанот" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Опис" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Опис на настанот" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Повтори" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Напредно" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Избери работни денови" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Избери денови" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "и настаните ден од година." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "и настаните ден од месец." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Избери месеци" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Избери седмици" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "и настаните седмица од година." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "интервал" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Крај" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "повторувања" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "создади нов календар" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Внеси календар од датотека " - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Име на новиот календар" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Увези" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Затвори дијалог" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Создади нов настан" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Погледај настан" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Нема избрано категории" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "од" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "на" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Временска зона" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24ч" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12ч" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Корисници" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "избери корисници" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Изменливо" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Групи" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "избери групи" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "направи јавно" diff --git a/l10n/mk/contacts.po b/l10n/mk/contacts.po deleted file mode 100644 index 5ad0cf28317c6353b2758113dc21e1979e63c89a..0000000000000000000000000000000000000000 --- a/l10n/mk/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Miroslav Jovanovic <j.miroslav@gmail.com>, 2012. -# Miroslav Jovanovic <jmiroslav@softhome.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Грешка (де)активирање на адресарот." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ид не е поставено." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Неможе да се ажурира адресар со празно име." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Грешка при ажурирање на адресарот." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Нема доставено ИД" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Грешка во поставување сума за проверка." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Нема избрано категории за бришење." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Не се најдени адресари." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Не се најдени контакти." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Имаше грешка при додавање на контактот." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "име за елементот не е поставена." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Неможе да се додаде празна вредност." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Барем една од полињата за адреса треба да биде пополнето." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Се обидовте да внесете дупликат вредност:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Информацијата за vCard не е точна. Ве молам превчитајте ја страницава." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Недостасува ИД" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Грешка при парсирање VCard за ИД: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "сумата за проверка не е поставена." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Информацијата за vCard не е точна. Ве молам превчитајте ја страницава:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Нешто се расипа." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Не беше доставено ИД за контакт." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Грешка во читање на контакт фотографија." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Грешка во снимање на привремена датотека." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Фотографијата која се вчитува е невалидна." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "ИД за контакт недостасува." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Не беше поднесена патека за фотографија." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Не постои датотеката:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Грешка во вчитување на слика." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Грешка при преземањето на контакт објектот," - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Грешка при утврдувањето на карактеристиките на фотографијата." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Грешка при снимање на контактите." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Грешка при скалирање на фотографијата" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Грешка при сечење на фотографијата" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Грешка при креирањето на привремената фотографија" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Грешка при наоѓањето на фотографијата:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Грешка во снимање на контактите на диск." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Датотеката беше успешно подигната." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Големината на датотеката ја надминува upload_max_filesize директивата во php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Датотеката беше само делумно подигната." - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Не беше подигната датотека." - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Недостасува привремена папка" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Не можеше да се сними привремената фотографија:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Не можеше да се вчита привремената фотографија:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Ниту еден фајл не се вчита. Непозната грешка" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Контакти" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Жалам, оваа функционалност уште не е имплементирана" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Не е имплементирано" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Не можев да добијам исправна адреса." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Грешка" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Својството не смее да биде празно." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Не може да се серијализираат елементите." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' повикан без тип на аргументот. Пријавете грешка/проблем на bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Уреди го името" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Ниту еден фајл не е избран за вчитување." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Датотеката која се обидувате да ја префрлите ја надминува максималната големина дефинирана за пренос на овој сервер." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Одбери тип" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Резултат: " - -#: js/loader.js:49 -msgid " imported, " -msgstr "увезено," - -#: js/loader.js:49 -msgid " failed." -msgstr "неуспешно." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Ова не е во Вашиот адресар." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Контактот неможе да биде најден." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Работа" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Дома" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Мобилен" - -#: lib/app.php:203 -msgid "Text" -msgstr "Текст" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Глас" - -#: lib/app.php:205 -msgid "Message" -msgstr "Порака" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Факс" - -#: lib/app.php:207 -msgid "Video" -msgstr "Видео" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Пејџер" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Интернет" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Роденден" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Роденден на {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Контакт" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Додади контакт" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Внеси" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Адресари" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Затвои" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Довлечкај фотографија за да се подигне" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Избриши моментална фотографија" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Уреди моментална фотографија" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Подигни нова фотографија" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Изберете фотографија од ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Прилагоден формат, кратко име, цело име, обратно или обратно со запирка" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Уреди детали за име" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Организација" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Избриши" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Прекар" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Внеси прекар" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Групи" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Одвоете ги групите со запирка" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Уреди групи" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Претпочитано" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Ве молам внесете правилна адреса за е-пошта." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Внесете е-пошта" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Прати порака до адреса" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Избриши адреса за е-пошта" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Внесете телефонски број" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Избриши телефонски број" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Погледајте на мапа" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Уреди детали за адреса" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Внесете забелешки тука." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Додади поле" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Телефон" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Е-пошта" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Адреса" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Забелешка" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Преземи го контактот" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Избриши го контактот" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Привремената слика е отстранета од кешот." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Уреди адреса" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Тип" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Поштенски фах" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Дополнително" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Град" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Регион" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Поштенски код" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Држава" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Адресар" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Префикси за титула" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Г-ца" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Г-ѓа" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Г-дин" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Сер" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Г-ѓа" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Др" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Лично име" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Дополнителни имиња" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Презиме" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Суфикси за титула" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "Д.М." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Д-р" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Помлад." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Постар." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Внеси датотека со контакти" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Ве молам изберете адресар" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "креирај нов адресар" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Име на новиот адресар" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Внесување контакти" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Немате контакти во Вашиот адресар." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Додади контакт" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Адреса за синхронизација со CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "повеќе информации" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Примарна адреса" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Преземи" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Уреди" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Нов адресар" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Сними" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Откажи" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 367a70fb295a6af038fe614b74ed1f183868835a..e3ef1875d1353d96fb84bdf3229c4914760d5be9 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -32,55 +32,55 @@ msgstr "Нема категорија да се додаде?" msgid "This category already exists: " msgstr "Оваа категорија веќе постои:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Поставки" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Јануари" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Февруари" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Март" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Април" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Мај" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Јуни" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Јули" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Август" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Септември" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Октомври" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Ноември" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Декември" @@ -108,8 +108,8 @@ msgstr "Во ред" msgid "No categories selected for deletion." msgstr "Не е одбрана категорија за бришење." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Грешка" @@ -149,7 +149,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Лозинка" @@ -185,39 +186,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -241,12 +242,12 @@ msgstr "Побарано" msgid "Login failed!" msgstr "Најавата не успеа!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Корисничко име" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Побарајте ресетирање" @@ -302,52 +303,77 @@ msgstr "Уреди категории" msgid "Add" msgstr "Додади" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Направете <strong>администраторска сметка</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Фолдер со податоци" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Конфигурирај ја базата" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "ќе биде користено" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Заврши го подесувањето" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" @@ -355,15 +381,29 @@ msgstr "веб сервиси под Ваша контрола" msgid "Log out" msgstr "Одјава" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "запамти" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Најава" @@ -378,3 +418,17 @@ msgstr "претходно" #: templates/part.pagenavi.php:20 msgid "next" msgstr "следно" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/mk/files_odfviewer.po b/l10n/mk/files_odfviewer.po deleted file mode 100644 index 77205c755f2df1c5cb3d50c60f25a9e430d3c391..0000000000000000000000000000000000000000 --- a/l10n/mk/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/mk/files_pdfviewer.po b/l10n/mk/files_pdfviewer.po deleted file mode 100644 index a6cb756a0a237dc63ab3e3723d4d357a57a78446..0000000000000000000000000000000000000000 --- a/l10n/mk/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/mk/files_texteditor.po b/l10n/mk/files_texteditor.po deleted file mode 100644 index 0164432b9091c5a1eab1559f22b57d21bc8cc763..0000000000000000000000000000000000000000 --- a/l10n/mk/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/mk/gallery.po b/l10n/mk/gallery.po deleted file mode 100644 index ec987f8a1d2822351f7516c4a3c196fff697649b..0000000000000000000000000000000000000000 --- a/l10n/mk/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Miroslav Jovanovic <jmiroslav@softhome.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Macedonian (http://www.transifex.net/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Слики" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Параметри" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Рескенирај" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Стоп" - -#: templates/index.php:18 -msgid "Share" -msgstr "Сподели" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Назад" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Тргни потврда" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Дали сакате да го отстраните албумот" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Измени име на албумот" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Ново има на албумот" diff --git a/l10n/mk/impress.po b/l10n/mk/impress.po deleted file mode 100644 index 5948fc5ec3c89b7816ca557494708ad48c433256..0000000000000000000000000000000000000000 --- a/l10n/mk/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/mk/media.po b/l10n/mk/media.po deleted file mode 100644 index 70a02ba7a64adabb28c7571747b400daf21ddb9d..0000000000000000000000000000000000000000 --- a/l10n/mk/media.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Georgi Stanojevski <glisha@gmail.com>, 2012. -# <glisha@gmail.com>, 2012. -# Miroslav Jovanovic <jmiroslav@softhome.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Macedonian (http://www.transifex.net/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Музика" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Пушти" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Пауза" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Претходно" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Следно" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Занеми" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Пушти глас" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Рескенирај ја колекцијата" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Изведувач" - -#: templates/music.php:38 -msgid "Album" -msgstr "Албум" - -#: templates/music.php:39 -msgid "Title" -msgstr "Наслов" diff --git a/l10n/mk/tasks.po b/l10n/mk/tasks.po deleted file mode 100644 index f06174892d7a010745cbf0d0f9577c111b72aeda..0000000000000000000000000000000000000000 --- a/l10n/mk/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/mk/user_migrate.po b/l10n/mk/user_migrate.po deleted file mode 100644 index 06c88c2599fc7a4592de51830c3888fc7444f2e1..0000000000000000000000000000000000000000 --- a/l10n/mk/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/mk/user_openid.po b/l10n/mk/user_openid.po deleted file mode 100644 index 3636c401f61c144b583e9edd4a7fb12a0ec4de87..0000000000000000000000000000000000000000 --- a/l10n/mk/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/ms_MY/admin_dependencies_chk.po b/l10n/ms_MY/admin_dependencies_chk.po deleted file mode 100644 index 00564b0cf2ac383bc6f91d8d53ef838b7b03d4de..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/ms_MY/admin_migrate.po b/l10n/ms_MY/admin_migrate.po deleted file mode 100644 index 30cd1e1be644a91be4b78d55330bb32b3bac4656..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/ms_MY/bookmarks.po b/l10n/ms_MY/bookmarks.po deleted file mode 100644 index 06c58f9a8687ddf23b4ce625401c889e3e8260e0..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/ms_MY/calendar.po b/l10n/ms_MY/calendar.po deleted file mode 100644 index b7b41176326ba28d681dda4b58a7793af96ca164..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/calendar.po +++ /dev/null @@ -1,818 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Ahmed Noor Kader Mustajir Md Eusoff <sir.ade@gmail.com>, 2012. -# <hadri.hilmi@gmail.com>, 2011, 2012. -# Hadri Hilmi <hadri.hilmi@gmail.com>, 2012. -# Hafiz Ismail <mhbinet@gmail.com>, 2012. -# Zulhilmi Rosnin <zulhilmi.rosnin@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Tiada kalendar dijumpai." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Tiada agenda dijumpai." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Silap kalendar" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Timezone Baru" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Zon waktu diubah" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Permintaan tidak sah" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalendar" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "dd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Hari lahir" - -#: lib/app.php:122 -msgid "Business" -msgstr "Perniagaan" - -#: lib/app.php:123 -msgid "Call" -msgstr "Panggilan" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klien" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Penghantar" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Cuti" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idea" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Perjalanan" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubli" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Perjumpaan" - -#: lib/app.php:131 -msgid "Other" -msgstr "Lain" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Peribadi" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projek" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Soalan" - -#: lib/app.php:135 -msgid "Work" -msgstr "Kerja" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "tiada nama" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Kalendar baru" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Tidak berulang" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Harian" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Mingguan" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Setiap hari minggu" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Dua kali seminggu" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Bulanan" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Tahunan" - -#: lib/object.php:388 -msgid "never" -msgstr "jangan" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "dari kekerapan" - -#: lib/object.php:390 -msgid "by date" -msgstr "dari tarikh" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "dari haribulan" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "dari hari minggu" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Isnin" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Selasa" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Rabu" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Khamis" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Jumaat" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sabtu" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Ahad" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "event minggu dari bulan" - -#: lib/object.php:428 -msgid "first" -msgstr "pertama" - -#: lib/object.php:429 -msgid "second" -msgstr "kedua" - -#: lib/object.php:430 -msgid "third" -msgstr "ketiga" - -#: lib/object.php:431 -msgid "fourth" -msgstr "keempat" - -#: lib/object.php:432 -msgid "fifth" -msgstr "kelima" - -#: lib/object.php:433 -msgid "last" -msgstr "akhir" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januari" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februari" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Mac" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "April" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mei" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Jun" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Julai" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Ogos" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Disember" - -#: lib/object.php:488 -msgid "by events date" -msgstr "dari tarikh event" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "dari tahun" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "dari nombor minggu" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "dari hari dan bulan" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Tarikh" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kalendar" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Sepanjang hari" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Ruangan tertinggal" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Tajuk" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Dari tarikh" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Masa Dari" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Sehingga kini" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Semasa" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Peristiwa berakhir sebelum bermula" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Terdapat kegagalan pada pengkalan data" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Minggu" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Bulan" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Senarai" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hari ini" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Kalendar anda" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Pautan CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Kalendar Kongsian" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Tiada kalendar kongsian" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Kongsi Kalendar" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Muat turun" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Edit" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Hapus" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "dikongsi dengan kamu oleh" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Kalendar baru" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Edit kalendar" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Paparan nama" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktif" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Warna kalendar" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Simpan" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Hantar" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Batal" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Edit agenda" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Export" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Maklumat agenda" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Pengulangan" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Penggera" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Jemputan" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Berkongsi" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Tajuk agenda" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "kategori" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Asingkan kategori dengan koma" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Sunting Kategori" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Agenda di sepanjang hari " - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Dari" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "ke" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Pilihan maju" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Lokasi" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Lokasi agenda" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Huraian" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Huraian agenda" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Ulang" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Maju" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Pilih hari minggu" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Pilih hari" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "dan hari event dalam tahun." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "dan hari event dalam bulan." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Pilih bulan" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Pilih minggu" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "dan event mingguan dalam setahun." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Tempoh" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Tamat" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "Peristiwa" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Cipta kalendar baru" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Import fail kalendar" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nama kalendar baru" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Import" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Tutup dialog" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Buat agenda baru" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Papar peristiwa" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Tiada kategori dipilih" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "dari" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "di" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Zon waktu" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Pengguna" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "Pilih pengguna" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Boleh disunting" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Kumpulan-kumpulan" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "pilih kumpulan-kumpulan" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "jadikan tontonan awam" diff --git a/l10n/ms_MY/contacts.po b/l10n/ms_MY/contacts.po deleted file mode 100644 index f3b425c71f262671b025ff920ef9849a727cd7a2..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/contacts.po +++ /dev/null @@ -1,957 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Ahmed Noor Kader Mustajir Md Eusoff <sir.ade@gmail.com>, 2012. -# <hadri.hilmi@gmail.com>, 2012. -# Hadri Hilmi <hadri.hilmi@gmail.com>, 2012. -# Hafiz Ismail <mhbinet@gmail.com>, 2012. -# Zulhilmi Rosnin <zulhilmi.rosnin@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Ralat nyahaktif buku alamat." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID tidak ditetapkan." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Tidak boleh kemaskini buku alamat dengan nama yang kosong." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Masalah mengemaskini buku alamat." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "tiada ID diberi" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Ralat menetapkan checksum." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Tiada kategori dipilih untuk dibuang." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Tiada buku alamat dijumpai." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Tiada kenalan dijumpai." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Terdapat masalah menambah maklumat." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "nama elemen tidak ditetapkan." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Tidak boleh menambah ruang kosong." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Sekurangnya satu ruangan alamat perlu diisikan." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Cuba untuk letak nilai duplikasi:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Maklumat vCard tidak tepat. Sila reload semula halaman ini." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "ID Hilang" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Ralat VCard untuk ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "checksum tidak ditetapkan." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Maklumat tentang vCard tidak betul." - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Sesuatu tidak betul." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Tiada ID kenalan yang diberi." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Ralat pada foto kenalan." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Ralat menyimpan fail sementara" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Foto muatan tidak sah." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "ID Kenalan telah hilang." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Tiada direktori gambar yang diberi." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Fail tidak wujud:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Ralat pada muatan imej." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Ralat mendapatkan objek pada kenalan." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Ralat mendapatkan maklumat gambar." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Ralat menyimpan kenalan." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Ralat mengubah saiz imej" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Ralat memotong imej" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Ralat mencipta imej sementara" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Ralat mencari imej: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Ralat memuatnaik senarai kenalan." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Saiz fail yang dimuatnaik melebihi upload_max_filesize yang ditetapkan dalam php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Fail yang dimuatnaik tidak lengkap" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Tiada fail dimuatnaik" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Direktori sementara hilang" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Tidak boleh menyimpan imej sementara: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Tidak boleh membuka imej sementara: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Hubungan-hubungan" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Maaf, fungsi ini masih belum boleh diguna lagi" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Tidak digunakan" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Tidak boleh mendapat alamat yang sah." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Ralat" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Nilai ini tidak boleh kosong." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Tidak boleh menggabungkan elemen." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' dipanggil tanpa argumen taip. Sila maklumkan di bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Ubah nama" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Tiada fail dipilih untuk muatnaik." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Fail yang ingin dimuatnaik melebihi saiz yang dibenarkan." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "PIlih jenis" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Hasil: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " import, " - -#: js/loader.js:49 -msgid " failed." -msgstr " gagal." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Buku alamat tidak ditemui:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Ini bukan buku alamat anda." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Hubungan tidak dapat ditemui" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Kerja" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Rumah" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Lain" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mudah alih" - -#: lib/app.php:203 -msgid "Text" -msgstr "Teks" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Suara" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mesej" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Alat Kelui" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Hari lahir" - -#: lib/app.php:253 -msgid "Business" -msgstr "Perniagaan" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "klien" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Hari kelepasan" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Idea" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Perjalanan" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubli" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Mesyuarat" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Peribadi" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projek" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Hari Lahir {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Hubungan" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Tambah kenalan" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Import" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Tetapan" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Senarai Buku Alamat" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Tutup" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Buku alamat seterusnya" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Buku alamat sebelumnya" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Letak foto disini untuk muatnaik" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Padam foto semasa" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Ubah foto semasa" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Muatnaik foto baru" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Pilih foto dari ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format bebas, Nama pendek, Nama penuh, Unduran dengan koma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Ubah butiran nama" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisasi" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Padam" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Nama Samaran" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Masukkan nama samaran" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Kumpulan" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Asingkan kumpulan dengan koma" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Ubah kumpulan" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Pilihan" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Berikan alamat emel yang sah." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Masukkan alamat emel" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Hantar ke alamat" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Padam alamat emel" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Masukkan nombor telefon" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Padam nombor telefon" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Lihat pada peta" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Ubah butiran alamat" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Letak nota disini." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Letak ruangan" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Emel" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Alamat" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Nota" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Muat turun hubungan" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Padam hubungan" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Imej sementara telah dibuang dari cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Ubah alamat" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Jenis" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Peti surat" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Sambungan" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "bandar" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Wilayah" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Poskod" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Negara" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Buku alamat" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Awalan nama" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Cik" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Cik" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Encik" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Tuan" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Puan" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Nama diberi" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Nama tambahan" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Nama keluarga" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Awalan nama" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Import fail kenalan" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Sila pilih buku alamat" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Cipta buku alamat baru" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nama buku alamat" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Import senarai kenalan" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Anda tidak mempunyai sebarang kenalan didalam buku alamat." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Letak kenalan" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Pilih Buku Alamat" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Masukkan nama" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Masukkan keterangan" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "alamat selarian CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "maklumat lanjut" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Alamat utama" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Muat naik" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Sunting" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Buku Alamat Baru" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nama" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Keterangan" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Simpan" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Batal" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Lagi..." diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 006132e2091931b016e7f97937903ab555d77452..d336f9d5447c9de12b0cbda4353db7c6aca17f52 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -32,55 +32,55 @@ msgstr "Tiada kategori untuk di tambah?" msgid "This category already exists: " msgstr "Kategori ini telah wujud" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Tetapan" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Januari" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Februari" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Mac" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "April" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mei" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Jun" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Julai" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Ogos" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "September" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Oktober" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "November" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Disember" @@ -108,8 +108,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "tiada kategori dipilih untuk penghapusan" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Ralat" @@ -149,7 +149,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Kata laluan" @@ -185,39 +186,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -241,12 +242,12 @@ msgstr "Meminta" msgid "Login failed!" msgstr "Log masuk gagal!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nama pengguna" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Permintaan set semula" @@ -302,52 +303,77 @@ msgstr "Edit kategori" msgid "Add" msgstr "Tambah" +#: 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 "buat <strong>akaun admin</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Setup selesai" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" @@ -355,15 +381,29 @@ msgstr "Perkhidmatan web di bawah kawalan anda" msgid "Log out" msgstr "Log keluar" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "ingat" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Log masuk" @@ -378,3 +418,17 @@ msgstr "sebelum" #: templates/part.pagenavi.php:20 msgid "next" msgstr "seterus" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/ms_MY/files_odfviewer.po b/l10n/ms_MY/files_odfviewer.po deleted file mode 100644 index 0aa22023e5cfa44bec8ea7360e5a9bdf14a665fd..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ms_MY/files_pdfviewer.po b/l10n/ms_MY/files_pdfviewer.po deleted file mode 100644 index b0e03a94e5160a00637e1f5493c62d6e04aa6931..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ms_MY/files_texteditor.po b/l10n/ms_MY/files_texteditor.po deleted file mode 100644 index f2549258136d19ce8c4c9996d5d65594ee7153fc..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ms_MY/gallery.po b/l10n/ms_MY/gallery.po deleted file mode 100644 index 7dbe8487c18c1e990d7eec6d30b76e47f2ec89d9..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/gallery.po +++ /dev/null @@ -1,96 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <hadri.hilmi@gmail.com>, 2012. -# Hafiz Ismail <mhbinet@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Imbas semula" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Kembali" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/ms_MY/impress.po b/l10n/ms_MY/impress.po deleted file mode 100644 index a7a5b4117aed17eac3819bc16323c3298188d9c9..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ms_MY/media.po b/l10n/ms_MY/media.po deleted file mode 100644 index 50375f61fe877fbae8212d2eb1c4cf5486181f6f..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <hadri.hilmi@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Muzik" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Main" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Jeda" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Sebelum" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Seterus" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Bisu" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Nyahbisu" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Imbas semula koleksi" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artis" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Judul" diff --git a/l10n/ms_MY/tasks.po b/l10n/ms_MY/tasks.po deleted file mode 100644 index 6a67235eeee1ab9db6ae37bd4d8de5e0d7339587..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/ms_MY/user_migrate.po b/l10n/ms_MY/user_migrate.po deleted file mode 100644 index f4e730b7c83544800b23b6bd0e3986a0452c678c..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/ms_MY/user_openid.po b/l10n/ms_MY/user_openid.po deleted file mode 100644 index 867a3bb737071277578681631a7434d25bab9fc8..0000000000000000000000000000000000000000 --- a/l10n/ms_MY/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/nb_NO/admin_dependencies_chk.po b/l10n/nb_NO/admin_dependencies_chk.po deleted file mode 100644 index 94de202861f18a406e0d661df8706cb6c19fcf3a..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <runesudden@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 22:55+0000\n" -"Last-Translator: runesudden <runesudden@gmail.com>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Modulen php-jason blir benyttet til inter kommunikasjon" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Modulen php-curl blir brukt til å hente sidetittelen når bokmerke blir lagt til" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Modulen php-gd blir benyttet til å lage miniatyr av bildene dine" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Modulen php-ldap benyttes for å koble til din ldapserver" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Modulen php-zup benyttes til å laste ned flere filer på en gang." - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Modulen php-mb_multibyte benyttes til å håndtere korrekt tegnkoding." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Modulen php-ctype benyttes til å validere data." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Modulen php-xml benyttes til å dele filer med webdav" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "Direktivet allow_url_fopen i php.ini bør settes til 1 for å kunne hente kunnskapsbasen fra OCS-servere" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Modulen php-pdo benyttes til å lagre ownCloud data i en database." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Avhengighetsstatus" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Benyttes av:" diff --git a/l10n/nb_NO/admin_migrate.po b/l10n/nb_NO/admin_migrate.po deleted file mode 100644 index 12728fa65ed17ace69f83a1b37a64dcacf98db0a..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Arvid Nornes <arvid.nornes@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:01+0200\n" -"PO-Revision-Date: 2012-08-23 17:37+0000\n" -"Last-Translator: Arvid Nornes <arvid.nornes@gmail.com>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Eksporter denne ownCloud forekomsten" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Dette vil opprette en komprimert fil som inneholder dataene fra denne ownCloud forekomsten.⏎ Vennligst velg eksporttype:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Eksport" diff --git a/l10n/nb_NO/bookmarks.po b/l10n/nb_NO/bookmarks.po deleted file mode 100644 index 6ab8bac5805d14429f2ae0041d0059d5530313d4..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/bookmarks.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Arvid Nornes <arvid.nornes@gmail.com>, 2012. -# <runesudden@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 22:58+0000\n" -"Last-Translator: runesudden <runesudden@gmail.com>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Bokmerker" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "uten navn" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Dra denne over din nettlesers bokmerker og klikk den, hvis du ønsker å hurtig legge til bokmerke for en nettside" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Les senere" - -#: templates/list.php:13 -msgid "Address" -msgstr "Adresse" - -#: templates/list.php:14 -msgid "Title" -msgstr "Tittel" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Etikett" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Lagre bokmerke" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Du har ingen bokmerker" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Bokmerke <br />" diff --git a/l10n/nb_NO/calendar.po b/l10n/nb_NO/calendar.po deleted file mode 100644 index b001de5a2621e7b6d254dc084ba2b8239681c599..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/calendar.po +++ /dev/null @@ -1,818 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <ajarmund@gmail.com>, 2011, 2012. -# Arvid Nornes <arvid.nornes@gmail.com>, 2012. -# Christer Eriksson <post@hc3web.com>, 2012. -# <itssmail@yahoo.no>, 2012. -# <sondre@nettfrihet.no>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Ingen kalendere funnet" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Ingen hendelser funnet" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Feil kalender" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Ny tidssone:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Tidssone endret" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Ugyldig forespørsel" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Bursdag" - -#: lib/app.php:122 -msgid "Business" -msgstr "Forretninger" - -#: lib/app.php:123 -msgid "Call" -msgstr "Ring" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Kunder" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Ferie" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideér" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Reise" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubileum" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Møte" - -#: lib/app.php:131 -msgid "Other" -msgstr "Annet" - -#: lib/app.php:132 -msgid "Personal" -msgstr "ersonlig" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Prosjekter" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Spørsmål" - -#: lib/app.php:135 -msgid "Work" -msgstr "Arbeid" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "uten navn" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Ny kalender" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Gjentas ikke" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Daglig" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Ukentlig" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Hver ukedag" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Annenhver uke" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Månedlig" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Årlig" - -#: lib/object.php:388 -msgid "never" -msgstr "aldri" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "etter hyppighet" - -#: lib/object.php:390 -msgid "by date" -msgstr "etter dato" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "etter dag i måned" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "etter ukedag" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Mandag" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Tirsdag" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Onsdag" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Torsdag" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Fredag" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Lørdag" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Søndag" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "begivenhetens uke denne måneden" - -#: lib/object.php:428 -msgid "first" -msgstr "første" - -#: lib/object.php:429 -msgid "second" -msgstr "andre" - -#: lib/object.php:430 -msgid "third" -msgstr "tredje" - -#: lib/object.php:431 -msgid "fourth" -msgstr "fjerde" - -#: lib/object.php:432 -msgid "fifth" -msgstr "femte" - -#: lib/object.php:433 -msgid "last" -msgstr "siste" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januar" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februar" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Mars" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "April" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mai" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juni" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juli" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "August" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Desember" - -#: lib/object.php:488 -msgid "by events date" -msgstr "etter hendelsenes dato" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "etter dag i året" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "etter ukenummer/-numre" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "etter dag og måned" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Dato" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Hele dagen " - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Manglende felt" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Tittel" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Fra dato" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Fra tidspunkt" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Til dato" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Til tidspunkt" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "En hendelse kan ikke slutte før den har begynt." - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Det oppstod en databasefeil." - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Uke" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "ned" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Liste" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "I dag" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Dine kalendere" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav-lenke" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Delte kalendere" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Ingen delte kalendere" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Del Kalender" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Last ned" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Endre" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Slett" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "delt med deg" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Ny kalender" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Rediger kalender" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Visningsnavn" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiv" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalenderfarge" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Lagre" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Lagre" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Avbryt" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Rediger en hendelse" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Eksporter" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Hendelsesinformasjon" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Gjentas" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Deltakere" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Del" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Hendelsestittel" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategori" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Separer kategorier med komma" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Rediger kategorier" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Hele dagen-hendelse" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Fra" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Til" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Avanserte innstillinger" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Sted" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Hendelsessted" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Beskrivelse" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Hendelesebeskrivelse" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Gjenta" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avansert" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Velg ukedager" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Velg dager" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "og hendelsenes dag i året." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "og hendelsenes dag i måneden." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Velg måneder" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Velg uker" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "og hendelsenes uke i året." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervall" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Slutt" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "forekomster" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Lag en ny kalender" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importer en kalenderfil" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Navn på ny kalender:" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importer" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Lukk dialog" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Opprett en ny hendelse" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Se på hendelse" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Ingen kategorier valgt" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Tidssone" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24 t" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12 t" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Brukere" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "valgte brukere" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Redigerbar" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupper" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "velg grupper" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "gjør offentlig" diff --git a/l10n/nb_NO/contacts.po b/l10n/nb_NO/contacts.po deleted file mode 100644 index 524dec3bd0d5aa7a79c753508fd273eedb93b1be..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/contacts.po +++ /dev/null @@ -1,956 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <ajarmund@gmail.com>, 2012. -# Christer Eriksson <post@hc3web.com>, 2012. -# Daniel <i18n@daniel.priv.no>, 2012. -# <itssmail@yahoo.no>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Et problem oppsto med å (de)aktivere adresseboken." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id er ikke satt." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Kan ikke oppdatere adressebøker uten navn." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Et problem oppsto med å oppdatere adresseboken." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Ingen ID angitt" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Ingen kategorier valgt for sletting." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Ingen adressebok funnet." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Ingen kontakter funnet." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Et problem oppsto med å legge til kontakten." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Kan ikke legge til tomt felt." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Minst en av adressefeltene må oppgis." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informasjonen om vCard-filen er ikke riktig. Last inn siden på nytt." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Manglende ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Noe gikk fryktelig galt." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Klarte ikke å lese kontaktbilde." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Klarte ikke å lagre midlertidig fil." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Bildet som lastes inn er ikke gyldig." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Kontakt-ID mangler." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Ingen filsti ble lagt inn." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Filen eksisterer ikke:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Klarte ikke å laste bilde." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Klarte ikke å lagre kontakt." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Klarte ikke å endre størrelse på bildet" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Klarte ikke å beskjære bildet" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Klarte ikke å lage et midlertidig bilde" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Kunne ikke finne bilde:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Klarte ikke å laste opp kontakter til lagringsplassen" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Filen du prøvde å laste opp var større enn grensen upload_max_filesize i php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Ingen filer ble lastet opp" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Mangler midlertidig mappe" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Kunne ikke lagre midlertidig bilde:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Kunne ikke laste midlertidig bilde:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Ingen filer ble lastet opp. Ukjent feil." - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontakter" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Feil" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Endre navn" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Ingen filer valgt for opplasting." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Filen du prøver å laste opp er for stor." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Velg type" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultat:" - -#: js/loader.js:49 -msgid " imported, " -msgstr "importert," - -#: js/loader.js:49 -msgid " failed." -msgstr "feilet." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Dette er ikke dine adressebok." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontakten ble ikke funnet." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Arbeid" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Hjem" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Tekst" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Svarer" - -#: lib/app.php:205 -msgid "Message" -msgstr "Melding" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faks" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internett" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Bursdag" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name}s bursdag" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Ny kontakt" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importer" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adressebøker" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Lukk" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Dra bilder hit for å laste opp" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Fjern nåværende bilde" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Rediger nåværende bilde" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Last opp nytt bilde" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Velg bilde fra ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Endre detaljer rundt navn" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisasjon" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Slett" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Kallenavn" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Skriv inn kallenavn" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-åååå" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupper" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Skill gruppene med komma" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Endre grupper" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Foretrukket" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Vennligst angi en gyldig e-postadresse." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Skriv inn e-postadresse" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Send e-post til adresse" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Fjern e-postadresse" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Skriv inn telefonnummer" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Fjern telefonnummer" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Se på kart" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Endre detaljer rundt adresse" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Legg inn notater her." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Legg til felt" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-post" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresse" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Notat" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Hend ned kontakten" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Slett kontakt" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Det midlertidige bildet er fjernet fra cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Endre adresse" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Type" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postboks" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Utvidet" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "By" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Området" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postnummer" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Land" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adressebok" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Ærestitler" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Frøken" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Herr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Fru" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Fornavn" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Ev. mellomnavn" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Etternavn" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Titler" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Stipendiat" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sr." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importer en fil med kontakter." - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Vennligst velg adressebok" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Lag ny adressebok" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Navn på ny adressebok" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importerer kontakter" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Du har ingen kontakter i din adressebok" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Ny kontakt" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Synkroniseringsadresse for CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "mer info" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Hent ned" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Rediger" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Ny adressebok" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Lagre" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Avbryt" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 3a89a7bb4bcade25225a806b9d855fb71d93635a..baab6b280d886230562f6329a47cd66792cdb328 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Ingen kategorier å legge til?" msgid "This category already exists: " msgstr "Denne kategorien finnes allerede:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Januar" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Februar" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Mars" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "April" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mai" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Juni" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Juli" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "August" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "September" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Oktober" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "November" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Desember" @@ -110,8 +110,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Ingen kategorier merket for sletting." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Feil" @@ -151,7 +151,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Passord" @@ -187,39 +188,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -243,12 +244,12 @@ msgstr "Anmodning" msgid "Login failed!" msgstr "Innloggingen var ikke vellykket." -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Brukernavn" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Anmod tilbakestilling" @@ -304,52 +305,77 @@ msgstr "Rediger kategorier" msgid "Add" msgstr "Legg til" +#: 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 "opprett en <strong>administrator-konto</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "nettjenester under din kontroll" @@ -357,15 +383,29 @@ msgstr "nettjenester under din kontroll" msgid "Log out" msgstr "Logg ut" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "husk" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Logg inn" @@ -380,3 +420,17 @@ msgstr "forrige" #: templates/part.pagenavi.php:20 msgid "next" msgstr "neste" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 3a28425725c2873993be08b0559fbc1aca89263a..1281f011d12259369786cbd111df772a885ce377 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -9,13 +9,14 @@ # Daniel <i18n@daniel.priv.no>, 2012. # <olamaekle@gmail.com>, 2012. # <runesudden@gmail.com>, 2012. +# <sindre@haverstad.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 21:29+0000\n" +"Last-Translator: sindrejh <sindre@haverstad.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -59,7 +60,7 @@ msgstr "Filer" #: js/fileactions.js:108 templates/index.php:62 msgid "Unshare" -msgstr "" +msgstr "Avslutt deling" #: js/fileactions.js:110 templates/index.php:64 msgid "Delete" @@ -67,41 +68,41 @@ msgstr "Slett" #: js/fileactions.js:182 msgid "Rename" -msgstr "" +msgstr "Omdøp" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" msgstr "eksisterer allerede" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "erstatt" -#: js/filelist.js:190 +#: js/filelist.js:192 msgid "suggest name" -msgstr "" +msgstr "foreslå navn" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" msgstr "erstattet" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "angre" -#: js/filelist.js:241 +#: js/filelist.js:243 msgid "with" msgstr "med" -#: js/filelist.js:273 +#: js/filelist.js:275 msgid "unshared" -msgstr "" +msgstr "deling avsluttet" -#: js/filelist.js:275 +#: js/filelist.js:277 msgid "deleted" msgstr "slettet" @@ -109,114 +110,114 @@ msgstr "slettet" msgid "generating ZIP-file, it may take some time." msgstr "opprettet ZIP-fil, dette kan ta litt tid" -#: js/files.js:208 +#: js/files.js:214 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:208 +#: js/files.js:214 msgid "Upload Error" msgstr "Opplasting feilet" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "Ventende" -#: js/files.js:256 +#: js/files.js:262 msgid "1 file uploading" -msgstr "" +msgstr "1 fil lastes opp" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" -msgstr "" +msgstr "filer lastes opp" -#: js/files.js:322 js/files.js:355 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:424 +#: js/files.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/files.js:494 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." msgstr "Ugyldig navn, '/' er ikke tillatt. " -#: js/files.js:667 +#: js/files.js:681 msgid "files scanned" -msgstr "" +msgstr "Filer skannet" -#: js/files.js:675 +#: js/files.js:689 msgid "error while scanning" -msgstr "" +msgstr "feil under skanning" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "Navn" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "Størrelse" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "Endret" -#: js/files.js:777 +#: js/files.js:791 msgid "folder" msgstr "mappe" -#: js/files.js:779 +#: js/files.js:793 msgid "folders" msgstr "mapper" -#: js/files.js:787 +#: js/files.js:801 msgid "file" msgstr "fil" -#: js/files.js:789 +#: js/files.js:803 msgid "files" msgstr "filer" -#: js/files.js:833 +#: js/files.js:847 msgid "seconds ago" -msgstr "" +msgstr "sekunder siden" -#: js/files.js:834 +#: js/files.js:848 msgid "minute ago" -msgstr "" +msgstr "minutt siden" -#: js/files.js:835 +#: js/files.js:849 msgid "minutes ago" -msgstr "" +msgstr "minutter siden" -#: js/files.js:838 +#: js/files.js:852 msgid "today" -msgstr "" +msgstr "i dag" -#: js/files.js:839 +#: js/files.js:853 msgid "yesterday" -msgstr "" +msgstr "i går" -#: js/files.js:840 +#: js/files.js:854 msgid "days ago" -msgstr "" +msgstr "dager siden" -#: js/files.js:841 +#: js/files.js:855 msgid "last month" -msgstr "" +msgstr "forrige måned" -#: js/files.js:843 +#: js/files.js:857 msgid "months ago" -msgstr "" +msgstr "måneder siden" -#: js/files.js:844 +#: js/files.js:858 msgid "last year" -msgstr "" +msgstr "forrige år" -#: js/files.js:845 +#: js/files.js:859 msgid "years ago" -msgstr "" +msgstr "år siden" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/nb_NO/files_odfviewer.po b/l10n/nb_NO/files_odfviewer.po deleted file mode 100644 index 61ad61a7fe921636cb5b1aaf1e065e409f93b4b2..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/nb_NO/files_pdfviewer.po b/l10n/nb_NO/files_pdfviewer.po deleted file mode 100644 index e036a75c1b4373666c2e031cfed54624fe3d4be7..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/nb_NO/files_texteditor.po b/l10n/nb_NO/files_texteditor.po deleted file mode 100644 index 0086fe9d648cd4cd40dfc18608401ee647f7c7b5..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/nb_NO/gallery.po b/l10n/nb_NO/gallery.po deleted file mode 100644 index cf8525c3105e0d75eb9eb787f3a90fe513ba2738..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/gallery.po +++ /dev/null @@ -1,42 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <ajarmund@gmail.com>, 2012. -# Christer Eriksson <post@hc3web.com>, 2012. -# Daniel <i18n@daniel.priv.no>, 2012. -# <runesudden@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:01+0000\n" -"Last-Translator: runesudden <runesudden@gmail.com>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:42 -msgid "Pictures" -msgstr "Bilder" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Del galleri" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Feil:" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Intern feil" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Lysbildefremvisning" diff --git a/l10n/nb_NO/impress.po b/l10n/nb_NO/impress.po deleted file mode 100644 index 8222542fcc3cfcd78c0830c73d0d0f14df439ec4..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 4a78161719d0d6898146cd667ee1180e1e69bdd8..774f27cf2ade4312adb552c74743eb75382b600d 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -5,57 +5,58 @@ # Translators: # Arvid Nornes <arvid.nornes@gmail.com>, 2012. # <runesudden@gmail.com>, 2012. +# <sindre@haverstad.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 21:24+0000\n" +"Last-Translator: sindrejh <sindre@haverstad.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: app.php:285 msgid "Help" msgstr "Hjelp" -#: app.php:295 +#: app.php:292 msgid "Personal" msgstr "Personlig" -#: app.php:300 +#: app.php:297 msgid "Settings" msgstr "Innstillinger" -#: app.php:305 +#: app.php:302 msgid "Users" msgstr "Brukere" -#: app.php:312 +#: app.php:309 msgid "Apps" msgstr "Apper" -#: app.php:314 +#: app.php:311 msgid "Admin" msgstr "Admin" -#: files.php:280 +#: files.php:328 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: files.php:281 +#: files.php:329 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: files.php:281 files.php:306 +#: files.php:329 files.php:354 msgid "Back to Files" msgstr "Tilbake til filer" -#: files.php:305 +#: files.php:353 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" @@ -63,7 +64,7 @@ msgstr "De valgte filene er for store til å kunne generere ZIP-fil" msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" -#: json.php:39 json.php:63 json.php:75 +#: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" msgstr "Autentiseringsfeil" @@ -71,57 +72,57 @@ msgstr "Autentiseringsfeil" msgid "Token expired. Please reload page." msgstr "Symbol utløpt. Vennligst last inn siden på nytt." -#: template.php:86 +#: template.php:87 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:87 +#: template.php:88 msgid "1 minute ago" msgstr "1 minuitt siden" -#: template.php:88 +#: template.php:89 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:91 +#: template.php:92 msgid "today" msgstr "i dag" -#: template.php:92 +#: template.php:93 msgid "yesterday" msgstr "i går" -#: template.php:93 +#: template.php:94 #, php-format msgid "%d days ago" msgstr "%d dager siden" -#: template.php:94 +#: template.php:95 msgid "last month" msgstr "forrige måned" -#: template.php:95 +#: template.php:96 msgid "months ago" msgstr "måneder siden" -#: template.php:96 +#: template.php:97 msgid "last year" msgstr "i fjor" -#: template.php:97 +#: template.php:98 msgid "years ago" msgstr "år siden" -#: updater.php:66 +#: updater.php:75 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s er tilgjengelig. Få <a href=\"%s\">mer informasjon</a>" -#: updater.php:68 +#: updater.php:77 msgid "up to date" -msgstr "" +msgstr "oppdatert" -#: updater.php:71 +#: updater.php:80 msgid "updates check is disabled" -msgstr "" +msgstr "versjonssjekk er avslått" diff --git a/l10n/nb_NO/media.po b/l10n/nb_NO/media.po deleted file mode 100644 index b6d932f8772127d79d1a76d34485d2aceb49069a..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <ajarmund@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musikk" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Spill" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pause" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Forrige" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Neste" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Demp" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Skru på lyd" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Skan samling på nytt" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artist" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Tittel" diff --git a/l10n/nb_NO/tasks.po b/l10n/nb_NO/tasks.po deleted file mode 100644 index bf07aa76d0eace4b748862d5cd3771baf7ddda28..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Arvid Nornes <arvid.nornes@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 17:17+0000\n" -"Last-Translator: Arvid Nornes <arvid.nornes@gmail.com>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "feil i dato/klokkeslett" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Oppgaver" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Ingen kategori" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Uspesifisert" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=høyest" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=middels" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=lavest" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Feil i prosent fullført" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Ulovlig prioritet" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Legg til oppgave" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Henter oppgaver..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Viktig" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Mer" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Mindre" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Slett" diff --git a/l10n/nb_NO/user_migrate.po b/l10n/nb_NO/user_migrate.po deleted file mode 100644 index 2e2605cb75e8f8b3520e3eb59da35c2ab5b13248..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/nb_NO/user_openid.po b/l10n/nb_NO/user_openid.po deleted file mode 100644 index cf98d889a4970e60cbae1376efd30a122053cc85..0000000000000000000000000000000000000000 --- a/l10n/nb_NO/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/nl/admin_dependencies_chk.po b/l10n/nl/admin_dependencies_chk.po deleted file mode 100644 index 436ece1cdef7c534ebb2138237cf8f27e2a9ab2a..0000000000000000000000000000000000000000 --- a/l10n/nl/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/nl/admin_migrate.po b/l10n/nl/admin_migrate.po deleted file mode 100644 index aa9f340dcd5647e1aafe9b62bd9eb3b12e1852a1..0000000000000000000000000000000000000000 --- a/l10n/nl/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Richard Bos <radoeka@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 16:56+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Exporteer deze ownCloud instantie" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Dit maakt een gecomprimeerd bestand, met de inhoud van deze ownCloud instantie. Kies het export type:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Exporteer" diff --git a/l10n/nl/bookmarks.po b/l10n/nl/bookmarks.po deleted file mode 100644 index 598af3f83a9b3def01af499b588f98586b8c9baf..0000000000000000000000000000000000000000 --- a/l10n/nl/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Richard Bos <radoeka@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 19:06+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Bladwijzers" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "geen naam" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Sleep dit naar uw browser bladwijzers en klik erop, wanneer u een webpagina snel wilt voorzien van een bladwijzer:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Lees later" - -#: templates/list.php:13 -msgid "Address" -msgstr "Adres" - -#: templates/list.php:14 -msgid "Title" -msgstr "Titel" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Tags" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Bewaar bookmark" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "U heeft geen bookmarks" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/nl/calendar.po b/l10n/nl/calendar.po deleted file mode 100644 index 5c283653c4871f2869f57a8efc5f0886443f9678..0000000000000000000000000000000000000000 --- a/l10n/nl/calendar.po +++ /dev/null @@ -1,820 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <bart.formosus@gmail.com>, 2011. -# <bartv@thisnet.nl>, 2011. -# Erik Bent <hj.bent.60@gmail.com>, 2012. -# <georg.stefan.germany@googlemail.com>, 2012. -# <jos@gelauff.net>, 2012. -# <pietje8501@gmail.com>, 2012. -# Richard Bos <radoeka@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 08:53+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Niet alle agenda's zijn volledig gecached" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Alles lijkt volledig gecached te zijn" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Geen kalenders gevonden." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Geen gebeurtenissen gevonden." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Verkeerde kalender" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Het bestand bevat geen gebeurtenissen of alle gebeurtenissen worden al in uw agenda bewaard." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "De gebeurtenissen worden in de nieuwe agenda bewaard" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "import is gefaald" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "de gebeurtenissen zijn in uw agenda opgeslagen " - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nieuwe tijdszone:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Tijdzone is veranderd" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Ongeldige aanvraag" - -#: appinfo/app.php:41 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd d.M" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd d.M" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "d[ MMM][ yyyy]{ '—' d MMM yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, d. MMM yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Verjaardag" - -#: lib/app.php:122 -msgid "Business" -msgstr "Zakelijk" - -#: lib/app.php:123 -msgid "Call" -msgstr "Bellen" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klanten" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Leverancier" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Vakantie" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideeën" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Reis" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubileum" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Vergadering" - -#: lib/app.php:131 -msgid "Other" -msgstr "Ander" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Persoonlijk" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projecten" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Vragen" - -#: lib/app.php:135 -msgid "Work" -msgstr "Werk" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "door" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "onbekend" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nieuwe Kalender" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Wordt niet herhaald" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Dagelijks" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Wekelijks" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Elke weekdag" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Tweewekelijks" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Maandelijks" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Jaarlijks" - -#: lib/object.php:388 -msgid "never" -msgstr "nooit meer" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "volgens gebeurtenissen" - -#: lib/object.php:390 -msgid "by date" -msgstr "op datum" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "per dag van de maand" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "op weekdag" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Maandag" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Dinsdag" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Woensdag" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Donderdag" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Vrijdag" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Zaterdag" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Zondag" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "gebeurtenissen week van maand" - -#: lib/object.php:428 -msgid "first" -msgstr "eerste" - -#: lib/object.php:429 -msgid "second" -msgstr "tweede" - -#: lib/object.php:430 -msgid "third" -msgstr "derde" - -#: lib/object.php:431 -msgid "fourth" -msgstr "vierde" - -#: lib/object.php:432 -msgid "fifth" -msgstr "vijfde" - -#: lib/object.php:433 -msgid "last" -msgstr "laatste" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januari" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februari" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Maart" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "April" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mei" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juni" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juli" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Augustus" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "December" - -#: lib/object.php:488 -msgid "by events date" -msgstr "volgens evenementsdatum" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "volgens jaardag(en)" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "volgens weeknummer(s)" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "per dag en maand" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Datum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Zon." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Maa." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Din." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Woe." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Don." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Vrij." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Zat." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Maa." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Apr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Mei." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Aug." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Sep." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Okt." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Dec." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Hele dag" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "missende velden" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titel" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Begindatum" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Begintijd" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Einddatum" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Eindtijd" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Het evenement eindigt voordat het begint" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Er was een databasefout" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Week" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Maand" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lijst" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Vandaag" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Instellingen" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Je kalenders" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav Link" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Gedeelde kalenders" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Geen gedeelde kalenders" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Deel kalender" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Download" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Bewerken" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Verwijderen" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "gedeeld met jou door" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nieuwe kalender" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Bewerk kalender" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Weergavenaam" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Actief" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalender kleur" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Opslaan" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Opslaan" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Annuleren" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Bewerken van een afspraak" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exporteren" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Geberurtenisinformatie" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Herhalend" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Deelnemers" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Delen" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Titel van de afspraak" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categorie" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Gescheiden door komma's" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Wijzig categorieën" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Hele dag" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Van" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Aan" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Geavanceerde opties" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Locatie" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Locatie van de afspraak" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Beschrijving" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Beschrijving van het evenement" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Herhalen" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Geavanceerd" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Selecteer weekdagen" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Selecteer dagen" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "en de gebeurtenissen dag van het jaar" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "en de gebeurtenissen dag van de maand" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Selecteer maanden" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Selecteer weken" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "en de gebeurtenissen week van het jaar" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Interval" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Einde" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "gebeurtenissen" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Maak een nieuw agenda" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importeer een agenda bestand" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Kies een agenda" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Naam van de nieuwe agenda" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Kies een beschikbare naam!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Een agenda met deze naam bestaat al. Als u doorgaat, worden deze agenda's samengevoegd" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importeer" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Sluit venster" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Maak een nieuwe afspraak" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Bekijk een gebeurtenis" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Geen categorieën geselecteerd" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "van" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "op" - -#: templates/settings.php:10 -msgid "General" -msgstr "Algemeen" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Tijdzone" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Werk de tijdzone automatisch bij" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Tijd formaat" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24uur" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12uur" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Begin de week op" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Cache" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Leeg cache voor repeterende gebeurtenissen" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URLs" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Agenda CalDAV synchronisatie adres" - -#: templates/settings.php:87 -msgid "more info" -msgstr "meer informatie" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Primary adres (voor Kontact en dergelijke)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Alleen lezen iCalendar link(en)" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Gebruikers" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "kies gebruikers" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Te wijzigen" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Groepen" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "kies groep" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "maak publiek" diff --git a/l10n/nl/contacts.po b/l10n/nl/contacts.po deleted file mode 100644 index fd2159c7acbcc89d2ad41ac28ba5b9d913cd7e40..0000000000000000000000000000000000000000 --- a/l10n/nl/contacts.po +++ /dev/null @@ -1,958 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <bart.formosus@gmail.com>, 2011. -# <bartv@thisnet.nl>, 2011. -# Erik Bent <hj.bent.60@gmail.com>, 2012. -# <icewind1991@gmail.com>, 2012. -# <koen@vervloesem.eu>, 2012. -# Richard Bos <radoeka@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 16:50+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Fout bij het (de)activeren van het adresboek." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id is niet ingesteld." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Kan adresboek zonder naam niet wijzigen" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Fout bij het updaten van het adresboek." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Geen ID opgegeven" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Instellen controlegetal mislukt" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Geen categorieën geselecteerd om te verwijderen." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Geen adresboek gevonden" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Geen contracten gevonden" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Er was een fout bij het toevoegen van het contact." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "onderdeel naam is niet opgegeven." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Kon het contact niet verwerken" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Kan geen lege eigenschap toevoegen." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Minstens één van de adresvelden moet ingevuld worden." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Eigenschap bestaat al: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "IM parameter ontbreekt" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "Onbekende IM:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informatie over de vCard is onjuist. Herlaad de pagina." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Ontbrekend ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Fout bij inlezen VCard voor ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "controlegetal is niet opgegeven." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informatie over vCard is fout. Herlaad de pagina: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Er ging iets totaal verkeerd. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Geen contact ID opgestuurd." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Lezen van contact foto mislukt." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Tijdelijk bestand opslaan mislukt." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "De geladen foto is niet goed." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Contact ID ontbreekt." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Geen fotopad opgestuurd." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Bestand bestaat niet:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Fout bij laden plaatje." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Fout om contact object te verkrijgen" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Fout om PHOTO eigenschap te verkrijgen" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Fout om contact op te slaan" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Fout tijdens aanpassen plaatje" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Fout tijdens aanpassen plaatje" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Fout om een tijdelijk plaatje te maken" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Fout kan plaatje niet vinden:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Fout bij opslaan van contacten." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "De upload van het bestand is goedgegaan." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Het bestand overschrijdt de upload_max_filesize instelling in php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Het bestand overschrijdt de MAX_FILE_SIZE instelling dat is opgegeven in het HTML formulier" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Het bestand is gedeeltelijk geüpload" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Er is geen bestand geüpload" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Er ontbreekt een tijdelijke map" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Kan tijdelijk plaatje niet op slaan:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Kan tijdelijk plaatje niet op laden:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Er was geen bestand geladen. Onbekende fout" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Contacten" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Sorry, deze functionaliteit is nog niet geïmplementeerd" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Niet geïmplementeerd" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Kan geen geldig adres krijgen" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Fout" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "U hebt geen permissie om contacten toe te voegen aan" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Selecteer één van uw eigen adresboeken" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Permissie fout" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Dit veld mag niet leeg blijven" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Kan de elementen niet serializen" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' aangeroepen zonder type argument. Rapporteer dit a.u.b. via http://bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Pas naam aan" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Geen bestanden geselecteerd voor upload." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Het bestand dat u probeert te uploaden overschrijdt de maximale bestand grootte voor bestand uploads voor deze server." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Fout profiel plaatje kan niet worden geladen." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Selecteer type" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Enkele contacten zijn gemarkeerd om verwijderd te worden, maar zijn nog niet verwijderd. Wacht totdat ze zijn verwijderd." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Wilt u deze adresboeken samenvoegen?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultaat:" - -#: js/loader.js:49 -msgid " imported, " -msgstr "geïmporteerd," - -#: js/loader.js:49 -msgid " failed." -msgstr "gefaald." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Displaynaam mag niet leeg zijn." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Adresboek niet gevonden:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Dit is niet uw adresboek." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Contact kon niet worden gevonden." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Werk" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Thuis" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Anders" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobiel" - -#: lib/app.php:203 -msgid "Text" -msgstr "Tekst" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Stem" - -#: lib/app.php:205 -msgid "Message" -msgstr "Bericht" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pieper" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Verjaardag" - -#: lib/app.php:253 -msgid "Business" -msgstr "Business" - -#: lib/app.php:254 -msgid "Call" -msgstr "Bel" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Klanten" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Leverancier" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Vakanties" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Ideeën" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Reis" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubileum" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Vergadering" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Persoonlijk" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projecten" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Vragen" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name}'s verjaardag" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contact" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "U heeft geen permissie om dit contact te bewerken." - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "U heeft geen permissie om dit contact te verwijderen." - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Contact toevoegen" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importeer" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Instellingen" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adresboeken" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Sluiten" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Sneltoetsen" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navigatie" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Volgende contact in de lijst" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Vorige contact in de lijst" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Uitklappen / inklappen huidig adresboek" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Volgende adresboek" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Vorige adresboek" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Acties" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Vernieuw contact lijst" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Voeg nieuw contact toe" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Voeg nieuw adresboek toe" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Verwijder huidig contact" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Verwijder foto uit upload" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Verwijdere huidige foto" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Wijzig huidige foto" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Upload nieuwe foto" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Selecteer foto uit ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formateer aangepast, Korte naam, Volledige naam, Achteruit of Achteruit met komma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Wijzig naam gegevens" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisatie" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Verwijderen" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Roepnaam" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Voer roepnaam in" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Website" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.willekeurigesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Ga naar website" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Groepen" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Gebruik komma bij meerder groepen" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Wijzig groepen" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Voorkeur" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Geef een geldig email adres op." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Voer email adres in" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Mail naar adres" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Verwijder email adres" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Voer telefoonnummer in" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Verwijdere telefoonnummer" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Instant Messenger" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Verwijder IM" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Bekijk op een kaart" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Wijzig adres gegevens" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Voeg notitie toe" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Voeg veld toe" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefoon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Instant Messaging" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adres" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Notitie" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Download contact" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Verwijder contact" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Het tijdelijke plaatje is uit de cache verwijderd." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Wijzig adres" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Type" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postbus" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Adres" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Straat en nummer" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Uitgebreide" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Apartement nummer" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Stad" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regio" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Provincie" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postcode" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Postcode" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Land" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adresboek" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Hon. prefixes" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Mw" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Mw" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "M" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "M" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Mw" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "M" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Voornaam" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Extra namen" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Achternaam" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importeer een contacten bestand" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Kies een adresboek" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Maak een nieuw adresboek" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Naam van nieuw adresboek" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importeren van contacten" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Je hebt geen contacten in je adresboek" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Contactpersoon toevoegen" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Selecteer adresboeken" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Naam" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Beschrijving" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV synchroniseert de adressen" - -#: templates/settings.php:3 -msgid "more info" -msgstr "meer informatie" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Standaardadres" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "IOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Laat CardDav link zien" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Laat alleen lezen VCF link zien" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Deel" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Download" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Bewerken" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nieuw Adresboek" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Naam" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Beschrijving" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Opslaan" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Anuleren" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Meer..." diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 1f7c606ba22ebaa182c1717b68c66116805ac6c5..b4220820df5dffc101a66e8ebc51b67b18f5e96c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" -"PO-Revision-Date: 2012-10-12 20:18+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -154,7 +154,8 @@ msgstr "Deel met link" msgid "Password protect" msgstr "Passeerwoord beveiliging" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Wachtwoord" @@ -246,8 +247,8 @@ msgstr "Gevraagd" msgid "Login failed!" msgstr "Login mislukt!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Gebruikersnaam" @@ -307,48 +308,73 @@ msgstr "Wijzigen categorieën" msgid "Add" msgstr "Toevoegen" +#: 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 "Maak een <strong>beheerdersaccount</strong> aan" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configureer de databank" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Gebruiker databank" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Wachtwoord databank" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Naam databank" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Database server" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Installatie afronden" @@ -360,15 +386,29 @@ msgstr "webdiensten die je beheerst" msgid "Log out" msgstr "Afmelden" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Meld je aan" @@ -383,3 +423,17 @@ msgstr "vorige" #: templates/part.pagenavi.php:20 msgid "next" msgstr "volgende" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index da97c5575eac0b6d647c8db49c411d096b203b76..cae768deb5d8084c1b0859630db71ed5c424fc17 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 08:51+0000\n" +"Last-Translator: Richard Bos <radoeka@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,39 +72,39 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" msgstr "bestaat al" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "vervang" -#: js/filelist.js:190 +#: js/filelist.js:192 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" msgstr "vervangen" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:241 +#: js/filelist.js:243 msgid "with" msgstr "door" -#: js/filelist.js:273 +#: js/filelist.js:275 msgid "unshared" msgstr "niet gedeeld" -#: js/filelist.js:275 +#: js/filelist.js:277 msgid "deleted" msgstr "verwijderd" @@ -112,114 +112,114 @@ msgstr "verwijderd" msgid "generating ZIP-file, it may take some time." msgstr "aanmaken ZIP-file, dit kan enige tijd duren." -#: js/files.js:208 +#: js/files.js:214 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:208 +#: js/files.js:214 msgid "Upload Error" msgstr "Upload Fout" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "Wachten" -#: js/files.js:256 +#: js/files.js:262 msgid "1 file uploading" -msgstr "" +msgstr "1 bestand wordt ge-upload" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" -msgstr "" +msgstr "Bestanden aan het uploaden" -#: js/files.js:322 js/files.js:355 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:424 +#: js/files.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestands upload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:494 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." msgstr "Ongeldige naam, '/' is niet toegestaan." -#: js/files.js:667 +#: js/files.js:681 msgid "files scanned" msgstr "Gescande bestanden" -#: js/files.js:675 +#: js/files.js:689 msgid "error while scanning" msgstr "Fout tijdens het scannen" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "Naam" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:777 +#: js/files.js:791 msgid "folder" msgstr "map" -#: js/files.js:779 +#: js/files.js:793 msgid "folders" msgstr "mappen" -#: js/files.js:787 +#: js/files.js:801 msgid "file" msgstr "bestand" -#: js/files.js:789 +#: js/files.js:803 msgid "files" msgstr "bestanden" -#: js/files.js:833 +#: js/files.js:847 msgid "seconds ago" -msgstr "" +msgstr "seconden geleden" -#: js/files.js:834 +#: js/files.js:848 msgid "minute ago" -msgstr "" +msgstr "minuut geleden" -#: js/files.js:835 +#: js/files.js:849 msgid "minutes ago" -msgstr "" +msgstr "minuten geleden" -#: js/files.js:838 +#: js/files.js:852 msgid "today" -msgstr "" +msgstr "vandaag" -#: js/files.js:839 +#: js/files.js:853 msgid "yesterday" -msgstr "" +msgstr "gisteren" -#: js/files.js:840 +#: js/files.js:854 msgid "days ago" -msgstr "" +msgstr "dagen geleden" -#: js/files.js:841 +#: js/files.js:855 msgid "last month" -msgstr "" +msgstr "vorige maand" -#: js/files.js:843 +#: js/files.js:857 msgid "months ago" -msgstr "" +msgstr "maanden geleden" -#: js/files.js:844 +#: js/files.js:858 msgid "last year" -msgstr "" +msgstr "vorig jaar" -#: js/files.js:845 +#: js/files.js:859 msgid "years ago" -msgstr "" +msgstr "jaar geleden" #: templates/admin.php:5 msgid "File handling" diff --git a/l10n/nl/files_odfviewer.po b/l10n/nl/files_odfviewer.po deleted file mode 100644 index 5825a94a3fd117f4fca743dc5b373d8ced2dfbe0..0000000000000000000000000000000000000000 --- a/l10n/nl/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/nl/files_pdfviewer.po b/l10n/nl/files_pdfviewer.po deleted file mode 100644 index ff6e8c5e201202271f5cefd9392a412a5c276739..0000000000000000000000000000000000000000 --- a/l10n/nl/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/nl/files_texteditor.po b/l10n/nl/files_texteditor.po deleted file mode 100644 index c73a062cdbb5d9f7c47a2aed6d5fced61b75dcca..0000000000000000000000000000000000000000 --- a/l10n/nl/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/nl/gallery.po b/l10n/nl/gallery.po deleted file mode 100644 index 4297c4c4792418baf75d41966f302fb3151dacaf..0000000000000000000000000000000000000000 --- a/l10n/nl/gallery.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Erik Bent <hj.bent.60@gmail.com>, 2012. -# <jos@gelauff.net>, 2012. -# Richard Bos <radoeka@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 16:54+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:42 -msgid "Pictures" -msgstr "Plaatjes" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Deel gallerie" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Fout:" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Interne fout" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Diashow" diff --git a/l10n/nl/impress.po b/l10n/nl/impress.po deleted file mode 100644 index 2232e105985522cff37fa460602525030d2f47c8..0000000000000000000000000000000000000000 --- a/l10n/nl/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index cd2b08ab96298cbf382bf6d68cda57191d62bb60..421ed25800fad4ad82b36a54af99922bbbfa7043 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-13 02:05+0200\n" -"PO-Revision-Date: 2012-10-12 20:43+0000\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 09:09+0000\n" "Last-Translator: Richard Bos <radoeka@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -40,7 +40,7 @@ msgstr "Apps" #: app.php:311 msgid "Admin" -msgstr "Administrator" +msgstr "Beheerder" #: files.php:328 msgid "ZIP download is turned off." diff --git a/l10n/nl/media.po b/l10n/nl/media.po deleted file mode 100644 index f06251189b0e868cd1b60f8c05a2668a2e166350..0000000000000000000000000000000000000000 --- a/l10n/nl/media.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <bart.formosus@gmail.com>, 2011. -# <icewind1991@gmail.com>, 2011. -# <koen@vervloesem.eu>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Muziek" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Afspelen" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pauzeer" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Vorige" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Volgende" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Dempen" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Dempen uit" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Collectie opnieuw scannen" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artiest" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titel" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 0090a534ed6e9202fbe121fee5b17780d9de2a0c..3decc2999c2afd52f7777c59e7502587c8ea08bb 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-13 02:05+0200\n" -"PO-Revision-Date: 2012-10-12 19:36+0000\n" +"POT-Creation-Date: 2012-10-14 02:05+0200\n" +"PO-Revision-Date: 2012-10-13 09:09+0000\n" "Last-Translator: Richard Bos <radoeka@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -97,7 +97,7 @@ msgstr "Inschakelen" msgid "Saving..." msgstr "Aan het bewaren....." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "Nederlands" @@ -319,7 +319,7 @@ msgstr "Andere" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "Groep Administrator" +msgstr "Groep beheerder" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/nl/tasks.po b/l10n/nl/tasks.po deleted file mode 100644 index f413e75158dfafae832789d42e1adb7c3f23d861..0000000000000000000000000000000000000000 --- a/l10n/nl/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/nl/user_migrate.po b/l10n/nl/user_migrate.po deleted file mode 100644 index cf6e2f0cd31c06ed3f5ec8341356481c067a8e38..0000000000000000000000000000000000000000 --- a/l10n/nl/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/nl/user_openid.po b/l10n/nl/user_openid.po deleted file mode 100644 index 4b7c8f7370fa91b9f6b7577f65c60f187635a4f8..0000000000000000000000000000000000000000 --- a/l10n/nl/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Richard Bos <radoeka@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 19:20+0000\n" -"Last-Translator: Richard Bos <radoeka@gmail.com>\n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Dit is een OpenID server. Voor meer informatie, zie" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identiteit: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Realm: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Gebruiker: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Login" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Fout: <b>Geen gebruiker geselecteerd" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "u kan met dit adres bij andere sites authenticeren" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Geautoriseerde OpenID provider" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Uw adres bij Wordpress, Identi.ca, …" diff --git a/l10n/nn_NO/admin_dependencies_chk.po b/l10n/nn_NO/admin_dependencies_chk.po deleted file mode 100644 index e15c7820ec8fe0b4f756434c033735e4d15d617b..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/nn_NO/admin_migrate.po b/l10n/nn_NO/admin_migrate.po deleted file mode 100644 index 5509000343735faa659e81ec90bdd28f347dcccf..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/nn_NO/bookmarks.po b/l10n/nn_NO/bookmarks.po deleted file mode 100644 index 0eb3cfe7ed46048e31f7ab0e54a44f5bd2cce57a..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/nn_NO/calendar.po b/l10n/nn_NO/calendar.po deleted file mode 100644 index 97f56855aecef4017c1895c9a353c3a829a34013..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <p.ixiemotion@gmail.com>, 2011. -# <post@olealx.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Feil kalender" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Ny tidssone:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Endra tidssone" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Ugyldig førespurnad" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Bursdag" - -#: lib/app.php:122 -msgid "Business" -msgstr "Forretning" - -#: lib/app.php:123 -msgid "Call" -msgstr "Telefonsamtale" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klientar" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Forsending" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Høgtid" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idear" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Reise" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubileum" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Møte" - -#: lib/app.php:131 -msgid "Other" -msgstr "Anna" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Personleg" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Prosjekt" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Spørsmål" - -#: lib/app.php:135 -msgid "Work" -msgstr "Arbeid" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Ny kalender" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Ikkje gjenta" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Kvar dag" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Kvar veke" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Kvar vekedag" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Annakvar veke" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Kvar månad" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Kvart år" - -#: lib/object.php:388 -msgid "never" -msgstr "aldri" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "av førekomstar" - -#: lib/object.php:390 -msgid "by date" -msgstr "av dato" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "av månadsdag" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "av vekedag" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Måndag" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Tysdag" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Onsdag" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Torsdag" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Fredag" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Laurdag" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Søndag" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "hendingas veke av månad" - -#: lib/object.php:428 -msgid "first" -msgstr "første" - -#: lib/object.php:429 -msgid "second" -msgstr "andre" - -#: lib/object.php:430 -msgid "third" -msgstr "tredje" - -#: lib/object.php:431 -msgid "fourth" -msgstr "fjerde" - -#: lib/object.php:432 -msgid "fifth" -msgstr "femte" - -#: lib/object.php:433 -msgid "last" -msgstr "siste" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januar" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februar" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Mars" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "April" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mai" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juni" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juli" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "August" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Desember" - -#: lib/object.php:488 -msgid "by events date" -msgstr "av hendingsdato" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "av årsdag(ar)" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "av vekenummer" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "av dag og månad" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Dato" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Heile dagen" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Manglande felt" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Tittel" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Frå dato" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Frå tid" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Til dato" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Til tid" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Hendinga endar før den startar" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Det oppstod ein databasefeil" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Veke" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Månad" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Liste" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "I dag" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav-lenkje" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Last ned" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Endra" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Slett" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Ny kalender" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Endra kalendarar" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Visingsnamn" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiv" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalenderfarge" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Lagra" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Lagra" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Avbryt" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Endra ein hending" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Eksporter" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Tittel på hendinga" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategori" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Heildagshending" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Frå" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Til" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Avanserte alternativ" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Stad" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Stad for hendinga" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Skildring" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Skildring av hendinga" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Gjenta" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avansert" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Vel vekedagar" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Vel dagar" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "og hendingane dag for år." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "og hendingane dag for månad." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Vel månedar" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Vel veker" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "og hendingane veke av året." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervall" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Ende" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "førekomstar" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Lag ny kalender" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importer ei kalenderfil" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Namn for ny kalender" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importer" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Steng dialog" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Opprett ei ny hending" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Tidssone" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24t" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12t" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/nn_NO/contacts.po b/l10n/nn_NO/contacts.po deleted file mode 100644 index aee7e8725621197d9c772efed9e745922b957778..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <p.ixiemotion@gmail.com>, 2011. -# <post@olealx.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Ein feil oppstod ved (de)aktivering av adressebok." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Eit problem oppstod ved å oppdatere adresseboka." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Det kom ei feilmelding då kontakta vart lagt til." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Kan ikkje leggja til tomt felt." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Minst eit av adressefelta må fyllast ut." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informasjonen om vCard-et er feil, ver venleg og last sida på nytt." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kotaktar" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Dette er ikkje di adressebok." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Fann ikkje kontakten." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Arbeid" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Heime" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Tekst" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Tale" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faks" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Personsøkjar" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Bursdag" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Legg til kontakt" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adressebøker" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisasjon" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Slett" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Føretrekt" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefonnummer" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Epost" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresse" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Last ned kontakt" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Slett kontakt" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Skriv" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postboks" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Utvida" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Stad" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Region/fylke" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postnummer" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Land" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adressebok" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Last ned" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Endra" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Ny adressebok" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Lagre" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Kanseller" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index d2c8eef0fb9a779937b9061009ec35b26630311d..36653dc6fb7c2bcc10f113f343fca4ddaf2d17d6 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -31,55 +31,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -107,8 +107,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -148,7 +148,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Passord" @@ -184,39 +185,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -240,12 +241,12 @@ msgstr "Førespurt" msgid "Login failed!" msgstr "Feil ved innlogging!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Brukarnamn" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Be om nullstilling" @@ -301,52 +302,77 @@ msgstr "" 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 "Lag ein <strong>admin-konto</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "vil bli nytta" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Fullfør oppsettet" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" @@ -354,15 +380,29 @@ msgstr "Vev tjenester under din kontroll" msgid "Log out" msgstr "Logg ut" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "hugs" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Logg inn" @@ -377,3 +417,17 @@ msgstr "førre" #: templates/part.pagenavi.php:20 msgid "next" msgstr "neste" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/nn_NO/files_odfviewer.po b/l10n/nn_NO/files_odfviewer.po deleted file mode 100644 index dfc0447df64d3a6d5335d4b9b9154d4b1ae3130a..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/nn_NO/files_pdfviewer.po b/l10n/nn_NO/files_pdfviewer.po deleted file mode 100644 index 4933207f3aba1a6d8d84e288c2b7e7d426167b15..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/nn_NO/files_texteditor.po b/l10n/nn_NO/files_texteditor.po deleted file mode 100644 index 1b89b35f6a89668b7bc6c01a2279c7b2fbc51563..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/nn_NO/gallery.po b/l10n/nn_NO/gallery.po deleted file mode 100644 index 3d4eedd0ef08366773522b9f454c420038af3859..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <erviker@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Søk på nytt" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Tilbake" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/nn_NO/impress.po b/l10n/nn_NO/impress.po deleted file mode 100644 index e14be1cd5ba085ca92ca25ccbd08a1f65d8cc5bb..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/nn_NO/media.po b/l10n/nn_NO/media.po deleted file mode 100644 index a5f4d0d1d3c52b1cfed0bfe486d8b1244e446181..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <p.ixiemotion@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.net/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musikk" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Spel" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pause" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Førre" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Neste" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Demp" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Skru på lyd" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Skann samlinga på nytt" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artist" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Tittel" diff --git a/l10n/nn_NO/tasks.po b/l10n/nn_NO/tasks.po deleted file mode 100644 index 9ebb58b030c9ee66508cc87cad266f4966721fc6..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/nn_NO/user_migrate.po b/l10n/nn_NO/user_migrate.po deleted file mode 100644 index 40d6c0dac7ad6d5a8df8be9b62dd654a406b5423..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/nn_NO/user_openid.po b/l10n/nn_NO/user_openid.po deleted file mode 100644 index eb58b25dcb4e64d43cc02e258003b9e78af68c3e..0000000000000000000000000000000000000000 --- a/l10n/nn_NO/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index f2a698077eabae37fd7a25a170fb5c9fdec571b2..2e89d694c3092072d5ed6e0c87f29bd102deba15 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-29 02:02+0200\n" -"PO-Revision-Date: 2012-09-28 22:00+0000\n" -"Last-Translator: tartafione <d.chateau@laposte.net>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,55 +30,55 @@ msgstr "Pas de categoria d'ajustar ?" msgid "This category already exists: " msgstr "La categoria exista ja :" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configuracion" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Genièr" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Febrièr" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Març" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Abril" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mai" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Junh" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Julhet" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Agost" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Septembre" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Octobre" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Novembre" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Decembre" @@ -106,8 +106,8 @@ msgstr "D'accòrdi" msgid "No categories selected for deletion." msgstr "Pas de categorias seleccionadas per escafar." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Error" @@ -147,7 +147,8 @@ msgstr "Parteja amb lo ligam" msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Senhal" @@ -183,39 +184,39 @@ msgstr "amb" msgid "Unshare" msgstr "Non parteje" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "crea" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "met a jorn" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "escafa" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "parteja" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Error setting expiration date" @@ -239,12 +240,12 @@ msgstr "Requesit" msgid "Login failed!" msgstr "Fracàs de login" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nom d'usancièr" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Tornar botar requesit" @@ -300,52 +301,77 @@ msgstr "Edita categorias" msgid "Add" msgstr "Ajusta" +#: 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 "Crea un <strong>compte admin</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Configuracion acabada" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "Services web jos ton contraròtle" @@ -353,15 +379,29 @@ msgstr "Services web jos ton contraròtle" msgid "Log out" msgstr "Sortida" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "bremba-te" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Dintrada" @@ -376,3 +416,17 @@ msgstr "dariièr" #: templates/part.pagenavi.php:20 msgid "next" msgstr "venent" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/pl/admin_dependencies_chk.po b/l10n/pl/admin_dependencies_chk.po deleted file mode 100644 index 952d2fda7b41d7284d428329cd3a7076d4c616cf..0000000000000000000000000000000000000000 --- a/l10n/pl/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Cyryl Sochacki <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 09:01+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Moduł php-json jest wymagane przez wiele aplikacji do wewnętrznej łączności" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Modude php-curl jest wymagany do pobrania tytułu strony podczas dodawania zakładki" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Moduł php-gd jest wymagany do tworzenia miniatury obrazów" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Moduł php-ldap jest wymagany aby połączyć się z serwerem ldap" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Moduł php-zip jest wymagany aby pobrać wiele plików na raz" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Moduł php-mb_multibyte jest wymagany do poprawnego zarządzania kodowaniem." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Moduł php-ctype jest wymagany do sprawdzania poprawności danych." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Moduł php-xml jest wymagany do udostępniania plików przy użyciu protokołu webdav." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "Dyrektywy allow_url_fopen użytkownika php.ini powinna być ustawiona na 1 do pobierania bazy wiedzy z serwerów OCS" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Moduł php-pdo jest wymagany do przechowywania danych owncloud w bazie danych." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Stan zależności" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Używane przez:" diff --git a/l10n/pl/admin_migrate.po b/l10n/pl/admin_migrate.po deleted file mode 100644 index 096d746c63f51fab9e48a72525265bc8a2f609b9..0000000000000000000000000000000000000000 --- a/l10n/pl/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Cyryl Sochacki <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 12:31+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Eksportuj instancję ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Spowoduje to utworzenie pliku skompresowanego, który zawiera dane tej instancji ownCloud.⏎ proszę wybrać typ eksportu:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Eksport" diff --git a/l10n/pl/bookmarks.po b/l10n/pl/bookmarks.po deleted file mode 100644 index 4eee7979454c6559bc10f7bd103daeab56a242ed..0000000000000000000000000000000000000000 --- a/l10n/pl/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/pl/calendar.po b/l10n/pl/calendar.po deleted file mode 100644 index 8039d555b5804cd1ebb9b12fa8a3f24c3de5e7d8..0000000000000000000000000000000000000000 --- a/l10n/pl/calendar.po +++ /dev/null @@ -1,816 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Cyryl Sochacki <>, 2012. -# Marcin Małecki <gerber@tkdami.net>, 2011, 2012. -# Piotr Sokół <psokol@jabster.pl>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Brak kalendarzy" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Brak wydzarzeń" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Nieprawidłowy kalendarz" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Import nieudany" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "zdarzenie zostało zapisane w twoim kalendarzu" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nowa strefa czasowa:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Zmieniono strefę czasową" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Nieprawidłowe żądanie" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalendarz" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM rrrr" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, rrrr" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Urodziny" - -#: lib/app.php:122 -msgid "Business" -msgstr "Interesy" - -#: lib/app.php:123 -msgid "Call" -msgstr "Rozmowy" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klienci" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Dostawcy" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Święta" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Pomysły" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Podróże" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubileusze" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Spotkania" - -#: lib/app.php:131 -msgid "Other" -msgstr "Inne" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Osobiste" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekty" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Pytania" - -#: lib/app.php:135 -msgid "Work" -msgstr "Zawodowe" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "przez" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "nienazwany" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nowy kalendarz" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Brak" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Codziennie" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Tygodniowo" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Każdego dnia tygodnia" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Dwa razy w tygodniu" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Miesięcznie" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Rocznie" - -#: lib/object.php:388 -msgid "never" -msgstr "nigdy" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "przez wydarzenia" - -#: lib/object.php:390 -msgid "by date" -msgstr "po dacie" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "miesięcznie" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "tygodniowo" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Poniedziałek" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Wtorek" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Środa" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Czwartek" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Piątek" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sobota" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Niedziela" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "wydarzenia miesiąca" - -#: lib/object.php:428 -msgid "first" -msgstr "pierwszy" - -#: lib/object.php:429 -msgid "second" -msgstr "drugi" - -#: lib/object.php:430 -msgid "third" -msgstr "trzeci" - -#: lib/object.php:431 -msgid "fourth" -msgstr "czwarty" - -#: lib/object.php:432 -msgid "fifth" -msgstr "piąty" - -#: lib/object.php:433 -msgid "last" -msgstr "ostatni" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Styczeń" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Luty" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Marzec" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Kwiecień" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maj" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Czerwiec" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Lipiec" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Sierpień" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Wrzesień" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Październik" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Listopad" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Grudzień" - -#: lib/object.php:488 -msgid "by events date" -msgstr "po datach wydarzeń" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "po dniach roku" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "po tygodniach" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "przez dzień i miesiąc" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "N." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Pn." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Wt." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Śr." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Cz." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Pt." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "S." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Sty." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Lut." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Kwi." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Maj." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Cze." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Lip." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Sie." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Wrz." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Paź." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Lis." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Gru." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Cały dzień" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Brakujące pola" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Nazwa" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Od daty" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Od czasu" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Do daty" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Do czasu" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Wydarzenie kończy się przed rozpoczęciem" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Awaria bazy danych" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Tydzień" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Miesiąc" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Dzisiaj" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Twoje kalendarze" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Wyświetla odnośnik CalDAV" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Współdzielone kalendarze" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Brak współdzielonych kalendarzy" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Współdziel kalendarz" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Pobiera kalendarz" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Edytuje kalendarz" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Usuwa kalendarz" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "współdzielisz z" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nowy kalendarz" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Edytowanie kalendarza" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Wyświetlana nazwa" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktywny" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kolor" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Zapisz" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Prześlij" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Anuluj" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Edytowanie wydarzenia" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Wyeksportuj" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informacja o wydarzeniach" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Powtarzanie" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Uczestnicy" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Współdziel" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Nazwa wydarzenia" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategoria" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Oddziel kategorie przecinkami" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Edytuj kategorie" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Wydarzenie całodniowe" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Od" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Do" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Opcje zaawansowane" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Lokalizacja" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Lokalizacja wydarzenia" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Opis" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Opis wydarzenia" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Powtarzanie" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Zaawansowane" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Wybierz dni powszechne" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Wybierz dni" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "oraz wydarzenia roku" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "oraz wydarzenia miesiąca" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Wybierz miesiące" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Wybierz tygodnie" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "oraz wydarzenia roku." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Interwał" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Koniec" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "wystąpienia" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "stwórz nowy kalendarz" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Zaimportuj plik kalendarza" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Proszę wybierz kalendarz" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nazwa kalendarza" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Import" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Zamknij okno" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Tworzenie nowego wydarzenia" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Zobacz wydarzenie" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "nie zaznaczono kategorii" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "z" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "w" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Strefa czasowa" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "więcej informacji" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Odczytać tylko linki iCalendar" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Użytkownicy" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "wybierz użytkowników" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Edytowalne" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupy" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "wybierz grupy" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "uczyń publicznym" diff --git a/l10n/pl/contacts.po b/l10n/pl/contacts.po deleted file mode 100644 index c0d1d34b6924722bc4b96034493a1f9ed2e47b5e..0000000000000000000000000000000000000000 --- a/l10n/pl/contacts.po +++ /dev/null @@ -1,957 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Bartek <bart.p.pl@gmail.com>, 2012. -# Cyryl Sochacki <>, 2012. -# <czarnystokrotek@mailoo.org>, 2012. -# Marcin Małecki <gerber@tkdami.net>, 2011, 2012. -# Piotr Sokół <psokol@jabster.pl>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Błąd (de)aktywowania książki adresowej." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id nie ustawione." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Nie można zaktualizować książki adresowej z pustą nazwą." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Błąd uaktualniania książki adresowej." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Brak opatrzonego ID " - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Błąd ustawień sumy kontrolnej" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Nie zaznaczono kategorii do usunięcia" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Nie znaleziono książek adresowych" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Nie znaleziono kontaktów." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Wystąpił błąd podczas dodawania kontaktu." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "nazwa elementu nie jest ustawiona." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Nie można parsować kontaktu:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Nie można dodać pustego elementu." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Należy wypełnić przynajmniej jedno pole adresu." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Próba dodania z duplikowanej właściwości:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informacje o vCard są nieprawidłowe. Proszę odświeżyć stronę." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Brak ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Wystąpił błąd podczas przetwarzania VCard ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "checksum-a nie ustawiona" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informacje na temat vCard są niepoprawne. Proszę przeładuj stronę:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Gdyby coś poszło FUBAR." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "ID kontaktu nie został utworzony." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Błąd odczytu zdjęcia kontaktu." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Wystąpił błąd podczas zapisywania pliku tymczasowego." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Wczytywane zdjęcie nie jest poprawne." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Brak kontaktu id." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Ścieżka do zdjęcia nie została podana." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Plik nie istnieje:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Błąd ładowania obrazu." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Błąd pobrania kontaktu." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Błąd uzyskiwania właściwości ZDJĘCIA." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Błąd zapisu kontaktu." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Błąd zmiany rozmiaru obrazu" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Błąd przycinania obrazu" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Błąd utworzenia obrazu tymczasowego" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Błąd znajdowanie obrazu: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Wystąpił błąd podczas wysyłania kontaktów do magazynu." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Nie było błędów, plik wyczytano poprawnie." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Załadowany plik przekracza wielkość upload_max_filesize w php.ini " - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Wczytywany plik przekracza wielkość MAX_FILE_SIZE, która została określona w formularzu HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Załadowany plik tylko częściowo został wysłany." - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Plik nie został załadowany" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Brak folderu tymczasowego" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Nie można zapisać obrazu tymczasowego: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Nie można wczytać obrazu tymczasowego: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Plik nie został załadowany. Nieznany błąd" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontakty" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Niestety, ta funkcja nie została jeszcze zaimplementowana" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Nie wdrożono" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Nie można pobrać prawidłowego adresu." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Błąd" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Ta właściwość nie może być pusta." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Nie można serializować elementów." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "\"deleteProperty' wywołana bez argumentu typu. Proszę raportuj na bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Zmień nazwę" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Żadne pliki nie zostały zaznaczone do wysłania." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Plik, który próbujesz wysłać przekracza maksymalny rozmiar pliku przekazywania na tym serwerze." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Błąd wczytywania zdjęcia profilu." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Wybierz typ" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Niektóre kontakty są zaznaczone do usunięcia, ale nie są usunięte jeszcze. Proszę czekać na ich usunięcie." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Czy chcesz scalić te książki adresowe?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Wynik: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " importowane, " - -#: js/loader.js:49 -msgid " failed." -msgstr " nie powiodło się." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Nazwa nie może być pusta." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Nie znaleziono książki adresowej:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "To nie jest Twoja książka adresowa." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Nie można odnaleźć kontaktu." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GG" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Praca" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Dom" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Inne" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Komórka" - -#: lib/app.php:203 -msgid "Text" -msgstr "Połączenie tekstowe" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Połączenie głosowe" - -#: lib/app.php:205 -msgid "Message" -msgstr "Wiadomość" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faks" - -#: lib/app.php:207 -msgid "Video" -msgstr "Połączenie wideo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Urodziny" - -#: lib/app.php:253 -msgid "Business" -msgstr "Biznesowe" - -#: lib/app.php:254 -msgid "Call" -msgstr "Wywołanie" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Klienci" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Doręczanie" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Święta" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Pomysły" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Podróż" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubileusz" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Spotkanie" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Osobiste" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projekty" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Pytania" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name} Urodzony" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Dodaj kontakt" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Import" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Ustawienia" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Książki adresowe" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Zamknij" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Skróty klawiatury" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Nawigacja" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Następny kontakt na liście" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Poprzedni kontakt na liście" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Rozwiń/Zwiń bieżącą książkę adresową" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Następna książka adresowa" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Poprzednia książka adresowa" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Akcje" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Odśwież listę kontaktów" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Dodaj nowy kontakt" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Dodaj nowa książkę adresową" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Usuń obecny kontakt" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Upuść fotografię aby załadować" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Usuń aktualne zdjęcie" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Edytuj aktualne zdjęcie" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Wczytaj nowe zdjęcie" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Wybierz zdjęcie z ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format niestandardowy, krótkie nazwy, imię i nazwisko, Odwracać lub Odwrócić z przecinkiem" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Edytuj szczegóły nazwy" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizacja" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Usuwa książkę adresową" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Nazwa" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Wpisz nazwę" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Strona www" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.jakasstrona.pl" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Idż do strony www" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-rrrr" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupy" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Oddziel grupy przecinkami" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Edytuj grupy" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferowane" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Określ prawidłowy adres e-mail." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Wpisz adres email" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Mail na adres" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Usuń adres mailowy" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Wpisz numer telefonu" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Usuń numer telefonu" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Zobacz na mapie" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Edytuj szczegóły adresu" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Dodaj notatkę tutaj." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Dodaj pole" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adres" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Uwaga" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Pobiera kontakt" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Usuwa kontakt" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Tymczasowy obraz został usunięty z pamięci podręcznej." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Edytuj adres" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Typ" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Skrzynka pocztowa" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Ulica" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Ulica i numer" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Rozszerzony" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Numer lokalu" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Miasto" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Region" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Np. stanu lub prowincji" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Kod pocztowy" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Kod pocztowy" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Kraj" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Książka adresowa" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Prefiksy Hon." - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Panna" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Ms" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Pan" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Pani" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Podaj imię" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Dodatkowe nazwy" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Nazwa rodziny" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Sufiksy Hon." - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importuj plik z kontaktami" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Proszę wybrać książkę adresową" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "utwórz nową książkę adresową" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nazwa nowej książki adresowej" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "importuj kontakty" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Nie masz żadnych kontaktów w swojej książce adresowej." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Dodaj kontakt" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Wybierz książki adresowe" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Wpisz nazwę" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Wprowadź opis" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "adres do synchronizacji CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "więcej informacji" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Pierwszy adres" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Pokaż link CardDAV" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Pokaż tylko do odczytu łącze VCF" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Udostępnij" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Pobiera książkę adresową" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Edytuje książkę adresową" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nowa książka adresowa" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nazwa" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Opis" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Zapisz" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Anuluj" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Więcej..." diff --git a/l10n/pl/core.po b/l10n/pl/core.po index de4980565c01f011c6df2722a17dcf053037b80c..7e47de56d83d08717548c2ba786752f42c2cedab 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-06 02:03+0200\n" -"PO-Revision-Date: 2012-10-05 21:17+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,55 +37,55 @@ msgstr "Brak kategorii" msgid "This category already exists: " msgstr "Ta kategoria już istnieje" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Styczeń" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Luty" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Marzec" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Kwiecień" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Maj" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Czerwiec" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Lipiec" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Sierpień" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Wrzesień" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Październik" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Listopad" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Grudzień" @@ -113,8 +113,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nie ma kategorii zaznaczonych do usunięcia." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 -#: js/share.js:506 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Błąd" @@ -154,7 +154,8 @@ msgstr "Współdziel z link" msgid "Password protect" msgstr "Zabezpieczone hasłem" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Hasło" @@ -214,15 +215,15 @@ msgstr "usuń" msgid "share" msgstr "współdziel" -#: js/share.js:322 js/share.js:481 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:494 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Błąd niszczenie daty wygaśnięcia" -#: js/share.js:506 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" @@ -246,8 +247,8 @@ msgstr "Żądane" msgid "Login failed!" msgstr "Nie udało się zalogować!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nazwa użytkownika" @@ -307,48 +308,73 @@ msgstr "Edytuj kategorię" msgid "Add" msgstr "Dodaj" +#: 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 "Tworzenie <strong>konta administratora</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Zaawansowane" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Katalog danych" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfiguracja bazy danych" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "zostanie użyte" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Zakończ konfigurowanie" @@ -360,15 +386,29 @@ msgstr "usługi internetowe pod kontrolą" msgid "Log out" msgstr "Wylogowuje użytkownika" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "Zapamiętanie" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Zaloguj" @@ -383,3 +423,17 @@ msgstr "wstecz" #: templates/part.pagenavi.php:20 msgid "next" msgstr "naprzód" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/pl/files_odfviewer.po b/l10n/pl/files_odfviewer.po deleted file mode 100644 index 0c090a229ff8d8649c64a51c53f9c36c6fc6c31f..0000000000000000000000000000000000000000 --- a/l10n/pl/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/pl/files_pdfviewer.po b/l10n/pl/files_pdfviewer.po deleted file mode 100644 index 00b45cf929595e87e45de87a08dfb62499237b5c..0000000000000000000000000000000000000000 --- a/l10n/pl/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/pl/files_texteditor.po b/l10n/pl/files_texteditor.po deleted file mode 100644 index 039282380a63385c9c543ad1908d2e317dac0508..0000000000000000000000000000000000000000 --- a/l10n/pl/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/pl/gallery.po b/l10n/pl/gallery.po deleted file mode 100644 index ff5aef8d74e233158b0e90174dbfe03bc3c09757..0000000000000000000000000000000000000000 --- a/l10n/pl/gallery.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Bartek <bart.p.pl@gmail.com>, 2012. -# Cyryl Sochacki <>, 2012. -# Marcin Małecki <gerber@tkdami.net>, 2012. -# Piotr Sokół <psokol@jabster.pl>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 10:41+0000\n" -"Last-Translator: Marcin Małecki <gerber@tkdami.net>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Zdjęcia" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Udostępnij galerię" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Błąd: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Błąd wewnętrzny" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Pokaz slajdów" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Wróć" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Usuń potwierdzenie" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Czy chcesz usunąć album" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Zmień nazwę albumu" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nowa nazwa albumu" diff --git a/l10n/pl/impress.po b/l10n/pl/impress.po deleted file mode 100644 index 1321f95ef5aa257d144ea3d3c19b0e6817ff4ed7..0000000000000000000000000000000000000000 --- a/l10n/pl/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/pl/media.po b/l10n/pl/media.po deleted file mode 100644 index d8f1ee9e41035266843c7cf23354d8d940416b3d..0000000000000000000000000000000000000000 --- a/l10n/pl/media.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Marcin Małecki <gerber@tkdami.net>, 2011. -# <mosslar@gmail.com>, 2011. -# Piotr Sokół <psokol@jabster.pl>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Muzyka" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Odtwarzaj" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Wstrzymaj" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Poprzedni" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Następny" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Wycisz" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Wyłącz wyciszenie" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Przeszukaj kolekcję" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Wykonawca" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Tytuł" diff --git a/l10n/pl/tasks.po b/l10n/pl/tasks.po deleted file mode 100644 index 39026f902095149510bd1a6ba67c9df564b1e373..0000000000000000000000000000000000000000 --- a/l10n/pl/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Cyryl Sochacki <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 09:20+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Zła data/czas" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Zadania" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Brak kategorii" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Nieokreślona" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=najwyższy" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=średni" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=mało ważny " - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Podsumowanie puste" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Nieprawidłowy procent wykonania" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Nieprawidłowy priorytet" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Dodaj zadanie" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Kolejność - domyślna" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Kolejność - wg lista" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Kolejność - wg kompletności" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Kolejność - wg lokalizacja" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Kolejność - wg priorytetu" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Kolejność - wg nazywy" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Ładuję zadania" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Ważne" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Więcej" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Mniej" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Usuń" diff --git a/l10n/pl/user_migrate.po b/l10n/pl/user_migrate.po deleted file mode 100644 index 4b85ca025a20f63b5b24694dfa3cd2d879e574b8..0000000000000000000000000000000000000000 --- a/l10n/pl/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Cyryl Sochacki <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 09:09+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Eksport" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Coś poszło źle, podczas generowania pliku eksportu" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Wystąpił błąd" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Eksportuj konto użytkownika" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Spowoduje to utworzenie pliku skompresowanego, który zawiera konto ownCloud." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Importuj konto użytkownika" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "paczka Zip użytkownika ownCloud" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Importuj" diff --git a/l10n/pl/user_openid.po b/l10n/pl/user_openid.po deleted file mode 100644 index c199a51dcb2d4591ffdb4a73bd074f19c1423e79..0000000000000000000000000000000000000000 --- a/l10n/pl/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Cyryl Sochacki <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-21 02:03+0200\n" -"PO-Revision-Date: 2012-08-20 09:12+0000\n" -"Last-Translator: Cyryl Sochacki <>\n" -"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "To jest punkt końcowy serwera OpenID. Aby uzyskać więcej informacji zobacz" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Tożsamość: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Obszar: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Użytkownik: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Login" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Błąd:<b>Nie wybrano użytkownika" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "można uwierzytelniać do innych witryn z tego adresu" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Autoryzowani dostawcy OpenID" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Twój adres na Wordpress, Identi.ca, …" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 4b3dc86393d1681c8bde1d6c929dd2f05d961987..8cf58274487f2f48e4af959b6260e33027fa600e 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -29,55 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -182,39 +183,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -238,12 +239,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -299,52 +300,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/pt_BR/admin_dependencies_chk.po b/l10n/pt_BR/admin_dependencies_chk.po deleted file mode 100644 index 571f626c30422a14f91f59429fe08b96c9639060..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/pt_BR/admin_migrate.po b/l10n/pt_BR/admin_migrate.po deleted file mode 100644 index 57e754066c54b498140c800e4ad0afd0c4d1a582..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/pt_BR/bookmarks.po b/l10n/pt_BR/bookmarks.po deleted file mode 100644 index e574ace5f822de765ea3cc8e1dd3a095ab200460..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/pt_BR/calendar.po b/l10n/pt_BR/calendar.po deleted file mode 100644 index 5ffc4e305f958da025d647a5414e55654c437453..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/calendar.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Guilherme Maluf Balzana <guimalufb@gmail.com>, 2012. -# Sandro Venezuela <sandrovenezuela@gmail.com>, 2012. -# Thiago Vicente <thiagovice@gmail.com>, 2012. -# Van Der Fran <transifex@vanderland.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Nenhum calendário encontrado." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Nenhum evento encontrado." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Calendário incorreto" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Novo fuso horário" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Fuso horário alterado" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Pedido inválido" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendário" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Aniversário" - -#: lib/app.php:122 -msgid "Business" -msgstr "Negócio" - -#: lib/app.php:123 -msgid "Call" -msgstr "Chamada" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clientes" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Entrega" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Feriados" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idéias" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Jornada" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubileu" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Reunião" - -#: lib/app.php:131 -msgid "Other" -msgstr "Outros" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Pessoal" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projetos" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Perguntas" - -#: lib/app.php:135 -msgid "Work" -msgstr "Trabalho" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "sem nome" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Novo Calendário" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Não repetir" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Diariamente" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Semanal" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Cada dia da semana" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "De duas em duas semanas" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mensal" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Anual" - -#: lib/object.php:388 -msgid "never" -msgstr "nunca" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "por ocorrências" - -#: lib/object.php:390 -msgid "by date" -msgstr "por data" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "por dia do mês" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "por dia da semana" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Segunda-feira" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Terça-feira" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Quarta-feira" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Quinta-feira" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Sexta-feira" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sábado" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Domingo" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "semana do evento no mês" - -#: lib/object.php:428 -msgid "first" -msgstr "primeiro" - -#: lib/object.php:429 -msgid "second" -msgstr "segundo" - -#: lib/object.php:430 -msgid "third" -msgstr "terceiro" - -#: lib/object.php:431 -msgid "fourth" -msgstr "quarto" - -#: lib/object.php:432 -msgid "fifth" -msgstr "quinto" - -#: lib/object.php:433 -msgid "last" -msgstr "último" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Janeiro" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Fevereiro" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Março" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Abril" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maio" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Junho" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Julho" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Agosto" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Setembro" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Outubro" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Novembro" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Dezembro" - -#: lib/object.php:488 -msgid "by events date" -msgstr "eventos por data" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "por dia(s) do ano" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "por número(s) da semana" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "por dia e mês" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Todo o dia" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Campos incompletos" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Título" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Desde a Data" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Desde a Hora" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Até a Data" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Até a Hora" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "O evento termina antes de começar" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Houve uma falha de banco de dados" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Semana" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mês" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hoje" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Meus Calendários" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Link para CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Calendários Compartilhados" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Nenhum Calendário Compartilhado" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Compartilhar Calendário" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Baixar" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Editar" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Excluir" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "compartilhado com você por" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Novo calendário" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Editar calendário" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Mostrar Nome" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Ativo" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Cor do Calendário" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Salvar" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Submeter" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Cancelar" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Editar um evento" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportar" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Info de Evento" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Repetindo" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarme" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Participantes" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Compartilhar" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Título do evento" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categoria" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Separe as categorias por vírgulas" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Editar categorias" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Evento de dia inteiro" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "De" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Para" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Opções avançadas" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Local" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Local do evento" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Descrição" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Descrição do Evento" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Repetir" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avançado" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Selecionar dias da semana" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Selecionar dias" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "e o dia do evento no ano." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "e o dia do evento no mês." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Selecionar meses" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Selecionar semanas" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "e a semana do evento no ano." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervalo" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Final" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "ocorrências" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "criar um novo calendário" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importar um arquivo de calendário" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nome do novo calendário" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importar" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Fechar caixa de diálogo" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Criar um novo evento" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Visualizar evento" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nenhuma categoria selecionada" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "de" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "para" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Fuso horário" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Usuários" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "Selecione usuários" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Editável" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupos" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "Selecione grupos" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "Tornar público" diff --git a/l10n/pt_BR/contacts.po b/l10n/pt_BR/contacts.po deleted file mode 100644 index e4a7f97946bd2070e0b49fb7bc23cd49e6f646b3..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Guilherme Maluf Balzana <guimalufb@gmail.com>, 2012. -# Thiago Vicente <thiagovice@gmail.com>, 2012. -# Van Der Fran <transifex@vanderland.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Erro ao (des)ativar agenda." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID não definido." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Não é possível atualizar sua agenda com um nome em branco." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Erro ao atualizar agenda." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Nenhum ID fornecido" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Erro ajustando checksum." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Nenhum categoria selecionada para remoção." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Nenhuma agenda de endereços encontrada." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Nenhum contato encontrado." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Ocorreu um erro ao adicionar o contato." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "nome do elemento não definido." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Não é possível adicionar propriedade vazia." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Pelo menos um dos campos de endereço tem que ser preenchido." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Tentando adiciona propriedade duplicada:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informações sobre vCard é incorreta. Por favor, recarregue a página." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Faltando ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Erro de identificação VCard para ID:" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "checksum não definido." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informação sobre vCard incorreto. Por favor, recarregue a página:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Something went FUBAR. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Nenhum ID do contato foi submetido." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Erro de leitura na foto do contato." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Erro ao salvar arquivo temporário." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Foto carregada não é válida." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "ID do contato está faltando." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Nenhum caminho para foto foi submetido." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Arquivo não existe:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Erro ao carregar imagem." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Erro ao obter propriedade de contato." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Erro ao obter propriedade da FOTO." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Erro ao salvar contato." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Erro ao modificar tamanho da imagem" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Erro ao recortar imagem" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Erro ao criar imagem temporária" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Erro ao localizar imagem:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Erro enviando contatos para armazenamento." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Arquivo enviado com sucesso" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "O arquivo enviado excede a diretiva upload_max_filesize em php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "O arquivo carregado excede o argumento MAX_FILE_SIZE especificado no formulário HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "O arquivo foi parcialmente carregado" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Nenhum arquivo carregado" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Diretório temporário não encontrado" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Não foi possível salvar a imagem temporária:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Não foi possível carregar a imagem temporária:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Nenhum arquivo foi transferido. Erro desconhecido" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Contatos" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Desculpe, esta funcionalidade não foi implementada ainda" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "não implementado" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Não foi possível obter um endereço válido." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Erro" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Esta propriedade não pode estar vazia." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Não foi possível serializar elementos." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "\"deleteProperty\" chamado sem argumento de tipo. Por favor, informe a bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Editar nome" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Nenhum arquivo selecionado para carregar." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "O arquivo que você está tentando carregar excede o tamanho máximo para este servidor." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Selecione o tipo" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultado:" - -#: js/loader.js:49 -msgid " imported, " -msgstr "importado," - -#: js/loader.js:49 -msgid " failed." -msgstr "falhou." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Esta não é a sua agenda de endereços." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Contato não pôde ser encontrado." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Trabalho" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Home" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Móvel" - -#: lib/app.php:203 -msgid "Text" -msgstr "Texto" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voz" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mensagem" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Vídeo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Aniversário" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Aniversário de {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contato" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Adicionar Contato" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importar" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Agendas de Endereço" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Fechar." - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Arraste a foto para ser carregada" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Deletar imagem atual" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Editar imagem atual" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Carregar nova foto" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Selecionar foto do OwnCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formato personalizado, Nome curto, Nome completo, Inverter ou Inverter com vírgula" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Editar detalhes do nome" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organização" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Excluir" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Apelido" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Digite o apelido" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-aaaa" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupos" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Separe grupos por virgula" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Editar grupos" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferido" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Por favor, especifique um email válido." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Digite um endereço de email" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Correio para endereço" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Remover endereço de email" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Digite um número de telefone" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Remover número de telefone" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Visualizar no mapa" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Editar detalhes de endereço" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Adicionar notas" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Adicionar campo" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefone" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Endereço" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Nota" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Baixar contato" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Apagar contato" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "A imagem temporária foi removida cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Editar endereço" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Digite" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Caixa Postal" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Estendido" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Cidade" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Região" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "CEP" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "País" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Agenda de Endereço" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Exmo. Prefixos " - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Senhorita" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Srta." - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Sr." - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Senhor" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Sra." - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Primeiro Nome" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Segundo Nome" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Sobrenome" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Exmo. Sufixos" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importar arquivos de contato." - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Por favor, selecione uma agenda de endereços" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Criar nova agenda de endereços" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nome da nova agenda de endereços" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importar contatos" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Voce não tem contatos em sua agenda de endereços." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Adicionar contatos" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Sincronizando endereços CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "leia mais" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Endereço primário(Kontact et al)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Baixar" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Editar" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nova agenda" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Salvar" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Cancelar" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 1089f64ba69987ff7e7b9640af84f937938fcd96..990a977673d31a924d63e864a3360d19e8277e53 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -5,6 +5,7 @@ # Translators: # <duda.nogueira@metasys.com.br>, 2011. # Guilherme Maluf Balzana <guimalufb@gmail.com>, 2012. +# <henrique@meira.net>, 2012. # <philippi.sedir@gmail.com>, 2012. # Thiago Vicente <thiagovice@gmail.com>, 2012. # Unforgiving Fallout <>, 2012. @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-07 02:03+0200\n" -"PO-Revision-Date: 2012-10-06 13:45+0000\n" -"Last-Translator: sedir <philippi.sedir@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,55 +36,55 @@ msgstr "Nenhuma categoria adicionada?" msgid "This category already exists: " msgstr "Essa categoria já existe" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurações" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Janeiro" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Fevereiro" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Março" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Abril" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Maio" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Junho" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Julho" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Agosto" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Setembro" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Outubro" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Novembro" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Dezembro" @@ -111,8 +112,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nenhuma categoria selecionada para deletar." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:494 -#: js/share.js:506 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Erro" @@ -152,7 +153,8 @@ msgstr "Compartilhar com link" msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Senha" @@ -212,15 +214,15 @@ msgstr "remover" msgid "share" msgstr "compartilhar" -#: js/share.js:322 js/share.js:481 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:494 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:506 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" @@ -244,8 +246,8 @@ msgstr "Solicitado" msgid "Login failed!" msgstr "Falha ao fazer o login!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Nome de Usuário" @@ -305,48 +307,73 @@ msgstr "Editar categorias" msgid "Add" msgstr "Adicionar" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Aviso de Segurança" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Nenhum gerador de número aleatório de segurança disponível. Habilite a extensão OpenSSL do PHP." + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Sem um gerador de número aleatório de segurança, um invasor pode ser capaz de prever os símbolos de redefinição de senhas e assumir sua conta." + +#: 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 "Criar uma <strong>conta</strong> de <strong>administrador</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "será usado" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Usuário de banco de dados" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Banco de dados do host" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Concluir configuração" @@ -358,15 +385,29 @@ msgstr "web services sob seu controle" msgid "Log out" msgstr "Sair" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Esqueçeu sua senha?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "lembrete" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Log in" @@ -381,3 +422,17 @@ msgstr "anterior" #: templates/part.pagenavi.php:20 msgid "next" msgstr "próximo" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/pt_BR/files_odfviewer.po b/l10n/pt_BR/files_odfviewer.po deleted file mode 100644 index 0fdf643ce92442c9f96602219b5b29b55c2c53a4..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/pt_BR/files_pdfviewer.po b/l10n/pt_BR/files_pdfviewer.po deleted file mode 100644 index 5d57e4d21e90d9dfd17abfa3cf0cbb46dec38feb..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/pt_BR/files_texteditor.po b/l10n/pt_BR/files_texteditor.po deleted file mode 100644 index f14b622e58e5bbdbc5bc53729ee39baec1591680..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/pt_BR/gallery.po b/l10n/pt_BR/gallery.po deleted file mode 100644 index 1c68432fb07912da3075db60f10a60fd40d4ad3b..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/gallery.po +++ /dev/null @@ -1,96 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Thiago Vicente <thiagovice@gmail.com>, 2012. -# Van Der Fran <transifex@vanderland.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.net/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Fotos" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Configuração" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Atualizar" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Parar" - -#: templates/index.php:18 -msgid "Share" -msgstr "Compartilhar" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Voltar" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Confirmar apagar" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Voçe dezeja remover o album" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Mudar nome do album" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nome do novo album" diff --git a/l10n/pt_BR/impress.po b/l10n/pt_BR/impress.po deleted file mode 100644 index d411662bd5ee0b3705ff2e2a591d91e04afd8ed4..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/pt_BR/media.po b/l10n/pt_BR/media.po deleted file mode 100644 index 779137491765a6f9d38683d3f601fda9465e0b33..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <duda.nogueira@metasys.com.br>, 2011. -# Van Der Fran <transifex@vanderland.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.net/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Música" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Tocar" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pausa" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Anterior" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Próximo" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Mudo" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Não Mudo" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Atualizar a Coleção" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artista" - -#: templates/music.php:38 -msgid "Album" -msgstr "Álbum" - -#: templates/music.php:39 -msgid "Title" -msgstr "Título" diff --git a/l10n/pt_BR/tasks.po b/l10n/pt_BR/tasks.po deleted file mode 100644 index 5e8358f8c6bda516089e9198c0ad9b46a96f9833..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/pt_BR/user_migrate.po b/l10n/pt_BR/user_migrate.po deleted file mode 100644 index bb939a947ab7855edd7faa11c7274bdfc9df6b78..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/pt_BR/user_openid.po b/l10n/pt_BR/user_openid.po deleted file mode 100644 index 5abf549de331715a7e6da38408eeec69b5a6f100..0000000000000000000000000000000000000000 --- a/l10n/pt_BR/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/pt_PT/admin_dependencies_chk.po b/l10n/pt_PT/admin_dependencies_chk.po deleted file mode 100644 index 33d13a5a5637adb6d91b652f714d5ffb2f054848..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/pt_PT/admin_migrate.po b/l10n/pt_PT/admin_migrate.po deleted file mode 100644 index 0daf518350a456681ede412e6466d9e12dd9d49a..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/pt_PT/bookmarks.po b/l10n/pt_PT/bookmarks.po deleted file mode 100644 index b4ba2758a3e2fb09940e8a8c5a2c795b561086d7..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/pt_PT/calendar.po b/l10n/pt_PT/calendar.po deleted file mode 100644 index b82792c41e040ca9bcd25712bccf72e290178fde..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/calendar.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <geral@ricardolameiro.pt>, 2012. -# <helder.meneses@gmail.com>, 2011. -# Helder Meneses <helder.meneses@gmail.com>, 2012. -# <rjgpp.1994@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 20:06+0000\n" -"Last-Translator: rlameiro <geral@ricardolameiro.pt>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Nem todos os calendários estão completamente pré-carregados" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Parece que tudo está completamente pré-carregado" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Nenhum calendário encontrado." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Nenhum evento encontrado." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Calendário errado" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "O ficheiro não continha nenhuns eventos ou então todos os eventos já estavam carregados no seu calendário" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "Os eventos foram guardados no novo calendário" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Falha na importação" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "Os eventos foram guardados no seu calendário" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nova zona horária" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Zona horária alterada" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Pedido inválido" - -#: appinfo/app.php:37 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendário" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM aaaa" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, aaaa" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Dia de anos" - -#: lib/app.php:122 -msgid "Business" -msgstr "Negócio" - -#: lib/app.php:123 -msgid "Call" -msgstr "Telefonar" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clientes" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Entregar" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Férias" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideias" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Jornada" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jublieu" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Encontro" - -#: lib/app.php:131 -msgid "Other" -msgstr "Outro" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Pessoal" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projetos" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Perguntas" - -#: lib/app.php:135 -msgid "Work" -msgstr "Trabalho" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "por" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "não definido" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Novo calendário" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Não repete" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Diário" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Semanal" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Todos os dias da semana" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Bi-semanal" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mensal" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Anual" - -#: lib/object.php:388 -msgid "never" -msgstr "nunca" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "por ocorrências" - -#: lib/object.php:390 -msgid "by date" -msgstr "por data" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "por dia do mês" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "por dia da semana" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Segunda" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Terça" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Quarta" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Quinta" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Sexta" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sábado" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Domingo" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "Eventos da semana do mês" - -#: lib/object.php:428 -msgid "first" -msgstr "primeiro" - -#: lib/object.php:429 -msgid "second" -msgstr "segundo" - -#: lib/object.php:430 -msgid "third" -msgstr "terçeiro" - -#: lib/object.php:431 -msgid "fourth" -msgstr "quarto" - -#: lib/object.php:432 -msgid "fifth" -msgstr "quinto" - -#: lib/object.php:433 -msgid "last" -msgstr "último" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Janeiro" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Fevereiro" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Março" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Abril" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maio" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Junho" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Julho" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Agosto" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Setembro" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Outubro" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Novembro" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Dezembro" - -#: lib/object.php:488 -msgid "by events date" -msgstr "por data de evento" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "por dia(s) do ano" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "por número(s) da semana" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "por dia e mês" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Dom." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Seg." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "ter." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Qua." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Qui." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Sex." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Sáb." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Fev," - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Abr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Mai." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Ago." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Set." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Out." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Dez." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Todo o dia" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Falta campos" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Título" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Da data" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Da hora" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Para data" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Para hora" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "O evento acaba antes de começar" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Houve uma falha de base de dados" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Semana" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mês" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hoje" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Configurações" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Os seus calendários" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Endereço CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Calendários partilhados" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Nenhum calendário partilhado" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Partilhar calendário" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Transferir" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Editar" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Apagar" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "Partilhado consigo por" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Novo calendário" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Editar calendário" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Nome de exibição" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Ativo" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Cor do calendário" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Guardar" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Submeter" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Cancelar" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Editar um evento" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportar" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informação do evento" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Repetição" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarme" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Participantes" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Partilhar" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Título do evento" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categoria" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Separe categorias por virgulas" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Editar categorias" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Evento de dia inteiro" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "De" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Para" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Opções avançadas" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Localização" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Localização do evento" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Descrição" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Descrição do evento" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Repetir" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avançado" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Seleciona os dias da semana" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Seleciona os dias" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "e o dia de eventos do ano." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "e o dia de eventos do mês." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Seleciona os meses" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Seleciona as semanas" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "e a semana de eventos do ano." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Intervalo" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Fim" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "ocorrências" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "criar novo calendário" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importar um ficheiro de calendário" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Escolha um calendário por favor" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Nome do novo calendário" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Escolha um nome disponível!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Já existe um Calendário com esse nome. Se mesmo assim continuar, esses calendários serão fundidos." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importar" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Fechar diálogo" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Criar novo evento" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Ver um evento" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nenhuma categoria seleccionada" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "de" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "em" - -#: templates/settings.php:10 -msgid "General" -msgstr "Geral" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Zona horária" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Actualizar automaticamente o fuso horário" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Formato da hora" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Começar semana em" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Memória de pré-carregamento" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Limpar a memória de pré carregamento para eventos recorrentes" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "Endereço(s) web" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Endereços de sincronização de calendários CalDAV" - -#: templates/settings.php:87 -msgid "more info" -msgstr "mais informação" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Endereço principal (contactos et al.)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Ligaç(ão/ões) só de leitura do iCalendar" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Utilizadores" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "Selecione utilizadores" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Editavel" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupos" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "Selecione grupos" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "Tornar público" diff --git a/l10n/pt_PT/contacts.po b/l10n/pt_PT/contacts.po deleted file mode 100644 index ee8c370515ad40589224bfb56cef7aa74e82c43a..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/contacts.po +++ /dev/null @@ -1,956 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <geral@ricardolameiro.pt>, 2012. -# <helder.meneses@gmail.com>, 2011. -# Helder Meneses <helder.meneses@gmail.com>, 2012. -# <rjgpp.1994@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Erro a (des)ativar o livro de endereços" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id não está definido" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Não é possivel actualizar o livro de endereços com o nome vazio." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Erro a atualizar o livro de endereços" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Nenhum ID inserido" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Erro a definir checksum." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Nenhuma categoria selecionada para eliminar." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Nenhum livro de endereços encontrado." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Nenhum contacto encontrado." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Erro ao adicionar contato" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "o nome do elemento não está definido." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Incapaz de processar contacto" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Não é possivel adicionar uma propriedade vazia" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Pelo menos um dos campos de endereço precisa de estar preenchido" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "A tentar adicionar propriedade duplicada: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Falta o parâmetro de mensagens instantâneas (IM)" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "Mensagens instantâneas desconhecida (IM)" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "A informação sobre o vCard está incorreta. Por favor refresque a página" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Falta ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Erro a analisar VCard para o ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "Checksum não está definido." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "A informação sobre o VCard está incorrecta. Por favor refresque a página: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Algo provocou um FUBAR. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Nenhum ID de contacto definido." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Erro a ler a foto do contacto." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Erro a guardar ficheiro temporário." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "A foto carregada não é valida." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Falta o ID do contacto." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Nenhum caminho da foto definido." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "O ficheiro não existe:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Erro a carregar a imagem." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Erro a obter o objecto dos contactos" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Erro a obter a propriedade Foto" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Erro a guardar o contacto." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Erro a redimensionar a imagem" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Erro a recorar a imagem" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Erro a criar a imagem temporária" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Erro enquanto pesquisava pela imagem: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Erro a carregar os contactos para o armazenamento." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Não ocorreu erros, o ficheiro foi submetido com sucesso" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "O tamanho do ficheiro carregado excede o parametro upload_max_filesize em php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Nenhum ficheiro foi submetido" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Está a faltar a pasta temporária" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Não foi possível guardar a imagem temporária: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Não é possível carregar a imagem temporária: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Contactos" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Desculpe, esta funcionalidade ainda não está implementada" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Não implementado" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Não foi possível obter um endereço válido." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Erro" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Esta propriedade não pode estar vazia." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Não foi possivel serializar os elementos" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' chamada sem argumento definido. Por favor report o problema em bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Editar nome" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Nenhum ficheiro seleccionado para enviar." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "O tamanho do ficheiro que está a tentar carregar ultrapassa o limite máximo definido para ficheiros no servidor." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Erro ao carregar imagem de perfil." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Seleccionar tipo" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Alguns contactos forma marcados para apagar, mas ainda não foram apagados. Por favor espere que ele sejam apagados." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Quer fundir estes Livros de endereços?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultado: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " importado, " - -#: js/loader.js:49 -msgid " failed." -msgstr " falhou." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Displayname não pode ser vazio" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Livro de endereços não encontrado." - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Esta não é a sua lista de contactos" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "O contacto não foi encontrado" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Emprego" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Casa" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Outro" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Telemovel" - -#: lib/app.php:203 -msgid "Text" -msgstr "Texto" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voz" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mensagem" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Vídeo" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Aniversário" - -#: lib/app.php:253 -msgid "Business" -msgstr "Empresa" - -#: lib/app.php:254 -msgid "Call" -msgstr "Telefonar" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Clientes" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Fornecedor" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Férias" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Ideias" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Viagem" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubileu" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Encontro" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Pessoal" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projectos" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Questões" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Aniversário de {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contacto" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Adicionar Contacto" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importar" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Configurações" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Livros de endereços" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Fechar" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Atalhos de teclado" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navegação" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Próximo contacto na lista" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Contacto anterior na lista" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Expandir/encolher o livro de endereços atual" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Próximo livro de endereços" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Livro de endereços anterior" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Ações" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Recarregar lista de contactos" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Adicionar novo contacto" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Adicionar novo Livro de endereços" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Apagar o contacto atual" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Arraste e solte fotos para carregar" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Eliminar a foto actual" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Editar a foto actual" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Carregar nova foto" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Selecionar uma foto da ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formate personalizado, Nome curto, Nome completo, Reverso ou Reverso com virgula" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Editar detalhes do nome" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organização" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Apagar" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Alcunha" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Introduza alcunha" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Página web" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Ir para página web" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-aaaa" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupos" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Separe os grupos usando virgulas" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Editar grupos" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferido" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Por favor indique um endereço de correio válido" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Introduza endereço de email" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Enviar correio para o endereço" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Eliminar o endereço de correio" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Insira o número de telefone" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Eliminar o número de telefone" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Mensageiro instantâneo" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Apagar mensageiro instantâneo (IM)" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Ver no mapa" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Editar os detalhes do endereço" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Insira notas aqui." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Adicionar campo" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefone" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Email" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Mensagens Instantâneas" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Morada" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Nota" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Transferir contacto" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Apagar contato" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "A imagem temporária foi retirada do cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Editar endereço" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tipo" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Apartado" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Endereço da Rua" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Rua e número" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Extendido" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Número de Apartamento, etc." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Cidade" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Região" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Por Ex. Estado ou província" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Código Postal" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Código Postal" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "País" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Livro de endereços" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Prefixos honoráveis" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Menina" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Sra" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Sr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sr" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Senhora" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Nome introduzido" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Nomes adicionais" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Nome de familia" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Sufixos Honoráveis" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "D.J." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "D.M." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "r." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importar um ficheiro de contactos" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Por favor seleccione o livro de endereços" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Criar um novo livro de endereços" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Nome do novo livro de endereços" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "A importar os contactos" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Não tem contactos no seu livro de endereços." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Adicionar contacto" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Selecionar Livros de contactos" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Introduzir nome" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Introduzir descrição" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV a sincronizar endereços" - -#: templates/settings.php:3 -msgid "more info" -msgstr "mais informação" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Endereço primario (Kontact et al)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Mostrar ligação CardDAV" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Mostrar ligações VCF só de leitura" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Partilhar" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Transferir" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Editar" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Novo livro de endereços" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Nome" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Descrição" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Guardar" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Cancelar" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Mais..." diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index c49019a3863ef5b6fdc55772e437a20d70de08f3..000d5c3ff384f4f47e38a3f79c79ed426a5a9c39 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.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-10-12 02:04+0200\n" -"PO-Revision-Date: 2012-10-11 10:31+0000\n" -"Last-Translator: Duarte Velez Grilo <duartegrilo@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,55 +33,55 @@ msgstr "Nenhuma categoria para adicionar?" msgid "This category already exists: " msgstr "Esta categoria já existe:" -#: js/js.js:229 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Definições" -#: js/js.js:661 +#: js/js.js:670 msgid "January" msgstr "Janeiro" -#: js/js.js:661 +#: js/js.js:670 msgid "February" msgstr "Fevereiro" -#: js/js.js:661 +#: js/js.js:670 msgid "March" msgstr "Março" -#: js/js.js:661 +#: js/js.js:670 msgid "April" msgstr "Abril" -#: js/js.js:661 +#: js/js.js:670 msgid "May" msgstr "Maio" -#: js/js.js:661 +#: js/js.js:670 msgid "June" msgstr "Junho" -#: js/js.js:662 +#: js/js.js:671 msgid "July" msgstr "Julho" -#: js/js.js:662 +#: js/js.js:671 msgid "August" msgstr "Agosto" -#: js/js.js:662 +#: js/js.js:671 msgid "September" msgstr "Setembro" -#: js/js.js:662 +#: js/js.js:671 msgid "October" msgstr "Outubro" -#: js/js.js:662 +#: js/js.js:671 msgid "November" msgstr "Novembro" -#: js/js.js:662 +#: js/js.js:671 msgid "December" msgstr "Dezembro" @@ -150,7 +150,8 @@ msgstr "Partilhar com link" msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Palavra chave" @@ -242,8 +243,8 @@ msgstr "Pedido" msgid "Login failed!" msgstr "Conexão falhado!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Utilizador" @@ -303,48 +304,73 @@ msgstr "Editar categorias" msgid "Add" msgstr "Adicionar" +#: 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 "Criar uma <strong>conta administrativa</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Host da base de dados" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Acabar instalação" @@ -356,15 +382,29 @@ msgstr "serviços web sob o seu controlo" msgid "Log out" msgstr "Sair" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Esqueceu a sua password?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "lembrar" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Entrar" @@ -379,3 +419,17 @@ msgstr "anterior" #: templates/part.pagenavi.php:20 msgid "next" msgstr "seguinte" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/pt_PT/files_odfviewer.po b/l10n/pt_PT/files_odfviewer.po deleted file mode 100644 index 01ea436b982b57b4197d2da0641b8a3847b1868a..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/pt_PT/files_pdfviewer.po b/l10n/pt_PT/files_pdfviewer.po deleted file mode 100644 index 67aaa183aba7b023114027677c16558551fb9e9e..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/pt_PT/files_texteditor.po b/l10n/pt_PT/files_texteditor.po deleted file mode 100644 index 1c3a291131cdb31e13a067017cc45eab0da6c361..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/pt_PT/gallery.po b/l10n/pt_PT/gallery.po deleted file mode 100644 index 91c5cb18537c61a96349763838da233c5ac10321..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/gallery.po +++ /dev/null @@ -1,42 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <geral@ricardolameiro.pt>, 2012. -# <helder.meneses@gmail.com>, 2012. -# Helder Meneses <helder.meneses@gmail.com>, 2012. -# <rjgpp.1994@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 19:50+0000\n" -"Last-Translator: rlameiro <geral@ricardolameiro.pt>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:42 -msgid "Pictures" -msgstr "Imagens" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Partilhar a galeria" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Erro: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Erro interno" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Slideshow" diff --git a/l10n/pt_PT/impress.po b/l10n/pt_PT/impress.po deleted file mode 100644 index a3d95463c925029e8d9a3f27438b6c511a2ad368..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/pt_PT/media.po b/l10n/pt_PT/media.po deleted file mode 100644 index ca255767029fdfa6c8324f3c830f05a6a3ed3e0a..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <rjgpp.1994@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Musica" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Reproduzir" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pausa" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Anterior" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Próximo" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Mudo" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Som" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Reverificar coleção" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artista" - -#: templates/music.php:38 -msgid "Album" -msgstr "Álbum" - -#: templates/music.php:39 -msgid "Title" -msgstr "Título" diff --git a/l10n/pt_PT/tasks.po b/l10n/pt_PT/tasks.po deleted file mode 100644 index 405b6d903ff372a11cdea9d66fe168b2cfedafc3..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index f9ac903822d97df8218e324975dfeeee56869dbd..86440d7324f51a43922b3fea5171e7e3fa9f0971 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-11 02:04+0200\n" -"PO-Revision-Date: 2012-10-10 21:26+0000\n" -"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" +"POT-Creation-Date: 2012-10-15 02:04+0200\n" +"PO-Revision-Date: 2012-10-14 01:19+0000\n" +"Last-Translator: Duarte Velez Grilo <duartegrilo@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,11 +26,11 @@ msgstr "Anfitrião" #: templates/settings.php:8 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://" #: templates/settings.php:9 msgid "Base DN" -msgstr "" +msgstr "DN base" #: templates/settings.php:9 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -38,7 +38,7 @@ msgstr "Pode especificar o ND Base para utilizadores e grupos no separador Avan #: templates/settings.php:10 msgid "User DN" -msgstr "" +msgstr "DN do utilizador" #: templates/settings.php:10 msgid "" @@ -53,7 +53,7 @@ msgstr "Palavra-passe" #: templates/settings.php:11 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Para acesso anónimo, deixe DN e a Palavra-passe vazios." #: templates/settings.php:12 msgid "User Login Filter" @@ -113,11 +113,11 @@ msgstr "" #: templates/settings.php:21 msgid "Use TLS" -msgstr "" +msgstr "Usar TLS" #: templates/settings.php:21 msgid "Do not use it for SSL connections, it will fail." -msgstr "" +msgstr "Não use para ligações SSL, irá falhar." #: templates/settings.php:22 msgid "Case insensitve LDAP server (Windows)" @@ -125,7 +125,7 @@ msgstr "" #: templates/settings.php:23 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Desligar a validação de certificado SSL." #: templates/settings.php:23 msgid "" @@ -165,7 +165,7 @@ msgstr "em segundos. Uma alteração esvazia a cache." msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD." #: templates/settings.php:32 msgid "Help" diff --git a/l10n/pt_PT/user_migrate.po b/l10n/pt_PT/user_migrate.po deleted file mode 100644 index dc1013582b8fe34a8a98e97ba76fdebe11e6042b..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/pt_PT/user_openid.po b/l10n/pt_PT/user_openid.po deleted file mode 100644 index 617e967bddc058a33cb366daef68cd3b86f9d81a..0000000000000000000000000000000000000000 --- a/l10n/pt_PT/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/ro/admin_dependencies_chk.po b/l10n/ro/admin_dependencies_chk.po deleted file mode 100644 index 76d2d0539d300f5ae3b6943c6da5fb83f98e66b2..0000000000000000000000000000000000000000 --- a/l10n/ro/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/ro/admin_migrate.po b/l10n/ro/admin_migrate.po deleted file mode 100644 index 44132a5cdd3f4f7b1bb3c0bf46dd8a719e24bb1e..0000000000000000000000000000000000000000 --- a/l10n/ro/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/ro/bookmarks.po b/l10n/ro/bookmarks.po deleted file mode 100644 index e02fd456c982a0d76f59887e0d573f83f025f7bc..0000000000000000000000000000000000000000 --- a/l10n/ro/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/ro/calendar.po b/l10n/ro/calendar.po deleted file mode 100644 index bb0d41a50a75c63e51d292645c03af595e0481f9..0000000000000000000000000000000000000000 --- a/l10n/ro/calendar.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Claudiu <claudiu@tanaselia.ro>, 2011, 2012. -# Dimon Pockemon <>, 2012. -# Eugen Mihalache <eugemjj@gmail.com>, 2012. -# Ovidiu Tache <ovidiutache@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Nici un calendar găsit." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Nici un eveniment găsit." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Calendar greșit" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Fus orar nou:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Fus orar schimbat" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Cerere eronată" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Calendar" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "LLL z[aaaa]{'—'[LLL] z aaaa}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Zi de naștere" - -#: lib/app.php:122 -msgid "Business" -msgstr "Afaceri" - -#: lib/app.php:123 -msgid "Call" -msgstr "Sună" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Clienți" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Curier" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Sărbători" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idei" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Călătorie" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Aniversare" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Întâlnire" - -#: lib/app.php:131 -msgid "Other" -msgstr "Altele" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Personal" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Proiecte" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Întrebări" - -#: lib/app.php:135 -msgid "Work" -msgstr "Servici" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "fără nume" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Calendar nou" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Nerepetabil" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Zilnic" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Săptămânal" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "În fiecare zii a săptămânii" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "La fiecare două săptămâni" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Lunar" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Anual" - -#: lib/object.php:388 -msgid "never" -msgstr "niciodată" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "după repetiție" - -#: lib/object.php:390 -msgid "by date" -msgstr "după dată" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "după ziua lunii" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "după ziua săptămânii" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Luni" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Marți" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Miercuri" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Joi" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Vineri" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sâmbătă" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Duminică" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "evenimentele săptămânii din luna" - -#: lib/object.php:428 -msgid "first" -msgstr "primul" - -#: lib/object.php:429 -msgid "second" -msgstr "al doilea" - -#: lib/object.php:430 -msgid "third" -msgstr "al treilea" - -#: lib/object.php:431 -msgid "fourth" -msgstr "al patrulea" - -#: lib/object.php:432 -msgid "fifth" -msgstr "al cincilea" - -#: lib/object.php:433 -msgid "last" -msgstr "ultimul" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Ianuarie" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februarie" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Martie" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Aprilie" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mai" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Iunie" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Iulie" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "August" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Septembrie" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Octombrie" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Noiembrie" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Decembrie" - -#: lib/object.php:488 -msgid "by events date" -msgstr "după data evenimentului" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "după ziua(zilele) anului" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "după numărul săptămânii" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "după zi și lună" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Data" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Toată ziua" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Câmpuri lipsă" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Titlu" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Începând cu" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "De la" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Până pe" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "La" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Evenimentul se termină înainte să înceapă" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "A avut loc o eroare a bazei de date" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Săptămâna" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Luna" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Listă" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Astăzi" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Calendarele tale" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Legătură CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Calendare partajate" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Nici un calendar partajat" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Partajați calendarul" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Descarcă" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Modifică" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Șterge" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "Partajat cu tine de" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Calendar nou" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Modifică calendarul" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Nume afișat" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Activ" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Culoarea calendarului" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Salveză" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Trimite" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Anulează" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Modifică un eveniment" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportă" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informații despre eveniment" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Ciclic" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarmă" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Participanți" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Partajează" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Numele evenimentului" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Categorie" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Separă categoriile prin virgule" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Editează categorii" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Toată ziua" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "De la" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Către" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Opțiuni avansate" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Locație" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Locația evenimentului" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Descriere" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Descrierea evenimentului" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Repetă" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avansat" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Selectează zilele săptămânii" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Selectează zilele" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "și evenimentele de zi cu zi ale anului." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "și evenimentele de zi cu zi ale lunii." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Selectează lunile" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Selectează săptămânile" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "și evenimentele săptămânale ale anului." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Interval" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Sfârșit" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "repetiții" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "crează un calendar nou" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importă un calendar" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Numele noului calendar" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importă" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Închide" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Crează un eveniment nou" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Vizualizează un eveniment" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nici o categorie selectată" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "din" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "la" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Fus orar" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Utilizatori" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "utilizatori selectați" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Editabil" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupuri" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "grupuri selectate" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "fă public" diff --git a/l10n/ro/contacts.po b/l10n/ro/contacts.po deleted file mode 100644 index ab7e082bbeb2b13b291330bbf091b9a9028f2963..0000000000000000000000000000000000000000 --- a/l10n/ro/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Claudiu <claudiu@tanaselia.ro>, 2011, 2012. -# Dimon Pockemon <>, 2012. -# Eugen Mihalache <eugemjj@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "(Dez)activarea agendei a întâmpinat o eroare." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID-ul nu este stabilit" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Eroare la actualizarea agendei." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Nici un ID nu a fost furnizat" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Eroare la stabilirea sumei de control" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Nici o categorie selectată pentru ștergere" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Nici o carte de adrese găsită" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Nici un contact găsit" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "O eroare a împiedicat adăugarea contactului." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "numele elementului nu este stabilit." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Nu se poate adăuga un câmp gol." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Cel puțin unul din câmpurile adresei trebuie completat." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informațiile cărții de vizită sunt incorecte. Te rog reîncarcă pagina." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "ID lipsă" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Eroare la prelucrarea VCard-ului pentru ID:\"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "suma de control nu este stabilită." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Nici un ID de contact nu a fost transmis" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Eroare la citerea fotografiei de contact" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Eroare la salvarea fișierului temporar." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Fotografia care se încarcă nu este validă." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "ID-ul de contact lipsește." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Nici o adresă către fotografie nu a fost transmisă" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Fișierul nu există:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Eroare la încărcarea imaginii." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Contacte" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Nu se găsește în agendă." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Contactul nu a putut fi găsit." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Servicu" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Acasă" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Text" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Voce" - -#: lib/app.php:205 -msgid "Message" -msgstr "Mesaj" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Zi de naștere" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Ziua de naștere a {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Contact" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Adaugă contact" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Agende" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Introdu detalii despre nume" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizație" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Șterge" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Pseudonim" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Introdu pseudonim" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "zz-ll-aaaa" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupuri" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Separă grupurile cu virgule" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Editează grupuri" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Preferat" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Te rog să specifici un e-mail corect" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Introdu adresa de e-mail" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Trimite mesaj la e-mail" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Șterge e-mail" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Email" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresă" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Descarcă acest contact" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Șterge contact" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tip" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "CP" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Extins" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Oraș" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regiune" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Cod poștal" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Țară" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Agendă" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Descarcă" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Editează" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Agendă nouă" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Salvează" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Anulează" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 48c69f2447b48dbf1e3f2083704d5a8a41b209fa..27279e061fd19fce0015ceefdb437638289416c1 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "Nici o categorie de adăugat?" msgid "This category already exists: " msgstr "Această categorie deja există:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Configurări" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Ianuarie" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Februarie" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Martie" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Aprilie" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mai" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Iunie" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Iulie" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "August" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Septembrie" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Octombrie" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Noiembrie" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Decembrie" @@ -109,8 +109,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Nici o categorie selectată pentru ștergere." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Eroare" @@ -150,7 +150,8 @@ msgstr "Partajare cu legătură" msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Parola" @@ -186,39 +187,39 @@ msgstr "" msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "poate edita" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "control acces" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "creare" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "actualizare" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "ștergere" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "partajare" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" @@ -242,12 +243,12 @@ msgstr "Solicitat" msgid "Login failed!" msgstr "Autentificare eșuată" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Utilizator" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Cerere trimisă" @@ -303,52 +304,77 @@ msgstr "Editează categoriile" msgid "Add" msgstr "Adaugă" +#: 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 "Crează un <strong>cont de administrator</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avansat" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Director date" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "servicii web controlate de tine" @@ -356,15 +382,29 @@ msgstr "servicii web controlate de tine" msgid "Log out" msgstr "Ieșire" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "amintește" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Autentificare" @@ -379,3 +419,17 @@ msgstr "precedentul" #: templates/part.pagenavi.php:20 msgid "next" msgstr "următorul" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/ro/files_odfviewer.po b/l10n/ro/files_odfviewer.po deleted file mode 100644 index 3fa223c661249e111718b309375c6bf3b8ee3d7e..0000000000000000000000000000000000000000 --- a/l10n/ro/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ro/files_pdfviewer.po b/l10n/ro/files_pdfviewer.po deleted file mode 100644 index 5425afad6366103e235cdc532a6833ab2ff8b632..0000000000000000000000000000000000000000 --- a/l10n/ro/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ro/files_texteditor.po b/l10n/ro/files_texteditor.po deleted file mode 100644 index c74fb485a95a78163c4ea938977a1f5d9dd9da0d..0000000000000000000000000000000000000000 --- a/l10n/ro/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ro/gallery.po b/l10n/ro/gallery.po deleted file mode 100644 index 4bf7a3d27195d675855116c69f074f5493362ce5..0000000000000000000000000000000000000000 --- a/l10n/ro/gallery.po +++ /dev/null @@ -1,97 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Claudiu <claudiu@tanaselia.ro>, 2012. -# Dimon Pockemon <>, 2012. -# Eugen Mihalache <eugemjj@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Imagini" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "Setări" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Re-scanează" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Stop" - -#: templates/index.php:18 -msgid "Share" -msgstr "Partajează" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Înapoi" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Șterge confirmarea" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Vrei să ștergi albumul" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Schimbă numele albumului" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nume nou album" diff --git a/l10n/ro/impress.po b/l10n/ro/impress.po deleted file mode 100644 index 11bb267b33b196e85c8338d65746d9e27b7335a9..0000000000000000000000000000000000000000 --- a/l10n/ro/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ro/media.po b/l10n/ro/media.po deleted file mode 100644 index 8ad58147fa208e60c0c60817ac062405353e762e..0000000000000000000000000000000000000000 --- a/l10n/ro/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Claudiu <claudiu@tanaselia.ro>, 2011. -# Eugen Mihalache <eugemjj@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Muzică" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Redă" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pauză" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Precedent" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Următor" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Fără sonor" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Cu sonor" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Rescanează colecția" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artist" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titlu" diff --git a/l10n/ro/tasks.po b/l10n/ro/tasks.po deleted file mode 100644 index c7869fb6c68d97ce84c1b80afe235a729e7dc55c..0000000000000000000000000000000000000000 --- a/l10n/ro/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dumitru Ursu <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 20:30+0000\n" -"Last-Translator: Dumitru Ursu <>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Data/timpul invalid" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Sarcini" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Fără categorie" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Nespecificat" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=cel mai înalt" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=mediu" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=cel mai jos" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Rezumat gol" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Completare procentuală greșită" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Prioritare greșită" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Adaugă sarcină" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Comandă până la" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Lista de comenzi" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Comandă executată" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Locația comenzii" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Prioritarea comenzii" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Eticheta comenzii" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Încărcare sarcini" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Important" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Mai mult" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Mai puțin" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Șterge" diff --git a/l10n/ro/user_migrate.po b/l10n/ro/user_migrate.po deleted file mode 100644 index de0b6551e99887982d74a79734ccbd89387cdfea..0000000000000000000000000000000000000000 --- a/l10n/ro/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/ro/user_openid.po b/l10n/ro/user_openid.po deleted file mode 100644 index e5598de2c942eebda14dc04c83cc76377d662803..0000000000000000000000000000000000000000 --- a/l10n/ro/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/ru/admin_dependencies_chk.po b/l10n/ru/admin_dependencies_chk.po deleted file mode 100644 index fefbc127559d61cec9fdeff39ca0d68304b3e87d..0000000000000000000000000000000000000000 --- a/l10n/ru/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 09:02+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Модуль php-json необходим многим приложениям для внутренних связей" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Модуль php-curl необходим для получения заголовка страницы при добавлении закладок" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Модуль php-gd необходим для создания уменьшенной копии для предпросмотра ваших картинок." - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Модуль php-ldap необходим для соединения с вашим ldap сервером" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Модуль php-zip необходим для загрузки нескольких файлов за раз" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Модуль php-mb_multibyte необходим для корректного управления кодировками." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Модуль php-ctype необходим для проверки данных." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Модуль php-xml необходим для открытия файлов через webdav." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "Директива allow_url_fopen в файле php.ini должна быть установлена в 1 для получения базы знаний с серверов OCS" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Модуль php-pdo необходим для хранения данных ownСloud в базе данных." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Статус зависимостей" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Используется:" diff --git a/l10n/ru/admin_migrate.po b/l10n/ru/admin_migrate.po deleted file mode 100644 index c022979b52a075c2e4e989a25212ffeda8fc86df..0000000000000000000000000000000000000000 --- a/l10n/ru/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:51+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Экспортировать этот экземпляр ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Будет создан сжатый файл, содержащий данные этого экземпляра owncloud.\n Выберите тип экспорта:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Экспорт" diff --git a/l10n/ru/bookmarks.po b/l10n/ru/bookmarks.po deleted file mode 100644 index 96ffd483f144c5fe5ccccfde86dbaaf4adff890f..0000000000000000000000000000000000000000 --- a/l10n/ru/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 13:15+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Закладки" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "без имени" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Прочитать позже" - -#: templates/list.php:13 -msgid "Address" -msgstr "Адрес" - -#: templates/list.php:14 -msgid "Title" -msgstr "Заголовок" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Метки" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Сохранить закладки" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "У вас нет закладок" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Букмарклет <br />" diff --git a/l10n/ru/calendar.po b/l10n/ru/calendar.po deleted file mode 100644 index 64d53960947cf8bb4d6a007c833bfeab44212b17..0000000000000000000000000000000000000000 --- a/l10n/ru/calendar.po +++ /dev/null @@ -1,819 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -# <jekader@gmail.com>, 2011, 2012. -# Nick Remeslennikov <homolibere@gmail.com>, 2012. -# <rasperepodvipodvert@gmail.com>, 2012. -# <tony.mccourin@gmail.com>, 2011. -# Victor Bravo <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 14:41+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Не все календари полностью кешированы" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Все, вроде бы, закешировано" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Календари не найдены." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "События не найдены." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Неверный календарь" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Файл либо не собержит событий, либо все события уже есть в календаре" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "события были сохранены в новый календарь" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Ошибка импорта" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "события были сохранены в вашем календаре" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Новый часовой пояс:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Часовой пояс изменён" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Неверный запрос" - -#: appinfo/app.php:41 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Календарь" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ддд" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ддд М/д" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "дддд М/д" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "ММММ гггг" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "дддд, МММ д, гггг" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "День рождения" - -#: lib/app.php:122 -msgid "Business" -msgstr "Бизнес" - -#: lib/app.php:123 -msgid "Call" -msgstr "Звонить" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Клиенты" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Посыльный" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Праздники" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Идеи" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Поездка" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Юбилей" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Встреча" - -#: lib/app.php:131 -msgid "Other" -msgstr "Другое" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Личное" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Проекты" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Вопросы" - -#: lib/app.php:135 -msgid "Work" -msgstr "Работа" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "до свидания" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "без имени" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Новый Календарь" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Не повторяется" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Ежедневно" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Еженедельно" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "По будням" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Каждые две недели" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Каждый месяц" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Каждый год" - -#: lib/object.php:388 -msgid "never" -msgstr "никогда" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "по числу повторений" - -#: lib/object.php:390 -msgid "by date" -msgstr "по дате" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "по дню месяца" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "по дню недели" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Понедельник" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Вторник" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Среда" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Четверг" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Пятница" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Суббота" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Воскресенье" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "неделя месяца" - -#: lib/object.php:428 -msgid "first" -msgstr "первая" - -#: lib/object.php:429 -msgid "second" -msgstr "вторая" - -#: lib/object.php:430 -msgid "third" -msgstr "третья" - -#: lib/object.php:431 -msgid "fourth" -msgstr "червётрая" - -#: lib/object.php:432 -msgid "fifth" -msgstr "пятая" - -#: lib/object.php:433 -msgid "last" -msgstr "последняя" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Январь" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Февраль" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Март" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Апрель" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Май" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Июнь" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Июль" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Август" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Сентябрь" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Октябрь" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Ноябрь" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Декабрь" - -#: lib/object.php:488 -msgid "by events date" -msgstr "по дате событий" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "по дням недели" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "по номерам недели" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "по дню и месяцу" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Дата" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Кал." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Вс." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Пн." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Вт." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Ср." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Чт." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Пт." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Сб." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Янв." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Фев." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Мар." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Апр." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Май." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Июн." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Июл." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Авг." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Сен." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Окт." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Ноя." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Дек." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Весь день" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Незаполненные поля" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Название" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Дата начала" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Время начала" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Дата окончания" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Время окончания" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Окончание события раньше, чем его начало" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Ошибка базы данных" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Неделя" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Месяц" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Список" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Сегодня" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Параметры" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Ваши календари" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Ссылка для CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Опубликованные" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Нет опубликованных календарей" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Опубликовать" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Скачать" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Редактировать" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Удалить" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "опубликовал для вас" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Новый календарь" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Редактировать календарь" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Отображаемое имя" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Активен" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Цвет календаря" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Сохранить" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Отправить" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Отмена" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Редактировать событие" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Экспортировать" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Информация о событии" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Повторение" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Сигнал" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Участники" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Опубликовать" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Название событие" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Категория" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Разделяйте категории запятыми" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Редактировать категории" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Событие на весь день" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "От" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "До" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Дополнительные параметры" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Место" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Место события" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Описание" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Описание события" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Повтор" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Дополнительно" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Выбрать дни недели" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Выбрать дни" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "и день года события" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "и день месяца события" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Выбрать месяцы" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Выбрать недели" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "и номер недели события" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Интервал" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Окончание" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "повторений" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Создать новый календарь" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Импортировать календарь из файла" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Пожалуйста, выберите календарь" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Название нового календаря" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Возьмите разрешенное имя!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Календарь с таким именем уже существует. Если вы продолжите, одноименный календарь будет удален." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Импортировать" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Закрыть Сообщение" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Создать новое событие" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Показать событие" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Категории не выбраны" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "из" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "на" - -#: templates/settings.php:10 -msgid "General" -msgstr "Основные" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Часовой пояс" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Автоматическое обновление временной зоны" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Формат времени" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24ч" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12ч" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Начало недели" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Кэш" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Очистить кэш повторяющихся событий" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URLs" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Адрес синхронизации CalDAV" - -#: templates/settings.php:87 -msgid "more info" -msgstr "подробнее" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Основной адрес (Контакта)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Читать только ссылки iCalendar" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Пользователи" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "выбрать пользователей" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Редактируемо" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Группы" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "выбрать группы" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "селать публичным" diff --git a/l10n/ru/contacts.po b/l10n/ru/contacts.po deleted file mode 100644 index 4476c9a4e11f4fe64ae224c840315f1f680a885d..0000000000000000000000000000000000000000 --- a/l10n/ru/contacts.po +++ /dev/null @@ -1,959 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -# <ideamk@gmail.com>, 2012. -# <jekader@gmail.com>, 2012. -# <lankme@gmail.com>, 2012. -# Nick Remeslennikov <homolibere@gmail.com>, 2012. -# <tony.mccourin@gmail.com>, 2011. -# Victor Bravo <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 13:10+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Ошибка (де)активации адресной книги." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id не установлен." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Нельзя обновить адресную книгу с пустым именем." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Ошибка обновления адресной книги." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "ID не предоставлен" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Ошибка установки контрольной суммы." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Категории для удаления не установлены." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Адресные книги не найдены." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Контакты не найдены." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Произошла ошибка при добавлении контакта." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "имя элемента не установлено." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Невозможно распознать контакт:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Невозможно добавить пустой параметр." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Как минимум одно поле адреса должно быть заполнено." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "При попытке добавить дубликат:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Отсутствует параметр IM." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "Неизвестный IM:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Информация о vCard некорректна. Пожалуйста, обновите страницу." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Отсутствует ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Ошибка обработки VCard для ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "контрольная сумма не установлена." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Информация о vCard не корректна. Перезагрузите страницу: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Что-то пошло FUBAR." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Нет контакта ID" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Ошибка чтения фотографии контакта." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Ошибка сохранения временного файла." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Загружаемая фотография испорчена." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "ID контакта отсутствует." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Нет фото по адресу." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Файл не существует:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Ошибка загрузки картинки." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Ошибка при получении контактов" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Ошибка при получении ФОТО." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Ошибка при сохранении контактов." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Ошибка изменения размера изображений" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Ошибка обрезки изображений" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Ошибка создания временных изображений" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Ошибка поиска изображений:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Ошибка загрузки контактов в хранилище." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Файл загружен успешно." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Загружаемый файл первосходит значение переменной upload_max_filesize, установленно в php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Загружаемый файл превосходит значение переменной MAX_FILE_SIZE, указанной в форме HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Файл загружен частично" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Файл не был загружен" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Отсутствует временная папка" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Не удалось сохранить временное изображение:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Не удалось загрузить временное изображение:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Файл не был загружен. Неизвестная ошибка" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Контакты" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "К сожалению, эта функция не была реализована" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Не реализовано" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Не удалось получить адрес." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Ошибка" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "У вас нет разрешений добавлять контакты в" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Выберите одну из ваших собственных адресных книг." - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Ошибка доступа" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Это свойство должно быть не пустым." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Не удалось сериализовать элементы." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' called without type argument. Please report at bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Изменить имя" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Нет выбранных файлов для загрузки." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Файл, который вы пытаетесь загрузить превышать максимальный размер загружаемых файлов на этом сервере." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Ошибка загрузки изображения профиля." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Выберите тип" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Некоторые контакты помечены на удаление, но ещё не удалены. Подождите, пока они удаляются." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Вы хотите соединить эти адресные книги?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Результат:" - -#: js/loader.js:49 -msgid " imported, " -msgstr "импортировано, " - -#: js/loader.js:49 -msgid " failed." -msgstr "не удалось." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Отображаемое имя не может быть пустым." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Адресная книга не найдена:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Это не ваша адресная книга." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Контакт не найден." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Рабочий" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Домашний" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Другое" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Мобильный" - -#: lib/app.php:203 -msgid "Text" -msgstr "Текст" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Голос" - -#: lib/app.php:205 -msgid "Message" -msgstr "Сообщение" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Факс" - -#: lib/app.php:207 -msgid "Video" -msgstr "Видео" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Пейджер" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Интернет" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "День рождения" - -#: lib/app.php:253 -msgid "Business" -msgstr "Бизнес" - -#: lib/app.php:254 -msgid "Call" -msgstr "Вызов" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Клиенты" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Посыльный" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Праздники" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Идеи" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Поездка" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Юбилей" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Встреча" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Личный" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Проекты" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Вопросы" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "День рождения {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Контакт" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "У вас нет разрешений редактировать этот контакт." - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "У вас нет разрешений удалять этот контакт." - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Добавить Контакт" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Импорт" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Настройки" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Адресные книги" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Закрыть" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Горячие клавиши" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Навигация" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Следующий контакт в списке" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Предыдущий контакт в списке" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Развернуть/свернуть текущую адресную книгу" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Следующая адресная книга" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Предыдущая адресная книга" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Действия" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Обновить список контактов" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Добавить новый контакт" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Добавить новую адресную книгу" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Удалить текущий контакт" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Перетяните фотографии для загрузки" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Удалить текущую фотографию" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Редактировать текущую фотографию" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Загрузить новую фотографию" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Выбрать фотографию из ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Формат Краткое имя, Полное имя" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Изменить детали имени" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Организация" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Удалить" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Псевдоним" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Введите псевдоним" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Веб-сайт" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Перейти на веб-сайт" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Группы" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Разделить группы запятыми" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Редактировать группы" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Предпочитаемый" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Укажите действительный адрес электронной почты." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Укажите адрес электронной почты" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Написать по адресу" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Удалить адрес электронной почты" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Ввести номер телефона" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Удалить номер телефона" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Instant Messenger" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Удалить IM" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Показать на карте" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Ввести детали адреса" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Добавьте заметки здесь." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Добавить поле" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Телефон" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Ящик эл. почты" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Быстрые сообщения" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Адрес" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Заметка" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Скачать контакт" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Удалить контакт" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Временный образ был удален из кэша." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Редактировать адрес" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Тип" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "АО" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Улица" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Улица и дом" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Расширенный" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Номер квартиры и т.д." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Город" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Область" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Например, область или район" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Почтовый индекс" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Почтовый индекс" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Страна" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Адресная книга" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Уважительные префиксы" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Мисс" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Г-жа" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Г-н" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Сэр" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Г-жа" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Доктор" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Имя" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Дополнительные имена (отчество)" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Фамилия" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Hon. suffixes" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "Уважительные суффиксы" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Загрузить файл контактов" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Выберите адресную книгу" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "создать новую адресную книгу" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Имя новой адресной книги" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Импорт контактов" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "В адресной книге нет контактов." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Добавить контакт" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Выбрать адресную книгу" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Введите имя" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Ввдите описание" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV синхронизации адресов" - -#: templates/settings.php:3 -msgid "more info" -msgstr "дополнительная информация" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Первичный адрес (Kontact и др.)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Показать ссылку CardDav" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Показать нередактируемую ссылку VCF" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Опубликовать" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Скачать" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Редактировать" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Новая адресная книга" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Имя" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Описание" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Сохранить" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Отменить" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Ещё..." diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b76cabfb0f1c6114c32105cf3577b814e45e459b..fe949c2e2b4c4891fcc0182b2d4981c997a26666 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -34,55 +34,55 @@ msgstr "Нет категорий для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Январь" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Февраль" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Март" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Апрель" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Май" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Июнь" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Июль" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Август" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Сентябрь" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Октябрь" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Ноябрь" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Декабрь" @@ -110,8 +110,8 @@ msgstr "Ок" msgid "No categories selected for deletion." msgstr "Нет категорий для удаления." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Ошибка" @@ -151,7 +151,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Пароль" @@ -187,39 +188,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -243,12 +244,12 @@ msgstr "Запрошено" msgid "Login failed!" msgstr "Не удалось войти!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Имя пользователя" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Запросить сброс" @@ -304,52 +305,77 @@ msgstr "Редактировать категории" msgid "Add" msgstr "Добавить" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Создать <strong>учётную запись администратора</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Настройка базы данных" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "будет использовано" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Завершить установку" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "Сетевые службы под твоим контролем" @@ -357,15 +383,29 @@ msgstr "Сетевые службы под твоим контролем" msgid "Log out" msgstr "Выйти" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "запомнить" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Войти" @@ -380,3 +420,17 @@ msgstr "пред" #: templates/part.pagenavi.php:20 msgid "next" msgstr "след" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index e1aaa13211221dba3985c9f262101421eb76af6a..a9137068dd794a9733066a6b03612bc50fcfd062 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -7,6 +7,7 @@ # <jekader@gmail.com>, 2012. # <lankme@gmail.com>, 2012. # Nick Remeslennikov <homolibere@gmail.com>, 2012. +# <skoptev@ukr.net>, 2012. # <tony.mccourin@gmail.com>, 2011. # Victor Bravo <>, 2012. # <victor.dubiniuk@gmail.com>, 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-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 12:08+0000\n" +"Last-Translator: skoptev <skoptev@ukr.net>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,41 +69,41 @@ msgstr "Удалить" #: js/fileactions.js:182 msgid "Rename" -msgstr "" +msgstr "Переименовать" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" msgstr "уже существует" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "заменить" -#: js/filelist.js:190 +#: js/filelist.js:192 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "отмена" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" msgstr "заменён" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "отмена" -#: js/filelist.js:241 +#: js/filelist.js:243 msgid "with" msgstr "с" -#: js/filelist.js:273 +#: js/filelist.js:275 msgid "unshared" msgstr "публикация отменена" -#: js/filelist.js:275 +#: js/filelist.js:277 msgid "deleted" msgstr "удален" @@ -110,112 +111,112 @@ msgstr "удален" msgid "generating ZIP-file, it may take some time." msgstr "создание ZIP-файла, это может занять некоторое время." -#: js/files.js:208 +#: js/files.js:214 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: js/files.js:208 +#: js/files.js:214 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "Ожидание" -#: js/files.js:256 +#: js/files.js:262 msgid "1 file uploading" -msgstr "" +msgstr "загружается 1 файл" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" -msgstr "" +msgstr "загружаются файлы" -#: js/files.js:322 js/files.js:355 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:424 +#: js/files.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:494 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." msgstr "Неверное имя, '/' не допускается." -#: js/files.js:667 +#: js/files.js:681 msgid "files scanned" msgstr "" -#: js/files.js:675 +#: js/files.js:689 msgid "error while scanning" msgstr "" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "Название" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "Размер" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "Изменён" -#: js/files.js:777 +#: js/files.js:791 msgid "folder" msgstr "папка" -#: js/files.js:779 +#: js/files.js:793 msgid "folders" msgstr "папки" -#: js/files.js:787 +#: js/files.js:801 msgid "file" msgstr "файл" -#: js/files.js:789 +#: js/files.js:803 msgid "files" msgstr "файлы" -#: js/files.js:833 +#: js/files.js:847 msgid "seconds ago" msgstr "" -#: js/files.js:834 +#: js/files.js:848 msgid "minute ago" -msgstr "" +msgstr "минуту назад" -#: js/files.js:835 +#: js/files.js:849 msgid "minutes ago" msgstr "" -#: js/files.js:838 +#: js/files.js:852 msgid "today" -msgstr "" +msgstr "сегодня" -#: js/files.js:839 +#: js/files.js:853 msgid "yesterday" -msgstr "" +msgstr "вчера" -#: js/files.js:840 +#: js/files.js:854 msgid "days ago" msgstr "" -#: js/files.js:841 +#: js/files.js:855 msgid "last month" -msgstr "" +msgstr "в прошлом месяце" -#: js/files.js:843 +#: js/files.js:857 msgid "months ago" msgstr "" -#: js/files.js:844 +#: js/files.js:858 msgid "last year" msgstr "" -#: js/files.js:845 +#: js/files.js:859 msgid "years ago" msgstr "" diff --git a/l10n/ru/files_odfviewer.po b/l10n/ru/files_odfviewer.po deleted file mode 100644 index 566e2951123e59311c0bf1725a16be7a603418e3..0000000000000000000000000000000000000000 --- a/l10n/ru/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/ru/files_pdfviewer.po b/l10n/ru/files_pdfviewer.po deleted file mode 100644 index 48f6bdb06a6025df5f998ffe03531fc913958b1b..0000000000000000000000000000000000000000 --- a/l10n/ru/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/ru/files_texteditor.po b/l10n/ru/files_texteditor.po deleted file mode 100644 index 46b235b4699a3a098d0e93f4400eb0481d5cede4..0000000000000000000000000000000000000000 --- a/l10n/ru/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/ru/gallery.po b/l10n/ru/gallery.po deleted file mode 100644 index c80be67674ff0f331720ee1a98e930dbe7194596..0000000000000000000000000000000000000000 --- a/l10n/ru/gallery.po +++ /dev/null @@ -1,43 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -# <jekader@gmail.com>, 2012. -# <lankme@gmail.com>, 2012. -# Soul Kim <warlock.rf@gmail.com>, 2012. -# Victor Bravo <>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-23 17:08+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:42 -msgid "Pictures" -msgstr "Рисунки" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Опубликовать" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Ошибка" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Внутренняя ошибка" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Слайдшоу" diff --git a/l10n/ru/impress.po b/l10n/ru/impress.po deleted file mode 100644 index 4154c7b9485e943657c2c7387c90cf3a3daa05c6..0000000000000000000000000000000000000000 --- a/l10n/ru/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/ru/media.po b/l10n/ru/media.po deleted file mode 100644 index ed564055236228f3f75b02f759ddd161b1bd4097..0000000000000000000000000000000000000000 --- a/l10n/ru/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <tony.mccourin@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Музыка" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Проиграть" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Пауза" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Предыдущий" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Следующий" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Отключить звук" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Включить звук" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Пересканировать коллекцию" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Исполнитель" - -#: templates/music.php:38 -msgid "Album" -msgstr "Альбом" - -#: templates/music.php:39 -msgid "Title" -msgstr "Название" diff --git a/l10n/ru/tasks.po b/l10n/ru/tasks.po deleted file mode 100644 index d7a46fb6a81c1c80c285604b992401aed51d12ee..0000000000000000000000000000000000000000 --- a/l10n/ru/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:18+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Неверные дата/время" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Задачи" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Нет категории" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Не указан" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=наибольший" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=средний" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=наименьший" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Пустая сводка" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Неверный процент завершения" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Неверный приоритет" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Добавить задачу" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Срок заказа" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Order List" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Заказ выполнен" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Местонахождение заказа" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Приоритет заказа" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Метка заказа" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Загрузка задач..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Важный" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Больше" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Меньше" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Удалить" diff --git a/l10n/ru/user_migrate.po b/l10n/ru/user_migrate.po deleted file mode 100644 index 79fd4f0cfa1539ed4fb51e8c3a5b73f2628f5260..0000000000000000000000000000000000000000 --- a/l10n/ru/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:55+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Экспорт" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "В процессе создания файла экспорта что-то пошло не так" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Произошла ошибка" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Экспортировать ваш аккаунт пользователя" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Будет создан сжатый файл, содержащий ваш аккаунт ownCloud" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Импортировать аккаунт пользователя" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "Архив пользователя ownCloud" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Импорт" diff --git a/l10n/ru/user_openid.po b/l10n/ru/user_openid.po deleted file mode 100644 index 22feb4f2913146f58e4d2ef5581b46a36bdb84d1..0000000000000000000000000000000000000000 --- a/l10n/ru/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Denis <reg.transifex.net@demitel.ru>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:00+0000\n" -"Last-Translator: Denis <reg.transifex.net@demitel.ru>\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Это точка подключения сервера OpenID. Для информации смотрите" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Личность: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Realm: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Пользователь: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Логин" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Ошибка: <b>Пользователь не выбран" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "вы можете аутентифицироваться на других сайтах с этим адресом" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Авторизованный провайдер OpenID" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Ваш адрес в Wordpress, Identi.ca, …" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 32fa4465b3a0c9150824ba6751df89b3204c6514..145223b5c6eb4ed332639b50bc4fe4dc5ed48656 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.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-10-12 02:04+0200\n" -"PO-Revision-Date: 2012-10-11 08:47+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 13:26+0000\n" "Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "Нет категории для добавления?" msgid "This category already exists: " msgstr "Эта категория уже существует:" -#: js/js.js:229 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Настройки" -#: js/js.js:661 +#: js/js.js:670 msgid "January" msgstr "Январь" -#: js/js.js:661 +#: js/js.js:670 msgid "February" msgstr "Февраль" -#: js/js.js:661 +#: js/js.js:670 msgid "March" msgstr "Март" -#: js/js.js:661 +#: js/js.js:670 msgid "April" msgstr "Апрель" -#: js/js.js:661 +#: js/js.js:670 msgid "May" msgstr "Май" -#: js/js.js:661 +#: js/js.js:670 msgid "June" msgstr "Июнь" -#: js/js.js:662 +#: js/js.js:671 msgid "July" msgstr "Июль" -#: js/js.js:662 +#: js/js.js:671 msgid "August" msgstr "Август" -#: js/js.js:662 +#: js/js.js:671 msgid "September" msgstr "Сентябрь" -#: js/js.js:662 +#: js/js.js:671 msgid "October" msgstr "Октябрь" -#: js/js.js:662 +#: js/js.js:671 msgid "November" msgstr "Ноябрь" -#: js/js.js:662 +#: js/js.js:671 msgid "December" msgstr "Декабрь" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Пароль" @@ -161,7 +162,7 @@ msgstr "Дата истечения срока действия" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Сделать общедоступным посредством email:" #: js/share.js:187 msgid "No people found" @@ -213,11 +214,11 @@ msgstr "Пароль защищен" #: js/share.js:497 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Ошибка при отключении даты истечения срока действия" #: js/share.js:509 msgid "Error setting expiration date" -msgstr "" +msgstr "Ошибка при установке даты истечения срока действия" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -239,8 +240,8 @@ msgstr "Запрашиваемое" msgid "Login failed!" msgstr "Войти не удалось!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Имя пользователя" @@ -300,48 +301,73 @@ msgstr "Редактирование категорий" 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 "Ваши каталоги данных и файлы, вероятно, доступны из Интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить вебсервер таким образом, чтобы каталоги данных больше не были доступны, или переместить их за пределы корневого каталога документов веб-сервера." + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Создать <strong>admin account</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Расширенный" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Папка данных" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Настроить базу данных" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "будет использоваться" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Имя базы данных" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Табличная область базы данных" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Сервер базы данных" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Завершение настройки" @@ -353,15 +379,29 @@ msgstr "веб-сервисы под Вашим контролем" msgid "Log out" msgstr "Выйти" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "Автоматический вход в систему отклонен!" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Если Вы недавно не меняли пароль, Ваш аккаунт может быть подвергнут опасности!" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "Пожалуйста, измените пароль, чтобы защитить ваш аккаунт еще раз." + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "запомнить" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Войти" @@ -376,3 +416,17 @@ 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 "Пожалуйста, проверьте свой пароль. <br/>По соображениям безопасности Вам может быть иногда предложено ввести пароль еще раз." + +#: templates/verify.php:16 +msgid "Verify" +msgstr "Проверить" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 72709623ecec6de4434f4380fb992ede05b5592b..a66fb2f7962dc058d664e5afd102a0e6d996fd6f 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-12 02:03+0200\n" -"PO-Revision-Date: 2012-10-11 08:03+0000\n" +"POT-Creation-Date: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-10-15 13:57+0000\n" "Last-Translator: AnnaSch <cdewqazxsqwe@gmail.com>\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "DN клиентского пользователя, с которого должна осуществляться привязка, например, uid=agent,dc=example,dc=com. Для анонимного доступа оставьте поля DN и Пароль пустыми." #: templates/settings.php:11 msgid "Password" @@ -63,7 +63,7 @@ msgstr "Фильтр имен пользователей" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "Задает фильтр, применяемый при загрузке пользователя. %%uid заменяет имя пользователя при входе." #: templates/settings.php:12 #, php-format @@ -72,11 +72,11 @@ msgstr "используйте %%uid заполнитель, например, \ #: templates/settings.php:13 msgid "User List Filter" -msgstr "" +msgstr "Фильтр списка пользователей" #: templates/settings.php:13 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "Задает фильтр, применяемый при получении пользователей." #: templates/settings.php:13 msgid "without any placeholder, e.g. \"objectClass=person\"." @@ -88,7 +88,7 @@ msgstr "Групповой фильтр" #: templates/settings.php:14 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "Задает фильтр, применяемый при получении групп." #: templates/settings.php:14 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." @@ -104,7 +104,7 @@ msgstr "Базовое дерево пользователей" #: templates/settings.php:19 msgid "Base Group Tree" -msgstr "" +msgstr "Базовое дерево групп" #: templates/settings.php:20 msgid "Group-Member association" @@ -130,7 +130,7 @@ msgstr "Выключить проверку сертификата SSL." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "Если соединение работает только с этой опцией, импортируйте SSL-сертификат LDAP сервера в ваш ownCloud сервер." #: templates/settings.php:23 msgid "Not recommended, use for testing only." @@ -146,7 +146,7 @@ msgstr "Атрибут LDAP, используемый для создания и #: templates/settings.php:25 msgid "Group Display Name Field" -msgstr "" +msgstr "Поле, отображаемое как имя группы" #: templates/settings.php:25 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po new file mode 100644 index 0000000000000000000000000000000000000000..ff4b345ed830186d0ea36b25c9d7221f689a7f23 --- /dev/null +++ b/l10n/si_LK/core.po @@ -0,0 +1,432 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Chamara Disanayake <chamara@nic.lk>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "යෙදුම් නාමය සපයා නැත." + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 +msgid "Settings" +msgstr "සැකසුම්" + +#: js/js.js:670 +msgid "January" +msgstr "ජනවාරි" + +#: js/js.js:670 +msgid "February" +msgstr "පෙබරවාරි" + +#: js/js.js:670 +msgid "March" +msgstr "මාර්තු" + +#: js/js.js:670 +msgid "April" +msgstr "අප්රේල්" + +#: js/js.js:670 +msgid "May" +msgstr "මැයි" + +#: js/js.js:670 +msgid "June" +msgstr "ජූනි" + +#: js/js.js:671 +msgid "July" +msgstr "ජූලි" + +#: js/js.js:671 +msgid "August" +msgstr "අගෝස්තු" + +#: js/js.js:671 +msgid "September" +msgstr "සැප්තැම්බර්" + +#: js/js.js:671 +msgid "October" +msgstr "ඔක්තෝබර්" + +#: js/js.js:671 +msgid "November" +msgstr "නොවැම්බර්" + +#: js/js.js:671 +msgid "December" +msgstr "දෙසැම්බර්" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "තෝරන්න" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "එපා" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "නැහැ" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "ඔව්" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "හරි" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 +msgid "Error" +msgstr "" + +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 +msgid "Password" +msgstr "මුර පදය " + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:283 +msgid "can edit" +msgstr "" + +#: js/share.js:285 +msgid "access control" +msgstr "" + +#: js/share.js:288 +msgid "create" +msgstr "" + +#: js/share.js:291 +msgid "update" +msgstr "" + +#: js/share.js:294 +msgid "delete" +msgstr "" + +#: js/share.js:297 +msgid "share" +msgstr "" + +#: js/share.js:322 js/share.js:484 +msgid "Password protected" +msgstr "" + +#: js/share.js:497 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:509 +msgid "Error setting expiration date" +msgstr "" + +#: lostpassword/index.php:26 +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 "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 +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:14 +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:48 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:50 +msgid "Data folder" +msgstr "දත්ත ෆෝල්ඩරය" + +#: templates/installation.php:57 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 +msgid "will be used" +msgstr "" + +#: templates/installation.php:105 +msgid "Database user" +msgstr "" + +#: templates/installation.php:109 +msgid "Database password" +msgstr "" + +#: templates/installation.php:113 +msgid "Database name" +msgstr "" + +#: templates/installation.php:121 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:127 +msgid "Database host" +msgstr "" + +#: templates/installation.php:132 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:38 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "" + +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:27 +msgid "remember" +msgstr "" + +#: templates/login.php:28 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "ඊළඟ" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po new file mode 100644 index 0000000000000000000000000000000000000000..0b5e050f8c035962a1996c5d65b34e5ffe495e56 --- /dev/null +++ b/l10n/si_LK/files.po @@ -0,0 +1,300 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Chamara Disanayake <chamara@nic.lk>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-10-15 10:48+0000\n" +"Last-Translator: Chamara Disanayake <chamara@nic.lk>\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "නිවැරදි ව ගොනුව උඩුගත කෙරිනි" + +#: ajax/upload.php:21 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "කිසිදු ගොනවක් උඩුගත නොවිනි" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "ගොනු" + +#: js/fileactions.js:108 templates/index.php:62 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:110 templates/index.php:64 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "already exists" +msgstr "" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "replace" +msgstr "" + +#: js/filelist.js:192 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "cancel" +msgstr "" + +#: js/filelist.js:241 js/filelist.js:243 +msgid "replaced" +msgstr "" + +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 +msgid "undo" +msgstr "" + +#: js/filelist.js:243 +msgid "with" +msgstr "" + +#: js/filelist.js:275 +msgid "unshared" +msgstr "" + +#: js/filelist.js:277 +msgid "deleted" +msgstr "" + +#: js/files.js:179 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:214 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:214 +msgid "Upload Error" +msgstr "" + +#: js/files.js:242 js/files.js:347 js/files.js:377 +msgid "Pending" +msgstr "" + +#: js/files.js:262 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:265 js/files.js:310 js/files.js:325 +msgid "files uploading" +msgstr "" + +#: js/files.js:328 js/files.js:361 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:430 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:500 +msgid "Invalid name, '/' is not allowed." +msgstr "" + +#: js/files.js:681 +msgid "files scanned" +msgstr "" + +#: js/files.js:689 +msgid "error while scanning" +msgstr "" + +#: js/files.js:762 templates/index.php:48 +msgid "Name" +msgstr "නම" + +#: js/files.js:763 templates/index.php:56 +msgid "Size" +msgstr "ප්රමාණය" + +#: js/files.js:764 templates/index.php:58 +msgid "Modified" +msgstr "" + +#: js/files.js:791 +msgid "folder" +msgstr "ෆෝල්ඩරය" + +#: js/files.js:793 +msgid "folders" +msgstr "ෆෝල්ඩර" + +#: js/files.js:801 +msgid "file" +msgstr "ගොනුව" + +#: js/files.js:803 +msgid "files" +msgstr "ගොනු" + +#: js/files.js:847 +msgid "seconds ago" +msgstr "" + +#: js/files.js:848 +msgid "minute ago" +msgstr "" + +#: js/files.js:849 +msgid "minutes ago" +msgstr "" + +#: js/files.js:852 +msgid "today" +msgstr "" + +#: js/files.js:853 +msgid "yesterday" +msgstr "" + +#: js/files.js:854 +msgid "days ago" +msgstr "" + +#: js/files.js:855 +msgid "last month" +msgstr "" + +#: js/files.js:857 +msgid "months ago" +msgstr "" + +#: js/files.js:858 +msgid "last year" +msgstr "" + +#: js/files.js:859 +msgid "years ago" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "උඩුගත කිරීමක උපරිම ප්රමාණය" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:14 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "නව" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "ෆෝල්ඩරය" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:20 +msgid "Upload" +msgstr "උඩුගත කිරීම" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "Nothing in here. Upload something!" +msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" + +#: templates/index.php:50 +msgid "Share" +msgstr "" + +#: templates/index.php:52 +msgid "Download" +msgstr "බාගත කිරීම" + +#: templates/index.php:75 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:77 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:82 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:85 +msgid "Current scanning" +msgstr "" diff --git a/l10n/ko/admin_migrate.po b/l10n/si_LK/files_encryption.po similarity index 52% rename from l10n/ko/admin_migrate.po rename to l10n/si_LK/files_encryption.po index 65b1d84b61936d478666877b71921278bf244eaf..b321106d981064180b6370dcf46fdac059ae2b51 100644 --- a/l10n/ko/admin_migrate.po +++ b/l10n/si_LK/files_encryption.po @@ -7,26 +7,28 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" +"POT-Creation-Date: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Language: si_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 -msgid "Export this ownCloud instance" +msgid "Encryption" msgstr "" #: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" +msgid "Exclude the following file types from encryption" +msgstr "" + +#: templates/settings.php:5 +msgid "None" msgstr "" -#: templates/settings.php:12 -msgid "Export" +#: templates/settings.php:10 +msgid "Enable Encryption" msgstr "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..3f565dbbd43e72b102ed9000c4ed22a2ab306f1f --- /dev/null +++ b/l10n/si_LK/files_external.po @@ -0,0 +1,106 @@ +# 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: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si_LK\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 "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:7 templates/settings.php:19 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:8 +msgid "Backend" +msgstr "" + +#: templates/settings.php:9 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:10 +msgid "Options" +msgstr "" + +#: templates/settings.php:11 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:23 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:54 templates/settings.php:62 +msgid "None set" +msgstr "" + +#: templates/settings.php:63 +msgid "All Users" +msgstr "" + +#: templates/settings.php:64 +msgid "Groups" +msgstr "" + +#: templates/settings.php:69 +msgid "Users" +msgstr "" + +#: templates/settings.php:77 templates/settings.php:107 +msgid "Delete" +msgstr "" + +#: templates/settings.php:87 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:88 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:99 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:113 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..fa03702776a61615b9e451a8a1fba624c463088c --- /dev/null +++ b/l10n/si_LK/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si_LK\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:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:35 +msgid "web services under your control" +msgstr "" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..41165d9434824846eb65b783a2f97d4c09f3ac28 --- /dev/null +++ b/l10n/si_LK/files_versions.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:10 +msgid "Expire all versions" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..bc62f158cf4bb8060a018fbfae117a5a2a27480c --- /dev/null +++ b/l10n/si_LK/lib.po @@ -0,0 +1,125 @@ +# 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: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:285 +msgid "Help" +msgstr "" + +#: app.php:292 +msgid "Personal" +msgstr "" + +#: app.php:297 +msgid "Settings" +msgstr "" + +#: app.php:302 +msgid "Users" +msgstr "" + +#: app.php:309 +msgid "Apps" +msgstr "" + +#: app.php:311 +msgid "Admin" +msgstr "" + +#: files.php:328 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:329 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:329 files.php:354 +msgid "Back to Files" +msgstr "" + +#: files.php:353 +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 "" + +#: template.php:87 +msgid "seconds ago" +msgstr "" + +#: template.php:88 +msgid "1 minute ago" +msgstr "" + +#: template.php:89 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:92 +msgid "today" +msgstr "" + +#: template.php:93 +msgid "yesterday" +msgstr "" + +#: template.php:94 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:95 +msgid "last month" +msgstr "" + +#: template.php:96 +msgid "months ago" +msgstr "" + +#: template.php:97 +msgid "last year" +msgstr "" + +#: template.php:98 +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 "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..fa1e595106e96521487756ef38465477c9b9be89 --- /dev/null +++ b/l10n/si_LK/settings.po @@ -0,0 +1,321 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# <thanojar@gmail.com>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-15 10:27+0000\n" +"Last-Translator: Thanoja <thanojar@gmail.com>\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:23 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/creategroup.php:12 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:21 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "අවලංගු අයදුම" + +#: ajax/removegroup.php:16 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "" + +#: ajax/removeuser.php:27 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "භාෂාව ාවනස් කිරීම" + +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: js/apps.js:28 js/apps.js:65 +msgid "Disable" +msgstr "" + +#: js/apps.js:28 js/apps.js:54 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:17 +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/admin.php:31 +msgid "Cron" +msgstr "" + +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:88 +msgid "Log" +msgstr "" + +#: templates/admin.php:116 +msgid "More" +msgstr "" + +#: templates/admin.php:124 +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/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:9 +msgid "Documentation" +msgstr "" + +#: templates/help.php:10 +msgid "Managing Big Files" +msgstr "" + +#: templates/help.php:11 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:23 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:24 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:32 +msgid "Answer" +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 "Desktop and Mobile Syncing Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download" +msgstr "" + +#: templates/personal.php:19 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "නූතන මුරපදය" + +#: templates/personal.php:22 +msgid "New password" +msgstr "නව මුරපදය" + +#: templates/personal.php:23 +msgid "show" +msgstr "ප්රදර්ශනය කිරීම" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "මුරපදය වෙනස් කිරීම" + +#: templates/personal.php:30 +msgid "Email" +msgstr "" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "භාෂාව" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:76 +msgid "Name" +msgstr "නාමය" + +#: templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "මුරපදය" + +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +msgid "Groups" +msgstr "සමූහය" + +#: templates/users.php:32 +msgid "Create" +msgstr "තනනවා" + +#: templates/users.php:35 +msgid "Default Quota" +msgstr "" + +#: templates/users.php:55 templates/users.php:138 +msgid "Other" +msgstr "" + +#: templates/users.php:80 templates/users.php:112 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:82 +msgid "Quota" +msgstr "" + +#: templates/users.php:146 +msgid "Delete" +msgstr "මකා දමනවා" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..8279ec5bca5bcee9e81a440a202869fb986df2a9 --- /dev/null +++ b/l10n/si_LK/user_ldap.po @@ -0,0 +1,170 @@ +# 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: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: si_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "Host" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:9 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:9 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:10 +msgid "User DN" +msgstr "" + +#: templates/settings.php:10 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:11 +msgid "Password" +msgstr "" + +#: templates/settings.php:11 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:12 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:13 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:13 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:13 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:14 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:14 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:14 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:17 +msgid "Port" +msgstr "" + +#: templates/settings.php:18 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:19 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:20 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:21 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:21 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:22 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:23 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:23 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:23 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:24 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:24 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:25 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:25 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:27 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:29 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 +msgid "Help" +msgstr "" diff --git a/l10n/sk_SK/admin_dependencies_chk.po b/l10n/sk_SK/admin_dependencies_chk.po deleted file mode 100644 index 1381cc2a7f5a90adcb2c03ff0623ab84f4796b5a..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/sk_SK/admin_migrate.po b/l10n/sk_SK/admin_migrate.po deleted file mode 100644 index 00e8e196c080d9dcf2e365565c0472645ec3305b..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/sk_SK/bookmarks.po b/l10n/sk_SK/bookmarks.po deleted file mode 100644 index 1f1343ccd6ae06d45c77fe98424b349d4eefed2b..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/sk_SK/calendar.po b/l10n/sk_SK/calendar.po deleted file mode 100644 index 9b560742022a5108084498e3612e6acaa2771264..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <intense.feel@gmail.com>, 2011, 2012. -# Roman Priesol <roman@priesol.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Nenašiel sa žiadny kalendár." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Nenašla sa žiadna udalosť." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Zlý kalendár" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nová časová zóna:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Časové pásmo zmenené" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Neplatná požiadavka" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalendár" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM rrrr" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "d. MMM[ yyyy]{ '—' d.[ MMM] yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, rrrr" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Narodeniny" - -#: lib/app.php:122 -msgid "Business" -msgstr "Podnikanie" - -#: lib/app.php:123 -msgid "Call" -msgstr "Hovor" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klienti" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Doručovateľ" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Prázdniny" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Nápady" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Cesta" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubileá" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Stretnutia" - -#: lib/app.php:131 -msgid "Other" -msgstr "Ostatné" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Osobné" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekty" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Otázky" - -#: lib/app.php:135 -msgid "Work" -msgstr "Práca" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "nepomenovaný" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nový kalendár" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Neopakovať" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Denne" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Týždenne" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Každý deň v týždni" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Každý druhý týždeň" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mesačne" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Ročne" - -#: lib/object.php:388 -msgid "never" -msgstr "nikdy" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "podľa výskytu" - -#: lib/object.php:390 -msgid "by date" -msgstr "podľa dátumu" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "podľa dňa v mesiaci" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "podľa dňa v týždni" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Pondelok" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Utorok" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Streda" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Štvrtok" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Piatok" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Sobota" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Nedeľa" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "týždenné udalosti v mesiaci" - -#: lib/object.php:428 -msgid "first" -msgstr "prvý" - -#: lib/object.php:429 -msgid "second" -msgstr "druhý" - -#: lib/object.php:430 -msgid "third" -msgstr "tretí" - -#: lib/object.php:431 -msgid "fourth" -msgstr "štvrtý" - -#: lib/object.php:432 -msgid "fifth" -msgstr "piaty" - -#: lib/object.php:433 -msgid "last" -msgstr "posledný" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Január" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Február" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Marec" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Apríl" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Máj" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Jún" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Júl" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "August" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Október" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "December" - -#: lib/object.php:488 -msgid "by events date" -msgstr "podľa dátumu udalosti" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "po dňoch" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "podľa čísel týždňov" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "podľa dňa a mesiaca" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Dátum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Celý deň" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Nevyplnené položky" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Nadpis" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Od dátumu" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Od času" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Do dátumu" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Do času" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Udalosť končí ešte pred tým než začne" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Nastala chyba databázy" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Týždeň" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mesiac" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Zoznam" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Dnes" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Vaše kalendáre" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav odkaz" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Zdielané kalendáre" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Žiadne zdielané kalendáre" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Zdielať kalendár" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Stiahnuť" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Upraviť" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Odstrániť" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "zdielané s vami používateľom" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nový kalendár" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Upraviť kalendár" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Zobrazené meno" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktívne" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Farba kalendáru" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Uložiť" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Odoslať" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Zrušiť" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Upraviť udalosť" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportovať" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informácie o udalosti" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Opakovanie" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Účastníci" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Zdielať" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Nadpis udalosti" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategória" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Kategórie oddelené čiarkami" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Úprava kategórií" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Celodenná udalosť" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Od" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Do" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Pokročilé možnosti" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Poloha" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Poloha udalosti" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Popis" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Popis udalosti" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Opakovať" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Pokročilé" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Do času" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Vybrať dni" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "a denné udalosti v roku." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "a denné udalosti v mesiaci." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Vybrať mesiace" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Vybrať týždne" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "a týždenné udalosti v roku." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Interval" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Koniec" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "výskyty" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "vytvoriť nový kalendár" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importovať súbor kalendára" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Meno nového kalendára" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importovať" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Zatvoriť dialóg" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Vytvoriť udalosť" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Zobraziť udalosť" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Žiadne vybraté kategórie" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "z" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "v" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Časová zóna" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Používatelia" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "vybrať používateľov" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Upravovateľné" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Skupiny" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "vybrať skupiny" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "zverejniť" diff --git a/l10n/sk_SK/contacts.po b/l10n/sk_SK/contacts.po deleted file mode 100644 index d66125ae02cd287506ff17f49060dcffbdbd3aa9..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <intense.feel@gmail.com>, 2012. -# Roman Priesol <roman@priesol.net>, 2012. -# <zixo@zixo.sk>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Chyba (de)aktivácie adresára." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID nie je nastavené." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Nedá sa upraviť adresár s prázdnym menom." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Chyba aktualizácie adresára." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "ID nezadané" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Chyba pri nastavovaní kontrolného súčtu." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Žiadne kategórie neboli vybraté na odstránenie." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Žiadny adresár nenájdený." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Žiadne kontakty nenájdené." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Vyskytla sa chyba pri pridávaní kontaktu." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "meno elementu nie je nastavené." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Nemôžem pridať prázdny údaj." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Musí byť uvedený aspoň jeden adresný údaj." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Pokúšate sa pridať rovnaký atribút:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informácie o vCard sú neplatné. Prosím obnovte stránku." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Chýba ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Chyba pri vyňatí ID z VCard:" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "kontrolný súčet nie je nastavený." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informácia o vCard je nesprávna. Obnovte stránku, prosím." - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Niečo sa pokazilo." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Nebolo nastavené ID kontaktu." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Chyba pri čítaní fotky kontaktu." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Chyba pri ukladaní dočasného súboru." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Načítaná fotka je vadná." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Chýba ID kontaktu." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Žiadna fotka nebola poslaná." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Súbor neexistuje:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Chyba pri nahrávaní obrázka." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Chyba počas prevzatia objektu kontakt." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Chyba počas získavania fotky." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Chyba počas ukladania kontaktu." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Chyba počas zmeny obrázku." - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Chyba počas orezania obrázku." - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Chyba počas vytvárania dočasného obrázku." - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Chyba vyhľadania obrázku: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Chyba pri ukladaní kontaktov na úložisko." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Nevyskytla sa žiadna chyba, súbor úspešne uložené." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Ukladaný súbor prekračuje nastavenie upload_max_filesize v php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Ukladaný súbor sa nahral len čiastočne" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Žiadny súbor nebol uložený" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Chýba dočasný priečinok" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Nemôžem uložiť dočasný obrázok: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Nemôžem načítať dočasný obrázok: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kontakty" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Bohužiaľ, táto funkcia ešte nebola implementovaná" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Neimplementované" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Nemôžem získať platnú adresu." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Chyba" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Tento parameter nemôže byť prázdny." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Nemôžem previesť prvky." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' zavolané bez argument. Prosím oznámte chybu na bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Upraviť meno" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Žiadne súbory neboli vybrané k nahratiu" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Súbor, ktorý sa pokúšate nahrať, presahuje maximálnu povolenú veľkosť." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Vybrať typ" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Výsledok: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " importovaných, " - -#: js/loader.js:49 -msgid " failed." -msgstr " zlyhaných." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Toto nie je váš adresár." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontakt nebol nájdený." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Práca" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Domov" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Iné" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "SMS" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Odkazová schránka" - -#: lib/app.php:205 -msgid "Message" -msgstr "Správa" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pager" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Narodeniny" - -#: lib/app.php:253 -msgid "Business" -msgstr "Biznis" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Klienti" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Prázdniny" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Stretnutie" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projekty" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Otázky" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "Narodeniny {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Pridať Kontakt." - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importovať" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adresáre" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Zatvoriť" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Klávesové skratky" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navigácia" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Ďalší kontakt v zozname" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Predchádzajúci kontakt v zozname" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Akcie" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Obnov zoznam kontaktov" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Pridaj nový kontakt" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Pridaj nový adresár" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Vymaž súčasný kontakt" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Pretiahnite sem fotku pre nahratie" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Odstrániť súčasnú fotku" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Upraviť súčasnú fotku" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Nahrať novú fotku" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Vybrať fotku z ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Formát vlastný, krátke meno, celé meno, obrátené alebo obrátené s čiarkami" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Upraviť podrobnosti mena" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizácia" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Odstrániť" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Prezývka" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Zadajte prezývku" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd. mm. yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Skupiny" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Oddelte skupiny čiarkami" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Úprava skupín" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Uprednostňované" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Prosím zadajte platnú e-mailovú adresu." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Zadajte e-mailové adresy" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Odoslať na adresu" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Odstrániť e-mailové adresy" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Zadajte telefónne číslo" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Odstrániť telefónne číslo" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Zobraziť na mape" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Upraviť podrobnosti adresy" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Tu môžete pridať poznámky." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Pridať pole" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefón" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresa" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Poznámka" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Stiahnuť kontakt" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Odstrániť kontakt" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Dočasný obrázok bol odstránený z cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Upraviť adresu" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Typ" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "PO Box" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Ulica" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Ulica a číslo" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Rozšírené" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Mesto" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Región" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "PSČ" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "PSČ" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Krajina" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adresár" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Tituly pred" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Slečna" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Pani" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Pán" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Sir" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Pani" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Krstné meno" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Ďalšie mená" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Priezvisko" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Tituly za" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "JUDr." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "MUDr." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Ph.D." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "ml." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "st." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importovať súbor kontaktu" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Prosím zvolte adresár" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "vytvoriť nový adresár" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Meno nového adresára" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importovanie kontaktov" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Nemáte žiadne kontakty v adresári." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Pridať kontakt" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Zadaj meno" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "Adresy pre synchronizáciu s CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "viac informácií" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Predvolená adresa (Kontakt etc)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Stiahnuť" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Upraviť" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nový adresár" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Uložiť" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Zrušiť" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 719062c78705498867a66d0f5c51282604a6e887..9b9f32fcde8d3ea97dc5bd77f9535fe6251e372d 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.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-10-10 02:04+0200\n" -"PO-Revision-Date: 2012-10-09 18:37+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 18:51+0000\n" "Last-Translator: martinb <martin.babik@gmail.com>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -32,55 +32,55 @@ msgstr "Žiadna kategória pre pridanie?" msgid "This category already exists: " msgstr "Táto kategória už existuje:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Január" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Február" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Marec" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Apríl" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Máj" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Jún" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Júl" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "August" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "September" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Október" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "November" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "December" @@ -149,7 +149,8 @@ msgstr "Zdieľať cez odkaz" msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Heslo" @@ -187,7 +188,7 @@ msgstr "Zrušiť zdieľanie" #: js/share.js:283 msgid "can edit" -msgstr "" +msgstr "môže upraviť" #: js/share.js:285 msgid "access control" @@ -241,8 +242,8 @@ msgstr "Požiadané" msgid "Login failed!" msgstr "Prihlásenie zlyhalo!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Prihlasovacie meno" @@ -302,48 +303,73 @@ msgstr "Úprava kategórií" msgid "Add" msgstr "Pridať" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Bezpečnostné varovanie" + #: 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 "Vytvoriť <strong>administrátorský účet</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Priečinok dát" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Nastaviť databázu" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Dokončiť inštaláciu" @@ -355,15 +381,29 @@ msgstr "webové služby pod vašou kontrolou" msgid "Log out" msgstr "Odhlásiť" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "Automatické prihlásenie bolo zamietnuté!" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "zapamätať" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Prihlásiť sa" @@ -378,3 +418,17 @@ msgstr "späť" #: templates/part.pagenavi.php:20 msgid "next" msgstr "ďalej" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "Bezpečnostné varovanie!" + +#: 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 "Overenie" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 471364ef5e6f37dd16ced65a7c0a75ec9806e463..3891cc5d5087808a2ffc8f4457a2041dabc442da 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/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-10-02 02:02+0200\n" -"PO-Revision-Date: 2012-10-01 08:38+0000\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 18:54+0000\n" "Last-Translator: martinb <martin.babik@gmail.com>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -66,39 +66,39 @@ msgstr "Odstrániť" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" msgstr "už existuje" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:190 +#: js/filelist.js:192 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" msgstr "zmenené" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:241 +#: js/filelist.js:243 msgid "with" msgstr "s" -#: js/filelist.js:273 +#: js/filelist.js:275 msgid "unshared" msgstr "zdielané" -#: js/filelist.js:275 +#: js/filelist.js:277 msgid "deleted" msgstr "zmazané" @@ -106,112 +106,112 @@ msgstr "zmazané" msgid "generating ZIP-file, it may take some time." msgstr "generujem ZIP-súbor, môže to chvíľu trvať." -#: js/files.js:208 +#: js/files.js:214 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:208 +#: js/files.js:214 msgid "Upload Error" -msgstr "Chyba nahrávania" +msgstr "Chyba odosielania" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "Čaká sa" -#: js/files.js:256 +#: js/files.js:262 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" msgstr "súbory sa posielajú" -#: js/files.js:322 js/files.js:355 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." -msgstr "Nahrávanie zrušené" +msgstr "Odosielanie zrušené" -#: js/files.js:424 +#: js/files.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:494 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." msgstr "Chybný názov, \"/\" nie je povolené" -#: js/files.js:668 +#: js/files.js:681 msgid "files scanned" msgstr "skontrolovaných súborov" -#: js/files.js:676 +#: js/files.js:689 msgid "error while scanning" msgstr "chyba počas kontroly" -#: js/files.js:749 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "Meno" -#: js/files.js:750 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "Veľkosť" -#: js/files.js:751 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "Upravené" -#: js/files.js:778 +#: js/files.js:791 msgid "folder" msgstr "priečinok" -#: js/files.js:780 +#: js/files.js:793 msgid "folders" msgstr "priečinky" -#: js/files.js:788 +#: js/files.js:801 msgid "file" msgstr "súbor" -#: js/files.js:790 +#: js/files.js:803 msgid "files" msgstr "súbory" -#: js/files.js:834 +#: js/files.js:847 msgid "seconds ago" msgstr "pred sekundami" -#: js/files.js:835 +#: js/files.js:848 msgid "minute ago" msgstr "pred minútou" -#: js/files.js:836 +#: js/files.js:849 msgid "minutes ago" msgstr "pred minútami" -#: js/files.js:839 +#: js/files.js:852 msgid "today" msgstr "dnes" -#: js/files.js:840 +#: js/files.js:853 msgid "yesterday" msgstr "včera" -#: js/files.js:841 +#: js/files.js:854 msgid "days ago" msgstr "pred pár dňami" -#: js/files.js:842 +#: js/files.js:855 msgid "last month" msgstr "minulý mesiac" -#: js/files.js:844 +#: js/files.js:857 msgid "months ago" msgstr "pred mesiacmi" -#: js/files.js:845 +#: js/files.js:858 msgid "last year" msgstr "minulý rok" -#: js/files.js:846 +#: js/files.js:859 msgid "years ago" msgstr "pred rokmi" @@ -265,7 +265,7 @@ msgstr "Z url" #: templates/index.php:20 msgid "Upload" -msgstr "Nahrať" +msgstr "Odoslať" #: templates/index.php:27 msgid "Cancel upload" @@ -295,7 +295,7 @@ msgstr "Súbory ktoré sa snažíte nahrať presahujú maximálnu veľkosť pre #: templates/index.php:82 msgid "Files are being scanned, please wait." -msgstr "Súbory sa práve prehľadávajú, prosím čakajte." +msgstr "Čakajte, súbory sú prehľadávané.." #: templates/index.php:85 msgid "Current scanning" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 627d7e866fc3ad713fc5abc7f60c93b85b6b3555..81c509ecd5ba0ef39267fcdc0a91cf3b77faa568 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-10 02:04+0200\n" -"PO-Revision-Date: 2012-10-09 18:56+0000\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 18:49+0000\n" "Last-Translator: martinb <martin.babik@gmail.com>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Prístup povolený" #: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Chyba pri konfigurácii úložiska Dropbox" #: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 msgid "Grant access" diff --git a/l10n/sk_SK/files_odfviewer.po b/l10n/sk_SK/files_odfviewer.po deleted file mode 100644 index b5e846e37f63cae7e879fc0a6632799abe12d879..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/sk_SK/files_pdfviewer.po b/l10n/sk_SK/files_pdfviewer.po deleted file mode 100644 index aee04e4ec7e3ac65cad8c53843e20573fbbceecd..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/sk_SK/files_texteditor.po b/l10n/sk_SK/files_texteditor.po deleted file mode 100644 index af94e6a125dd1ffeec84e4e40a23dac6347d2143..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/sk_SK/gallery.po b/l10n/sk_SK/gallery.po deleted file mode 100644 index 2f6336c77c636307581e7cad1413da0dc95c0229..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/gallery.po +++ /dev/null @@ -1,96 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <intense.feel@gmail.com>, 2012. -# Roman Priesol <roman@priesol.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "Obrázky" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "nastavenia" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Znovu oskenovať" - -#: templates/index.php:17 -msgid "Stop" -msgstr "Zastaviť" - -#: templates/index.php:18 -msgid "Share" -msgstr "Zdielať" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Späť" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Potvrdenie odstránenia" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Chcete odstrániť album?" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Zmeniť meno albumu" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Nové meno albumu" diff --git a/l10n/sk_SK/impress.po b/l10n/sk_SK/impress.po deleted file mode 100644 index 940f3f6325b23d7d51c2de307edabc0f90c4021e..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 1a98bd0de2add69f3a575940a30c50f71f39fa4a..302f88071b422879ce1a03099a8c9e6336fff169 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 11:28+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 18:57+0000\n" "Last-Translator: martinb <martin.babik@gmail.com>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -42,19 +42,19 @@ msgstr "Aplikácie" msgid "Admin" msgstr "Správca" -#: files.php:309 +#: files.php:328 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: files.php:310 +#: files.php:329 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: files.php:310 files.php:335 +#: files.php:329 files.php:354 msgid "Back to Files" msgstr "Späť na súbory" -#: files.php:334 +#: files.php:353 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliž veľké na vygenerovanie zip súboru." @@ -62,7 +62,7 @@ msgstr "Zvolené súbory sú príliž veľké na vygenerovanie zip súboru." msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: json.php:39 json.php:63 json.php:75 +#: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" msgstr "Chyba autentifikácie" @@ -72,7 +72,7 @@ msgstr "" #: template.php:87 msgid "seconds ago" -msgstr "" +msgstr "pred sekundami" #: template.php:88 msgid "1 minute ago" @@ -112,15 +112,15 @@ msgstr "minulý rok" msgid "years ago" msgstr "pred rokmi" -#: updater.php:66 +#: updater.php:75 #, php-format msgid "%s is available. Get <a href=\"%s\">more information</a>" msgstr "" -#: updater.php:68 +#: updater.php:77 msgid "up to date" msgstr "aktuálny" -#: updater.php:71 +#: updater.php:80 msgid "updates check is disabled" msgstr "sledovanie aktualizácií je vypnuté" diff --git a/l10n/sk_SK/media.po b/l10n/sk_SK/media.po deleted file mode 100644 index 1c692c89de739337a76a83c970e333d4ffaf4bb0..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Roman Priesol <roman@priesol.net>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.net/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Hudba" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Prehrať" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pauza" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Predchádzajúce" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Ďalšie" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Stlmiť" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Nahlas" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Znovu skenovať zbierku" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Umelec" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Názov" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 44fb0c7a548d4a3d3a0833d938bdfa3ba5514967..5c413bc82d702c10e860be02ee66af66246ff2c0 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-10 02:05+0200\n" -"PO-Revision-Date: 2012-10-09 18:37+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 19:10+0000\n" "Last-Translator: martinb <martin.babik@gmail.com>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -25,16 +25,11 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie je možné nahrať zoznam z App Store" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 -msgid "Authentication error" -msgstr "Chyba pri autentifikácii" - -#: ajax/creategroup.php:19 +#: ajax/creategroup.php:12 msgid "Group already exists" msgstr "Skupina už existuje" -#: ajax/creategroup.php:28 +#: ajax/creategroup.php:21 msgid "Unable to add group" msgstr "Nie je možné pridať skupinu" @@ -62,7 +57,11 @@ msgstr "Neplatná požiadavka" msgid "Unable to delete group" msgstr "Nie je možné zmazať skupinu" -#: ajax/removeuser.php:22 +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "Chyba pri autentifikácii" + +#: ajax/removeuser.php:27 msgid "Unable to delete user" msgstr "Nie je možné zmazať užívateľa" @@ -92,7 +91,7 @@ msgstr "Povoliť" msgid "Saving..." msgstr "Ukladám..." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "Slovensky" @@ -107,7 +106,7 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Váš priečinok s dátami a vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera." #: templates/admin.php:31 msgid "Cron" @@ -197,7 +196,7 @@ msgstr "Vyberte aplikáciu" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "Pozrite si stránku aplikácie na apps.owncloud.com" +msgstr "Pozrite si stránku aplikácií na apps.owncloud.com" #: templates/apps.php:32 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" @@ -209,7 +208,7 @@ msgstr "Dokumentácia" #: templates/help.php:10 msgid "Managing Big Files" -msgstr "Spravovanie veľké súbory" +msgstr "Správa veľkých súborov" #: templates/help.php:11 msgid "Ask a question" @@ -217,7 +216,7 @@ msgstr "Opýtajte sa otázku" #: templates/help.php:23 msgid "Problems connecting to help database." -msgstr "Problémy spojené s pomocnou databázou." +msgstr "Problémy s pripojením na databázu pomocníka." #: templates/help.php:24 msgid "Go there manually." @@ -246,7 +245,7 @@ msgstr "Heslo bolo zmenené" #: templates/personal.php:20 msgid "Unable to change your password" -msgstr "Nedokážem zmeniť vaše heslo" +msgstr "Nie je možné zmeniť vaše heslo" #: templates/personal.php:21 msgid "Current password" diff --git a/l10n/sk_SK/tasks.po b/l10n/sk_SK/tasks.po deleted file mode 100644 index 2ea079cbf6967e9ba8b4e9c6857fb6e96bad5400..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/sk_SK/user_migrate.po b/l10n/sk_SK/user_migrate.po deleted file mode 100644 index 49ca2414b0df446ca0e18f78de6a2ffc524e8688..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/sk_SK/user_openid.po b/l10n/sk_SK/user_openid.po deleted file mode 100644 index 56440f66cc3e14d8e031346c2a293a7313f5b68e..0000000000000000000000000000000000000000 --- a/l10n/sk_SK/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/sl/admin_dependencies_chk.po b/l10n/sl/admin_dependencies_chk.po deleted file mode 100644 index f60a8e1d14f891a8dc6cf75956719c0588ed3e6f..0000000000000000000000000000000000000000 --- a/l10n/sl/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Peter Peroša <peter.perosa@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-17 00:44+0200\n" -"PO-Revision-Date: 2012-08-16 20:55+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Modul php-json je potreben za medsebojno komunikacijo veliko aplikacij." - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Modul php-curl je potreben za pridobivanje naslova strani pri dodajanju zaznamkov." - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Modul php-gd je potreben za ustvarjanje sličic za predogled." - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Modul php-ldap je potreben za povezavo z vašim ldap strežnikom." - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Modul php-zip je potreben za prenašanje večih datotek hkrati." - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Modul php-mb_multibyte je potreben za pravilno upravljanje kodiranja." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Modul php-ctype je potreben za preverjanje veljavnosti podatkov." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Modul php-xml je potreben za izmenjavo datotek preko protokola WebDAV." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "Direktiva allow_url_fopen v vaši php.ini datoteki mora biti nastavljena na 1, če želite omogočiti dostop do zbirke znanja na strežnikih OCS." - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Modul php-pdo je potreben za shranjevanje ownCloud podatkov v podatkovno zbirko." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Stanje odvisnosti" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Uporablja:" diff --git a/l10n/sl/admin_migrate.po b/l10n/sl/admin_migrate.po deleted file mode 100644 index 5a600890b7152f97657c1e8006e41210e58effaa..0000000000000000000000000000000000000000 --- a/l10n/sl/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Peter Peroša <peter.perosa@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 00:17+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Izvozi to ownCloud namestitev" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Ustvarjena bo stisnjena datoteka s podatki te ownCloud namestitve.\n Prosimo, če izberete vrsto izvoza:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Izvozi" diff --git a/l10n/sl/bookmarks.po b/l10n/sl/bookmarks.po deleted file mode 100644 index 7a522308d46266c6b1dd9d38968a4b037cf1b23e..0000000000000000000000000000000000000000 --- a/l10n/sl/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Peter Peroša <peter.perosa@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" -"PO-Revision-Date: 2012-07-28 02:18+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Zaznamki" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "neimenovano" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Povlecite to povezavo med zaznamke v vašem brskalniku in jo, ko želite ustvariti zaznamek trenutne strani, preprosto kliknite:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Preberi kasneje" - -#: templates/list.php:13 -msgid "Address" -msgstr "Naslov" - -#: templates/list.php:14 -msgid "Title" -msgstr "Ime" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Oznake" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Shrani zaznamek" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Nimate zaznamkov" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Bookmarklet <br />" diff --git a/l10n/sl/calendar.po b/l10n/sl/calendar.po deleted file mode 100644 index 8d2ba48009e4c886b4a70584dd8f50161b7e43b9..0000000000000000000000000000000000000000 --- a/l10n/sl/calendar.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <blaz.lapanja@gmail.com>, 2012. -# <peter.perosa@gmail.com>, 2012. -# Peter Peroša <peter.perosa@gmail.com>, 2012. -# <urossolar@hotmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 13:25+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Vsi koledarji niso povsem predpomnjeni" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Izgleda, da je vse v predpomnilniku" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Ni bilo najdenih koledarjev." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Ni bilo najdenih dogodkov." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Napačen koledar" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Datoteka ni vsebovala dogodkov ali pa so vsi dogodki že shranjeni v koledarju." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "dogodki so bili shranjeni v nov koledar" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Uvoz je spodletel" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "dogodki so bili shranjeni v vaš koledar" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Nov časovni pas:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Časovni pas je bil spremenjen" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Neveljaven zahtevek" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Koledar" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Rojstni dan" - -#: lib/app.php:122 -msgid "Business" -msgstr "Poslovno" - -#: lib/app.php:123 -msgid "Call" -msgstr "Pokliči" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Stranke" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Dobavitelj" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Dopust" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideje" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Potovanje" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Obletnica" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Sestanek" - -#: lib/app.php:131 -msgid "Other" -msgstr "Ostalo" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Osebno" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekt" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Vprašanja" - -#: lib/app.php:135 -msgid "Work" -msgstr "Delo" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "od" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "neimenovan" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Nov koledar" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Se ne ponavlja" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Dnevno" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Tedensko" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Vsak dan v tednu" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Dvakrat tedensko" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Mesečno" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Letno" - -#: lib/object.php:388 -msgid "never" -msgstr "nikoli" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "po številu dogodkov" - -#: lib/object.php:390 -msgid "by date" -msgstr "po datumu" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "po dnevu v mesecu" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "po dnevu v tednu" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "ponedeljek" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "torek" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "sreda" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "četrtek" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "petek" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "sobota" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "nedelja" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "dogodki tedna v mesecu" - -#: lib/object.php:428 -msgid "first" -msgstr "prvi" - -#: lib/object.php:429 -msgid "second" -msgstr "drugi" - -#: lib/object.php:430 -msgid "third" -msgstr "tretji" - -#: lib/object.php:431 -msgid "fourth" -msgstr "četrti" - -#: lib/object.php:432 -msgid "fifth" -msgstr "peti" - -#: lib/object.php:433 -msgid "last" -msgstr "zadnji" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "januar" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "februar" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "marec" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "april" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "maj" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "junij" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "julij" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "avgust" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "september" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "november" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "december" - -#: lib/object.php:488 -msgid "by events date" -msgstr "po datumu dogodka" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "po številu let" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "po tednu v letu" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "po dnevu in mesecu" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Datum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kol." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "ned." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "pon." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "tor." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "sre." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "čet." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "pet." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "sob." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "jan." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "feb." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "apr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "maj" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "jun." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "avg." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "sep." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "okt." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "dec." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Cel dan" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Mankajoča polja" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Naslov" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "od Datum" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "od Čas" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "do Datum" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "do Čas" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Dogodek se konča preden se začne" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Napaka v podatkovni zbirki" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Teden" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mesec" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Seznam" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Danes" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "Nastavitve" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Vaši koledarji" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav povezava" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Koledarji v souporabi" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Ni koledarjev v souporabi" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Daj koledar v souporabo" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Prenesi" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Uredi" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Izbriši" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "z vami souporablja" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nov koledar" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Uredi koledar" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Ime za prikaz" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktivno" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Barva koledarja" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Shrani" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Potrdi" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Prekliči" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Uredi dogodek" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Izvozi" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Informacije od dogodku" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Ponavljanja" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Udeleženci" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Souporaba" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Naslov dogodka" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategorija" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Kategorije ločite z vejico" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Uredi kategorije" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Celodnevni dogodek" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Od" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Do" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Napredne možnosti" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Kraj" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Kraj dogodka" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Opis" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Opis dogodka" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Ponovi" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Napredno" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Izberite dneve v tednu" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Izberite dneve" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "in dnevu dogodka v letu." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "in dnevu dogodka v mesecu." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Izberite mesece" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Izberite tedne" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "in tednu dogodka v letu." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Časovni razmik" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Konec" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "ponovitev" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Ustvari nov koledar" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Uvozi datoteko koledarja" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Prosimo, če izberete koledar" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Ime novega koledarja" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Izberite prosto ime!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Koledar s tem imenom že obstaja. Če nadaljujete, bosta koledarja združena." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Uvozi" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Zapri dialog" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Ustvari nov dogodek" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Poglej dogodek" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Nobena kategorija ni izbrana" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "od" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "pri" - -#: templates/settings.php:10 -msgid "General" -msgstr "Splošno" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Časovni pas" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "Samodejno posodobi časovni pas" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "Oblika zapisa časa" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24ur" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12ur" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "Začni teden z" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Predpomnilnik" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Počisti predpomnilnik za ponavljajoče dogodke" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URLji" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "CalDAV naslov za usklajevanje koledarjev" - -#: templates/settings.php:87 -msgid "more info" -msgstr "dodatne informacije" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Glavni naslov (Kontakt et al)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "iCalendar povezava/e samo za branje" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Uporabniki" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "izberite uporabnike" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Možno urejanje" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Skupine" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "izberite skupine" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "objavi" diff --git a/l10n/sl/contacts.po b/l10n/sl/contacts.po deleted file mode 100644 index a31210ca6e1f190f0cbc0fac4cca52f5378f272a..0000000000000000000000000000000000000000 --- a/l10n/sl/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <peter.perosa@gmail.com>, 2012. -# Peter Peroša <peter.perosa@gmail.com>, 2012. -# <urossolar@hotmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 09:09+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Napaka med (de)aktivacijo imenika." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id ni nastavljen." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Ne morem posodobiti imenika s praznim imenom." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Napaka pri posodabljanju imenika." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "ID ni bil podan" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Napaka pri nastavljanju nadzorne vsote." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Nobena kategorija ni bila izbrana za izbris." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Ni bilo najdenih imenikov." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Ni bilo najdenih stikov." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Med dodajanjem stika je prišlo do napake" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "ime elementa ni nastavljeno." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Ne morem razčleniti stika:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Ne morem dodati prazne lastnosti." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Vsaj eno izmed polj je še potrebno izpolniti." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Poskušam dodati podvojeno lastnost:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "Manjkajoč IM parameter." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "Neznan IM:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Informacije o vCard niso pravilne. Prosimo, če ponovno naložite stran." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Manjkajoč ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Napaka pri razčlenjevanju VCard za ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "nadzorna vsota ni nastavljena." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informacija o vCard je napačna. Prosimo, če ponovno naložite stran: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Nekaj je šlo v franže. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "ID stika ni bil poslan." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Napaka pri branju slike stika." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Napaka pri shranjevanju začasne datoteke." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Slika, ki se nalaga ni veljavna." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Manjka ID stika." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Pot slike ni bila poslana." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Datoteka ne obstaja:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Napaka pri nalaganju slike." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Napaka pri pridobivanju kontakta predmeta." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Napaka pri pridobivanju lastnosti fotografije." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Napaka pri shranjevanju stika." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Napaka pri spreminjanju velikosti slike" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Napaka pri obrezovanju slike" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Napaka pri ustvarjanju začasne slike" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Napaka pri iskanju datoteke: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Napaka pri nalaganju stikov v hrambo." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Datoteka je bila uspešno naložena." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Naložena datoteka presega velikost, ki jo določa parameter upload_max_filesize v datoteki php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Datoteka je bila le delno naložena" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Nobena datoteka ni bila naložena" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Manjka začasna mapa" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Začasne slike ni bilo mogoče shraniti: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Začasne slike ni bilo mogoče naložiti: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Nobena datoteka ni bila naložena. Neznana napaka" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Stiki" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Žal ta funkcionalnost še ni podprta" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Ni podprto" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Ne morem dobiti veljavnega naslova." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Napaka" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "Nimate dovoljenja za dodajanje stikov v" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Prosimo, če izberete enega izmed vaših adresarjev." - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Napaka dovoljenj" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Ta lastnost ne sme biti prazna" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Predmetov ni bilo mogoče dati v zaporedje." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "\"deleteProperty\" je bila klicana brez vrste argumenta. Prosimo, če oddate poročilo o napaki na bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Uredi ime" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Nobena datoteka ni bila izbrana za nalaganje." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Datoteka, ki jo poskušate naložiti, presega največjo dovoljeno velikost za nalaganje na tem strežniku." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Napaka pri nalaganju slike profila." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Izberite vrsto" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Nekateri stiki so označeni za izbris, vendar še niso izbrisani. Prosimo, če počakate na njihov izbris." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Ali želite združiti adresarje?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Rezultati: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " uvoženih, " - -#: js/loader.js:49 -msgid " failed." -msgstr " je spodletelo." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Ime za prikaz ne more biti prazno." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Adresar ni bil najden:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "To ni vaš imenik." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Stika ni bilo mogoče najti." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Delo" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Doma" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Drugo" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobilni telefon" - -#: lib/app.php:203 -msgid "Text" -msgstr "Besedilo" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Glas" - -#: lib/app.php:205 -msgid "Message" -msgstr "Sporočilo" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faks" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pozivnik" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Rojstni dan" - -#: lib/app.php:253 -msgid "Business" -msgstr "Poslovno" - -#: lib/app.php:254 -msgid "Call" -msgstr "Klic" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Stranka" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Dostavljalec" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Prazniki" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Ideje" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Potovanje" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubilej" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Sestanek" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Osebno" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projekti" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Vprašanja" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name} - rojstni dan" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Stik" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "Nimate dovoljenj za urejanje tega stika." - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "Nimate dovoljenj za izbris tega stika." - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Dodaj stik" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Uvozi" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Nastavitve" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Imeniki" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Zapri" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Bližnjice na tipkovnici" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Krmarjenje" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Naslednji stik na seznamu" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Predhodni stik na seznamu" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Razširi/skrči trenutni adresar" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Naslednji adresar" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Predhodni adresar" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Dejanja" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Osveži seznam stikov" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Dodaj nov stik" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Dodaj nov adresar" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Izbriši trenutni stik" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Spustite sliko tukaj, da bi jo naložili" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Izbriši trenutno sliko" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Uredi trenutno sliko" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Naloži novo sliko" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Izberi sliko iz ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Format po meri, Kratko ime, Polno ime, Obratno ali Obratno z vejico" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Uredite podrobnosti imena" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizacija" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Izbriši" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Vzdevek" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Vnesite vzdevek" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Spletna stran" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.nekastran.si" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Pojdi na spletno stran" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd. mm. yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Skupine" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Skupine ločite z vejicami" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Uredi skupine" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Prednosten" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Prosimo, če navedete veljaven e-poštni naslov." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Vnesite e-poštni naslov" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "E-pošta naslovnika" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Izbriši e-poštni naslov" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Vpiši telefonsko številko" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Izbriši telefonsko številko" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Takojšni sporočilnik" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Izbriši IM" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Prikaz na zemljevidu" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Uredi podrobnosti" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Opombe dodajte tukaj." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Dodaj polje" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-pošta" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Neposredno sporočanje" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Naslov" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Opomba" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Prenesi stik" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Izbriši stik" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Začasna slika je bila odstranjena iz predpomnilnika." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Uredi naslov" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Vrsta" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Poštni predal" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Ulični naslov" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Ulica in štelika" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Razširjeno" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Številka stanovanja itd." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Mesto" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regija" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Npr. dežela ali pokrajina" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Poštna št." - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Poštna številka" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Dežela" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Imenik" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Predpone" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "gdč." - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "ga." - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "g." - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "g." - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "ga." - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "dr." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Ime" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Dodatna imena" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Priimek" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Pripone" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "univ. dipl. prav." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "dr. med." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "dr. med., spec. spl. med." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "dr. med., spec. kiropraktike" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "dr." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "mlajši" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "starejši" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Uvozi datoteko s stiki" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Prosimo, če izberete imenik" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Ustvari nov imenik" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Ime novega imenika" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Uvažam stike" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "V vašem imeniku ni stikov." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Dodaj stik" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Izberite adresarje" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Vnesite ime" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Vnesite opis" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV naslovi za sinhronizacijo" - -#: templates/settings.php:3 -msgid "more info" -msgstr "več informacij" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Primarni naslov (za kontakt et al)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Pokaži CardDav povezavo" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Pokaži VCF povezavo samo za branje" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Souporaba" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Prenesi" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Uredi" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Nov imenik" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Ime" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Opis" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Shrani" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Prekliči" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Več..." diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 278ba738e13f6314622f4fb9a4334c106b778889..1a771160cf272f2f2446191f34c600d21c20f20e 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -32,55 +32,55 @@ msgstr "Ni kategorije za dodajanje?" msgid "This category already exists: " msgstr "Ta kategorija že obstaja:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "januar" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "februar" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "marec" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "april" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "maj" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "junij" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "julij" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "avgust" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "september" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "oktober" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "november" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "december" @@ -108,8 +108,8 @@ msgstr "V redu" msgid "No categories selected for deletion." msgstr "Za izbris ni bila izbrana nobena kategorija." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Napaka" @@ -149,7 +149,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Geslo" @@ -185,39 +186,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -241,12 +242,12 @@ msgstr "Zahtevano" msgid "Login failed!" msgstr "Prijava je spodletela!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Uporabniško Ime" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Zahtevaj ponastavitev" @@ -302,52 +303,77 @@ msgstr "Uredi kategorije" msgid "Add" msgstr "Dodaj" +#: 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 "Ustvari <strong>skrbniški račun</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Napredne možnosti" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Mapa s podatki" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Uporabnik zbirke" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Dokončaj namestitev" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" @@ -355,15 +381,29 @@ msgstr "spletne storitve pod vašim nadzorom" msgid "Log out" msgstr "Odjava" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Ste pozabili vaše geslo?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "Zapomni si me" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Prijava" @@ -378,3 +418,17 @@ msgstr "nazaj" #: templates/part.pagenavi.php:20 msgid "next" msgstr "naprej" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/sl/files_odfviewer.po b/l10n/sl/files_odfviewer.po deleted file mode 100644 index 700c0daba96449e234cde16381f22a6e8ba9d8b7..0000000000000000000000000000000000000000 --- a/l10n/sl/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/sl/files_pdfviewer.po b/l10n/sl/files_pdfviewer.po deleted file mode 100644 index 3a16e21f409f9cc800ece553eba0fb59e263739b..0000000000000000000000000000000000000000 --- a/l10n/sl/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/sl/files_texteditor.po b/l10n/sl/files_texteditor.po deleted file mode 100644 index 4358bfa979dbd2ad927858a36bc7eb2712a85bb0..0000000000000000000000000000000000000000 --- a/l10n/sl/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/sl/gallery.po b/l10n/sl/gallery.po deleted file mode 100644 index f9c47144b658d14003c6ddb2bf6c4b8481c77fc6..0000000000000000000000000000000000000000 --- a/l10n/sl/gallery.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <blaz.lapanja@gmail.com>, 2012. -# <peter.perosa@gmail.com>, 2012. -# Peter Peroša <peter.perosa@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-29 02:03+0200\n" -"PO-Revision-Date: 2012-07-28 02:03+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Slike" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Daj galerijo v souporabo" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Napaka: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Notranja napaka" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "predstavitev" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Nazaj" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Odstrani potrditev" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Ali želite odstraniti album" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Spremeni ime albuma" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Novo ime albuma" diff --git a/l10n/sl/impress.po b/l10n/sl/impress.po deleted file mode 100644 index 5d45e6c4fbe1703f359e818a0160b3a6bc7b94be..0000000000000000000000000000000000000000 --- a/l10n/sl/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/sl/media.po b/l10n/sl/media.po deleted file mode 100644 index f33402c979ac667936a12c7510006a88454c4468..0000000000000000000000000000000000000000 --- a/l10n/sl/media.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <peter.perosa@gmail.com>, 2012. -# <urossolar@hotmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.net/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Glasba" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Predvajaj" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Premor" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Prejšnja" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Naslednja" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Utišaj" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Povrni glasnost" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Ponovno preišči zbirko" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Izvajalec" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Naslov" diff --git a/l10n/sl/tasks.po b/l10n/sl/tasks.po deleted file mode 100644 index ac56c8067ff6a0f7075751c987a3091aded4c028..0000000000000000000000000000000000000000 --- a/l10n/sl/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Peter Peroša <peter.perosa@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-22 02:04+0200\n" -"PO-Revision-Date: 2012-08-21 11:22+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Neveljaven datum/čas" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Opravila" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Ni kategorije" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Nedoločen" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=najvišje" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=srednje" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=najnižje" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Prazen povzetek" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Neveljaven odstotek dokončanja" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Neveljavna prednost" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Dodaj opravilo" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Razvrsti po roku" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Razvrsti v seznam" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Razvrsti po zaključenosti" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Razvrsti po lokacijah" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Razvrsti po prednosti" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Razvrsti po oznakah" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Nalagam opravila..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Pomembno" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Več" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Manj" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Izbriši" diff --git a/l10n/sl/user_migrate.po b/l10n/sl/user_migrate.po deleted file mode 100644 index ec8deacf770a99e7b669e4c191547ca04cb9a5a5..0000000000000000000000000000000000000000 --- a/l10n/sl/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Peter Peroša <peter.perosa@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 13:17+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Izvozi" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Med ustvarjanjem datoteke za izvoz je prišlo do napake" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Prišlo je do napake" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Izvozi vaš uporabniški račun" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Ustvarjena bo stisnjena datoteka z vašim ownCloud računom." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Uvozi uporabniški račun" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "Zip datoteka ownCloud uporabnika" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Uvozi" diff --git a/l10n/sl/user_openid.po b/l10n/sl/user_openid.po deleted file mode 100644 index 38b10648491f1c71f2a381c1f130a18270838b91..0000000000000000000000000000000000000000 --- a/l10n/sl/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Peter Peroša <peter.perosa@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-16 02:04+0200\n" -"PO-Revision-Date: 2012-08-15 00:29+0000\n" -"Last-Translator: Peter Peroša <peter.perosa@gmail.com>\n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "To je OpenID strežniška končna točka. Za več informacij si oglejte" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identiteta: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Področje: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Uporabnik:" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Prijava" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Napaka: <b>Uporabnik ni bil izbran" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "s tem naslovom se lahko overite tudi na drugih straneh" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Odobren ponudnik OpenID" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Vaš naslov pri Wordpress, Identi.ca, …" diff --git a/l10n/so/admin_dependencies_chk.po b/l10n/so/admin_dependencies_chk.po deleted file mode 100644 index 2d1d442a09bbfebe85f57405181681a2432430b9..0000000000000000000000000000000000000000 --- a/l10n/so/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/so/admin_migrate.po b/l10n/so/admin_migrate.po deleted file mode 100644 index 2f3aebc46ea8cb24c51f517661f5f0d644447552..0000000000000000000000000000000000000000 --- a/l10n/so/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/so/bookmarks.po b/l10n/so/bookmarks.po deleted file mode 100644 index 63be2e28018e6cfa32c20567268df2c76f510da5..0000000000000000000000000000000000000000 --- a/l10n/so/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/so/calendar.po b/l10n/so/calendar.po deleted file mode 100644 index eb308550f953db9dec42bc03c43f267585d684d1..0000000000000000000000000000000000000000 --- a/l10n/so/calendar.po +++ /dev/null @@ -1,813 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "" - -#: lib/app.php:122 -msgid "Business" -msgstr "" - -#: lib/app.php:123 -msgid "Call" -msgstr "" - -#: lib/app.php:124 -msgid "Clients" -msgstr "" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "" - -#: lib/app.php:131 -msgid "Other" -msgstr "" - -#: lib/app.php:132 -msgid "Personal" -msgstr "" - -#: lib/app.php:133 -msgid "Projects" -msgstr "" - -#: lib/app.php:134 -msgid "Questions" -msgstr "" - -#: lib/app.php:135 -msgid "Work" -msgstr "" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "" - -#: lib/object.php:373 -msgid "Daily" -msgstr "" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "" - -#: templates/calendar.php:41 -msgid "List" -msgstr "" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/so/contacts.po b/l10n/so/contacts.po deleted file mode 100644 index 2e9f2b1c0ddb220ff5e373959242d683f8973ad7..0000000000000000000000000000000000000000 --- a/l10n/so/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/so/core.po b/l10n/so/core.po index 399a26593ac1629ac77f84937a24288656cc1472..b7723cd0820fcd458f97a8b5c7474601bbe0ff3a 100644 --- a/l10n/so/core.po +++ b/l10n/so/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" "MIME-Version: 1.0\n" @@ -29,55 +29,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -105,8 +105,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -182,39 +183,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -238,12 +239,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -299,52 +300,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/so/files_odfviewer.po b/l10n/so/files_odfviewer.po deleted file mode 100644 index 614758a322f689a2711d95b795fe2ce6e3fbd873..0000000000000000000000000000000000000000 --- a/l10n/so/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/so/files_pdfviewer.po b/l10n/so/files_pdfviewer.po deleted file mode 100644 index 05e648c741f4eb88812422b10764874a6404583a..0000000000000000000000000000000000000000 --- a/l10n/so/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/so/files_texteditor.po b/l10n/so/files_texteditor.po deleted file mode 100644 index aa6aad47d716d9eda3875fb0cfc5c605dd65a2f0..0000000000000000000000000000000000000000 --- a/l10n/so/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/so/gallery.po b/l10n/so/gallery.po deleted file mode 100644 index e520c32b94841c39dc609ff075ee87cd6be2c914..0000000000000000000000000000000000000000 --- a/l10n/so/gallery.po +++ /dev/null @@ -1,58 +0,0 @@ -# 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: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:30+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/so/impress.po b/l10n/so/impress.po deleted file mode 100644 index 47c6506daecdbdcadec9422781e140b30c5f6197..0000000000000000000000000000000000000000 --- a/l10n/so/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/so/media.po b/l10n/so/media.po deleted file mode 100644 index ed91c8d409b13b975c1ff312f6b3cdb79b447fee..0000000000000000000000000000000000000000 --- a/l10n/so/media.po +++ /dev/null @@ -1,66 +0,0 @@ -# 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: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "" - -#: templates/music.php:5 -msgid "Previous" -msgstr "" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "" - -#: templates/music.php:7 -msgid "Mute" -msgstr "" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "" - -#: templates/music.php:37 -msgid "Artist" -msgstr "" - -#: templates/music.php:38 -msgid "Album" -msgstr "" - -#: templates/music.php:39 -msgid "Title" -msgstr "" diff --git a/l10n/so/tasks.po b/l10n/so/tasks.po deleted file mode 100644 index 3b036ed9b2ba5ec79f895bc2fdc21f7bbf61e2f6..0000000000000000000000000000000000000000 --- a/l10n/so/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/so/user_migrate.po b/l10n/so/user_migrate.po deleted file mode 100644 index 40d3c1c0733f1718e246c6a15183c00d3538e0dd..0000000000000000000000000000000000000000 --- a/l10n/so/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/so/user_openid.po b/l10n/so/user_openid.po deleted file mode 100644 index 2001365d2d263617c4b869b285da46093a20a6b8..0000000000000000000000000000000000000000 --- a/l10n/so/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Somali (http://www.transifex.com/projects/p/owncloud/language/so/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: so\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/sr/admin_dependencies_chk.po b/l10n/sr/admin_dependencies_chk.po deleted file mode 100644 index bc9e8912ee74cd309d00939bbf366f89a1522cd7..0000000000000000000000000000000000000000 --- a/l10n/sr/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/sr/admin_migrate.po b/l10n/sr/admin_migrate.po deleted file mode 100644 index 13be5b1a58b6a9c04107107fa8ffd740c0c240f3..0000000000000000000000000000000000000000 --- a/l10n/sr/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/sr/bookmarks.po b/l10n/sr/bookmarks.po deleted file mode 100644 index c0abe8d98b9c6053ce4dac236c6988fe6b8f89e3..0000000000000000000000000000000000000000 --- a/l10n/sr/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/sr/calendar.po b/l10n/sr/calendar.po deleted file mode 100644 index 4e95b27e79332d5ea16203bfa1351137b490a013..0000000000000000000000000000000000000000 --- a/l10n/sr/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Slobodan Terzić <githzerai06@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Погрешан календар" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Временска зона је промењена" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Неисправан захтев" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Календар" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Рођендан" - -#: lib/app.php:122 -msgid "Business" -msgstr "Посао" - -#: lib/app.php:123 -msgid "Call" -msgstr "Позив" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Клијенти" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Достављач" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Празници" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Идеје" - -#: lib/app.php:128 -msgid "Journey" -msgstr "путовање" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "јубилеј" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Састанак" - -#: lib/app.php:131 -msgid "Other" -msgstr "Друго" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Лично" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Пројекти" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Питања" - -#: lib/app.php:135 -msgid "Work" -msgstr "Посао" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Нови календар" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Не понавља се" - -#: lib/object.php:373 -msgid "Daily" -msgstr "дневно" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "недељно" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "сваког дана у недељи" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "двонедељно" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "месечно" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "годишње" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Цео дан" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Наслов" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Недеља" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Месец" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Списак" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Данас" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "КалДав веза" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Преузми" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Уреди" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Обриши" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Нови календар" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Уреди календар" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Приказаноиме" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Активан" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Боја календара" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Сними" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Пошаљи" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Откажи" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Уреди догађај" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Наслов догађаја" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Категорија" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Целодневни догађај" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Од" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "До" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Локација" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Локација догађаја" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Опис" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Опис догађаја" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Понављај" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Направи нови догађај" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Временска зона" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/sr/contacts.po b/l10n/sr/contacts.po deleted file mode 100644 index 9b88aad65bc70174abb8d610bb51a55f1a4652e8..0000000000000000000000000000000000000000 --- a/l10n/sr/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Slobodan Terzić <githzerai06@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Подаци о вКарти су неисправни. Поново учитајте страницу." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Контакти" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Ово није ваш адресар." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Контакт се не може наћи." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Посао" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Кућа" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Мобилни" - -#: lib/app.php:203 -msgid "Text" -msgstr "Текст" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Глас" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Факс" - -#: lib/app.php:207 -msgid "Video" -msgstr "Видео" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Пејџер" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Рођендан" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Контакт" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Додај контакт" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Адресар" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Организација" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Обриши" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Пожељан" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Телефон" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Е-маил" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Адреса" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Преузми контакт" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Обриши контакт" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Тип" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Поштански број" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Прошири" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Град" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Регија" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Зип код" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Земља" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Адресар" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Преузимање" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Уреди" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Нови адресар" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Сними" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Откажи" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index eaeee371618d5924e43359cd1dd0a2f523d566f9..79b292785c852e4d248188d8b588e33040d9f74c 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Подешавања" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -106,8 +106,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Лозинка" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "Захтевано" msgid "Login failed!" msgstr "Несупела пријава!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Корисничко име" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Захтевај ресетовање" @@ -300,52 +301,77 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "Направи <strong>административни налог</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Подешавање базе" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Заврши подешавање" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "веб сервиси под контролом" @@ -353,15 +379,29 @@ msgstr "веб сервиси под контролом" msgid "Log out" msgstr "Одјава" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "упамти" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Пријава" @@ -376,3 +416,17 @@ msgstr "претходно" #: templates/part.pagenavi.php:20 msgid "next" msgstr "следеће" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/sr/files_odfviewer.po b/l10n/sr/files_odfviewer.po deleted file mode 100644 index 9b251f5769fb3cd8d9c48c303fc8a360a3a99a7d..0000000000000000000000000000000000000000 --- a/l10n/sr/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/sr/files_pdfviewer.po b/l10n/sr/files_pdfviewer.po deleted file mode 100644 index 2cd94b83aa0b5ea13d05ddc71dd206992e22906f..0000000000000000000000000000000000000000 --- a/l10n/sr/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/sr/files_texteditor.po b/l10n/sr/files_texteditor.po deleted file mode 100644 index d7e1815f9a3d8761974166870464b80d92e5c9ef..0000000000000000000000000000000000000000 --- a/l10n/sr/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/sr/gallery.po b/l10n/sr/gallery.po deleted file mode 100644 index befc9958cc5e7028c06d1fdc7a0d0ff082fe3657..0000000000000000000000000000000000000000 --- a/l10n/sr/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Slobodan Terzić <githzerai06@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Претражи поново" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Назад" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/sr/impress.po b/l10n/sr/impress.po deleted file mode 100644 index 230778dd99df70d89e7d195851d37ae658cff875..0000000000000000000000000000000000000000 --- a/l10n/sr/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/sr/media.po b/l10n/sr/media.po deleted file mode 100644 index 49f28998de20b8902bc06b394182b554b0219b65..0000000000000000000000000000000000000000 --- a/l10n/sr/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Slobodan Terzić <githzerai06@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Музика" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Пусти" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Паузирај" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Претходна" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Следећа" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Искључи звук" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Укључи звук" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Поново претражи збирку" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Извођач" - -#: templates/music.php:38 -msgid "Album" -msgstr "Албум" - -#: templates/music.php:39 -msgid "Title" -msgstr "Наслов" diff --git a/l10n/sr/tasks.po b/l10n/sr/tasks.po deleted file mode 100644 index d20e414436bca6e1283e636d2f0179e9aecd7075..0000000000000000000000000000000000000000 --- a/l10n/sr/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/sr/user_migrate.po b/l10n/sr/user_migrate.po deleted file mode 100644 index 9c6020b5fc4a8f263c42728d2c82e45929ce09bc..0000000000000000000000000000000000000000 --- a/l10n/sr/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/sr/user_openid.po b/l10n/sr/user_openid.po deleted file mode 100644 index a5de6c42c8d85a541547f099ca3064083fa0e1b8..0000000000000000000000000000000000000000 --- a/l10n/sr/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/sr@latin/admin_dependencies_chk.po b/l10n/sr@latin/admin_dependencies_chk.po deleted file mode 100644 index 826e736f5e3f3f78684a4e3cf1df44cbd966a6e2..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/sr@latin/admin_migrate.po b/l10n/sr@latin/admin_migrate.po deleted file mode 100644 index b76fec786a60ddd671cd3371efa50820ea219704..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/sr@latin/bookmarks.po b/l10n/sr@latin/bookmarks.po deleted file mode 100644 index e78fc1875ccdae07c1865c079fbf2d57231af368..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/sr@latin/calendar.po b/l10n/sr@latin/calendar.po deleted file mode 100644 index fd13b07471facf4ad2e08f4a3893474242150842..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Slobodan Terzić <githzerai06@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Pogrešan kalendar" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Vremenska zona je promenjena" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Neispravan zahtev" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalendar" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Rođendan" - -#: lib/app.php:122 -msgid "Business" -msgstr "Posao" - -#: lib/app.php:123 -msgid "Call" -msgstr "Poziv" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klijenti" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Dostavljač" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Praznici" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ideje" - -#: lib/app.php:128 -msgid "Journey" -msgstr "putovanje" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "jubilej" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Sastanak" - -#: lib/app.php:131 -msgid "Other" -msgstr "Drugo" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Lično" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekti" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Pitanja" - -#: lib/app.php:135 -msgid "Work" -msgstr "Posao" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Novi kalendar" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Ne ponavlja se" - -#: lib/object.php:373 -msgid "Daily" -msgstr "dnevno" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "nedeljno" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "svakog dana u nedelji" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "dvonedeljno" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "mesečno" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "godišnje" - -#: lib/object.php:388 -msgid "never" -msgstr "" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "" - -#: lib/object.php:429 -msgid "second" -msgstr "" - -#: lib/object.php:430 -msgid "third" -msgstr "" - -#: lib/object.php:431 -msgid "fourth" -msgstr "" - -#: lib/object.php:432 -msgid "fifth" -msgstr "" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "" - -#: lib/search.php:43 -msgid "Cal." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Ceo dan" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Naslov" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Nedelja" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Mesec" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Spisak" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Danas" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "KalDav veza" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Preuzmi" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Uredi" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Obriši" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Novi kalendar" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Uredi kalendar" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Prikazanoime" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktivan" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Boja kalendara" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Snimi" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Pošalji" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Otkaži" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Uredi događaj" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Naslov događaja" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategorija" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Celodnevni događaj" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Od" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Do" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Lokacija" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Lokacija događaja" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Opis" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Opis događaja" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Ponavljaj" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Napravi novi događaj" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Vremenska zona" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "" - -#: templates/settings.php:58 -msgid "12h" -msgstr "" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/sr@latin/contacts.po b/l10n/sr@latin/contacts.po deleted file mode 100644 index 826a00d5e68e5fa9d40df80f2899d8c10362cd07..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Slobodan Terzić <githzerai06@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Podaci o vKarti su neispravni. Ponovo učitajte stranicu." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Ovo nije vaš adresar." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontakt se ne može naći." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Posao" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Kuća" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobilni" - -#: lib/app.php:203 -msgid "Text" -msgstr "Tekst" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Glas" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faks" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Pejdžer" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Rođendan" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Dodaj kontakt" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizacija" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Obriši" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-mail" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adresa" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Poštanski broj" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Proširi" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Grad" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Regija" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Zip kod" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Zemlja" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Uredi" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index cd06b0f3b2c7e5c3d6a332762c83112aca8ec2c1..760ce1d3314fe668fed3cffb175674693806400a 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -30,55 +30,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "" @@ -106,8 +106,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "" @@ -147,7 +147,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Lozinka" @@ -183,39 +184,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -239,12 +240,12 @@ msgstr "Zahtevano" msgid "Login failed!" msgstr "Nesupela prijava!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Korisničko ime" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Zahtevaj resetovanje" @@ -300,52 +301,77 @@ msgstr "" 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 "Napravi <strong>administrativni nalog</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Facikla podataka" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Podešavanje baze" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "će biti korišćen" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Završi podešavanje" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "" @@ -353,15 +379,29 @@ msgstr "" msgid "Log out" msgstr "Odjava" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "upamti" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -376,3 +416,17 @@ msgstr "prethodno" #: templates/part.pagenavi.php:20 msgid "next" msgstr "sledeće" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/sr@latin/files_odfviewer.po b/l10n/sr@latin/files_odfviewer.po deleted file mode 100644 index 3bd414595db270ffcdb32a499c39f7c9982fff94..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/sr@latin/files_pdfviewer.po b/l10n/sr@latin/files_pdfviewer.po deleted file mode 100644 index c63e430bcb118409f8c9d0b2c7d3a06f7a51beff..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/sr@latin/files_texteditor.po b/l10n/sr@latin/files_texteditor.po deleted file mode 100644 index a3902531ee561667ebd9fd70d8c66d0cc0d00828..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/sr@latin/gallery.po b/l10n/sr@latin/gallery.po deleted file mode 100644 index 7ff467f6837c2e6168ae75dc93a0b70a159a9cd1..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/gallery.po +++ /dev/null @@ -1,94 +0,0 @@ -# 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: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/sr@latin/impress.po b/l10n/sr@latin/impress.po deleted file mode 100644 index 7d751ecd400125554802ccceca12d71a601318ef..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/sr@latin/media.po b/l10n/sr@latin/media.po deleted file mode 100644 index 4bbe1bb1bce688950afdfd91e91a63652738ea20..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Slobodan Terzić <githzerai06@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Muzika" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Pusti" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Pauziraj" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Prethodna" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Sledeća" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Isključi zvuk" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Uključi zvuk" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Ponovo pretraži zbirku" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Izvođač" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Naslov" diff --git a/l10n/sr@latin/tasks.po b/l10n/sr@latin/tasks.po deleted file mode 100644 index c4dff86e0a6bb5c4274964f174134436a9339d7c..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/sr@latin/user_migrate.po b/l10n/sr@latin/user_migrate.po deleted file mode 100644 index 198d0844fdda0be0617f57561ab6fb4a60d4dd4a..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/sr@latin/user_openid.po b/l10n/sr@latin/user_openid.po deleted file mode 100644 index 0c9792f1bb04a2f51328cbea4413046031495c56..0000000000000000000000000000000000000000 --- a/l10n/sr@latin/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/sv/admin_dependencies_chk.po b/l10n/sv/admin_dependencies_chk.po deleted file mode 100644 index daf145daa7d575401d1a3ad07da2278acd6e9237..0000000000000000000000000000000000000000 --- a/l10n/sv/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Magnus Höglund <magnus@linux.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 10:16+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "Modulen php-json behövs av många applikationer som interagerar." - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "Modulen php-curl behövs för att hämta sidans titel när du lägger till bokmärken." - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "Modulen php-gd behövs för att skapa miniatyrer av dina bilder." - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "Modulen php-ldap behövs för att ansluta mot din ldapserver." - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "Modulen php-zip behövs för att kunna ladda ner flera filer på en gång." - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "Modulen php-mb_multibyte behövs för att hantera korrekt teckenkodning." - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "Modulen php-ctype behövs för att validera data." - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "Modulen php-xml behövs för att kunna dela filer med webdav." - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "Direktivet allow_url_fopen i php.ini bör sättas till 1 för att kunna hämta kunskapsbasen från OCS-servrar." - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "Modulen php-pdo behövs för att kunna lagra ownCloud data i en databas." - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "Beroenden status" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "Används av:" diff --git a/l10n/sv/admin_migrate.po b/l10n/sv/admin_migrate.po deleted file mode 100644 index 68573f422149278245265004bcb57f0de3167bf5..0000000000000000000000000000000000000000 --- a/l10n/sv/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Magnus Höglund <magnus@linux.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 09:53+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "Exportera denna instans av ownCloud" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "Detta kommer att skapa en komprimerad fil som innehåller all data från denna instans av ownCloud.\n Välj exporttyp:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "Exportera" diff --git a/l10n/sv/bookmarks.po b/l10n/sv/bookmarks.po deleted file mode 100644 index cd3fb598dab51037dffa7f0e99b1268b36c9cfbd..0000000000000000000000000000000000000000 --- a/l10n/sv/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <magnus@linux.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-30 02:02+0200\n" -"PO-Revision-Date: 2012-07-29 20:39+0000\n" -"Last-Translator: maghog <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "Bokmärken" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "namnlös" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "Dra till din webbläsares bokmärken och klicka på det när du vill bokmärka en webbsida snabbt:" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "Läs senare" - -#: templates/list.php:13 -msgid "Address" -msgstr "Adress" - -#: templates/list.php:14 -msgid "Title" -msgstr "Titel" - -#: templates/list.php:15 -msgid "Tags" -msgstr "Taggar" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "Spara bokmärke" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "Du har inga bokmärken" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Skriptbokmärke <br />" diff --git a/l10n/sv/calendar.po b/l10n/sv/calendar.po deleted file mode 100644 index 1d0bf4409095db02537427f6b3e47e98306361a7..0000000000000000000000000000000000000000 --- a/l10n/sv/calendar.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Christer Eriksson <post@hc3web.com>, 2012. -# Daniel Sandman <revoltism@gmail.com>, 2012. -# <magnus@linux.com>, 2012. -# <revoltism@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Alla kalendrar är inte fullständigt sparade i cache" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Allt verkar vara fullständigt sparat i cache" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Inga kalendrar funna" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Inga händelser funna." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Fel kalender" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Filen innehöll inga händelser eller så är alla händelser redan sparade i kalendern." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "händelser har sparats i den nya kalendern" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "Misslyckad import" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "händelse har sparats i din kalender" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Ny tidszon:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Tidszon ändrad" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Ogiltig begäran" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Kalender" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM åååå" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "ddd, MMM d, åååå" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Födelsedag" - -#: lib/app.php:122 -msgid "Business" -msgstr "Företag" - -#: lib/app.php:123 -msgid "Call" -msgstr "Ringa" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Klienter" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Leverantör" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Semester" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Idéer" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Resa" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Jubileum" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Möte" - -#: lib/app.php:131 -msgid "Other" -msgstr "Annat" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Personlig" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projekt" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Frågor" - -#: lib/app.php:135 -msgid "Work" -msgstr "Arbetet" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "av" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "Namn saknas" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Ny kalender" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Upprepas inte" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Dagligen" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Varje vecka" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Varje vardag" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Varannan vecka" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Varje månad" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Årligen" - -#: lib/object.php:388 -msgid "never" -msgstr "aldrig" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "efter händelser" - -#: lib/object.php:390 -msgid "by date" -msgstr "efter datum" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "efter dag i månaden" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "efter veckodag" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Måndag" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Tisdag" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Onsdag" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Torsdag" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Fredag" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Lördag" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Söndag" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "händelse vecka av månad" - -#: lib/object.php:428 -msgid "first" -msgstr "första" - -#: lib/object.php:429 -msgid "second" -msgstr "andra" - -#: lib/object.php:430 -msgid "third" -msgstr "tredje" - -#: lib/object.php:431 -msgid "fourth" -msgstr "fjärde" - -#: lib/object.php:432 -msgid "fifth" -msgstr "femte" - -#: lib/object.php:433 -msgid "last" -msgstr "sist" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Januari" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Februari" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Mars" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "April" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Maj" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Juni" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Juli" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Augusti" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "September" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Oktober" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "November" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "December" - -#: lib/object.php:488 -msgid "by events date" -msgstr "efter händelsedatum" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "efter årsdag(ar)" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "efter veckonummer" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "efter dag och månad" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Datum" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Kal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Sön." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Mån." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Tis." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Ons." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Tor." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Fre." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Lör." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Jan." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Feb." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Apr." - -#: templates/calendar.php:8 -msgid "May." -msgstr "Maj." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Jun." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Jul." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Aug." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Sep." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Okt." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Nov." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Dec." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Hela dagen" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Saknade fält" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Rubrik" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Från datum" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Från tid" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Till datum" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Till tid" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Händelsen slutar innan den börjar" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Det blev ett databasfel" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Vecka" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Månad" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Lista" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Idag" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Dina kalendrar" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDAV-länk" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Delade kalendrar" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Inga delade kalendrar" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Dela kalender" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Ladda ner" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Redigera" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Radera" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "delad med dig av" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Nya kalender" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Redigera kalender" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Visningsnamn" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktiv" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Kalender-färg" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Spara" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Lägg till" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Avbryt" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Redigera en händelse" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Exportera" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Händelseinfo" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Repetera" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Deltagare" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Dela" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Rubrik för händelsen" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategori" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Separera kategorier med komman" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Redigera kategorier" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Hela dagen" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Från" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Till" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Avancerade alternativ" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Plats" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Platsen för händelsen" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Beskrivning" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Beskrivning av händelse" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Upprepa" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Avancerad" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Välj veckodagar" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Välj dagar" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "och händelsedagen för året." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "och händelsedagen för månaden." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Välj månader" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Välj veckor" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "och händelsevecka för året." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Hur ofta" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Slut" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "Händelser" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "skapa en ny kalender" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Importera en kalenderfil" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Välj en kalender" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Namn på ny kalender" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Ta ett ledigt namn!" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "En kalender med detta namn finns redan. Om du fortsätter ändå så kommer dessa kalendrar att slås samman." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Importera" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Stäng " - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Skapa en ny händelse" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Visa en händelse" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Inga kategorier valda" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "av" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "på" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Tidszon" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Cache" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Töm cache för upprepade händelser" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "Kalender CalDAV synkroniserar adresser" - -#: templates/settings.php:87 -msgid "more info" -msgstr "mer info" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Primary address (Kontact et al)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Read only iCalendar link(s)" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Användare" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "välj användare" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Redigerbar" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Grupper" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "Välj grupper" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "Gör offentlig" diff --git a/l10n/sv/contacts.po b/l10n/sv/contacts.po deleted file mode 100644 index 635ea51f8eb3240cd7f7f3370db7dcd182783050..0000000000000000000000000000000000000000 --- a/l10n/sv/contacts.po +++ /dev/null @@ -1,958 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Christer Eriksson <post@hc3web.com>, 2012. -# Daniel Sandman <revoltism@gmail.com>, 2012. -# Magnus Höglund <magnus@linux.com>, 2012. -# <magnus@linux.com>, 2012. -# <revoltism@gmail.com>, 2011, 2012. -# <tscooter@hotmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 07:00+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Fel (av)aktivera adressbok." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ID är inte satt." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Kan inte uppdatera adressboken med ett tomt namn." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Fel uppstod när adressbok skulle uppdateras." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Inget ID angett" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "Fel uppstod när kontrollsumma skulle sättas." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Inga kategorier valda för borttaging" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Ingen adressbok funnen." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Inga kontakter funna." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Det uppstod ett fel när kontakten skulle läggas till." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "elementnamn ej angett." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Kunde inte läsa kontakt:" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Kan inte lägga till en tom egenskap." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Minst ett fält måste fyllas i." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Försöker lägga till dubblett:" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "IM parameter saknas." - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "Okänt IM:" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "Information om vCard är felaktigt. Vänligen ladda om sidan." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "ID saknas" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "Fel vid läsning av VCard för ID: \"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "kontrollsumma är inte satt." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "Informationen om vCard är fel. Ladda om sidan:" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Något gick fel." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Inget kontakt-ID angavs." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Fel uppstod vid läsning av kontaktfoto." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Fel uppstod när temporär fil skulle sparas." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Det laddade fotot är inte giltigt." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Kontakt-ID saknas." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Ingen sökväg till foto angavs." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Filen existerar inte." - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Fel uppstod när bild laddades." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Fel vid hämtning av kontakt." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Fel vid hämtning av egenskaper för FOTO." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Fel vid sparande av kontakt." - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Fel vid storleksförändring av bilden" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Fel vid beskärning av bilden" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Fel vid skapande av tillfällig bild" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Kunde inte hitta bild:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Fel uppstod när kontakt skulle lagras." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Inga fel uppstod. Filen laddades upp utan problem." - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet i php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Den uppladdade filen var bara delvist uppladdad" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Ingen fil laddades upp" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "En temporär mapp saknas" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Kunde inte spara tillfällig bild:" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Kunde inte ladda tillfällig bild:" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Ingen fil uppladdad. Okänt fel" - -#: appinfo/app.php:25 -msgid "Contacts" -msgstr "Kontakter" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Tyvärr är denna funktion inte införd än" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Inte införd" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Kunde inte hitta en giltig adress." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Fel" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "Du saknar behörighet att skapa kontakter i" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "Välj en av dina egna adressböcker." - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "Behörighetsfel" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Denna egenskap får inte vara tom." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Kunde inte serialisera element." - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "\"deleteProperty\" anropades utan typargument. Vänligen rapportera till bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "Ändra namn" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Inga filer valda för uppladdning" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Filen du försöker ladda upp är större än den maximala storleken för filuppladdning på denna server." - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "Fel vid hämtning av profilbild." - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Välj typ" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "Vissa kontakter är markerade för radering, men är inte raderade än. Vänta tills dom är raderade." - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "Vill du slå samman dessa adressböcker?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Resultat:" - -#: js/loader.js:49 -msgid " imported, " -msgstr "importerad," - -#: js/loader.js:49 -msgid " failed." -msgstr "misslyckades." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "Visningsnamn får inte vara tomt." - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "Adressboken hittades inte:" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Det här är inte din adressbok." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kontakt kunde inte hittas." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "Jabber" - -#: lib/app.php:121 -msgid "AIM" -msgstr "AIM" - -#: lib/app.php:126 -msgid "MSN" -msgstr "MSN" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "Twitter" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "GoogleTalk" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "Facebook" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "XMPP" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "ICQ" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "Yahoo" - -#: lib/app.php:161 -msgid "Skype" -msgstr "Skype" - -#: lib/app.php:166 -msgid "QQ" -msgstr "QQ" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "GaduGadu" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Arbete" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Hem" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Annat" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Text" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Röst" - -#: lib/app.php:205 -msgid "Message" -msgstr "Meddelande" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Personsökare" - -#: lib/app.php:215 -msgid "Internet" -msgstr "Internet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Födelsedag" - -#: lib/app.php:253 -msgid "Business" -msgstr "Företag" - -#: lib/app.php:254 -msgid "Call" -msgstr "Ring" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Kunder" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Leverera" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Helgdagar" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Idéer" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Resa" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Jubileum" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Möte" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Privat" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projekt" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Frågor" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name}'s födelsedag" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kontakt" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "Du saknar behörighet för att ändra denna kontakt." - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "Du saknar behörighet för att radera denna kontakt." - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Lägg till kontakt" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "Importera" - -#: templates/index.php:18 -msgid "Settings" -msgstr "Inställningar" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adressböcker" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Stäng" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Kortkommandon" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Navigering" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Nästa kontakt i listan" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Föregående kontakt i listan" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Visa/dölj aktuell adressbok" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "Nästa adressbok" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "Föregående adressbok" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Åtgärder" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Uppdatera kontaktlistan" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Lägg till ny kontakt" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Lägg till ny adressbok" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Radera denna kontakt" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Släpp foto för att ladda upp" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Ta bort aktuellt foto" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Redigera aktuellt foto" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Ladda upp ett nytt foto" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "Välj foto från ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr " anpassad, korta namn, hela namn, bakåt eller bakåt med komma" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "Redigera detaljer för namn" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organisation" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Radera" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Smeknamn" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Ange smeknamn" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Webbplats" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Gå till webbplats" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-åååå" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Grupper" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Separera grupperna med kommatecken" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Editera grupper" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Föredragen" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Vänligen ange en giltig e-postadress." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Ange e-postadress" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Posta till adress." - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Ta bort e-postadress" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Ange telefonnummer" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Ta bort telefonnummer" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "Instant Messenger" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "Radera IM" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Visa på karta" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Redigera detaljer för adress" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Lägg till noteringar här." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Lägg till fält" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "E-post" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "Instant Messaging" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adress" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Notering" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Ladda ner kontakt" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Radera kontakt" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Den tillfälliga bilden har raderats från cache." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Editera adress" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Typ" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Postbox" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Gatuadress" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Gata och nummer" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Utökad" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Lägenhetsnummer" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Stad" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Län" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "T.ex. stat eller provins" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Postnummer" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Postnummer" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Land" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adressbok" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Ledande titlar" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Fröken" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Fru" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Herr" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Herr" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Fru" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Förnamn" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "Mellannamn" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Efternamn" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Efterställda titlar" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "Kand. Jur." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Fil.dr." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Importera en kontaktfil" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Vänligen välj adressboken" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "skapa en ny adressbok" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Namn för ny adressbok" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Importerar kontakter" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Du har inga kontakter i din adressbok." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Lägg till en kontakt" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Välj adressböcker" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "Ange namn" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Ange beskrivning" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV synkningsadresser" - -#: templates/settings.php:3 -msgid "more info" -msgstr "mer information" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Primär adress (Kontakt o.a.)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "Visa CardDav-länk" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "Visa skrivskyddad VCF-länk" - -#: templates/settings.php:26 -msgid "Share" -msgstr "Dela" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Nedladdning" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Redigera" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Ny adressbok" - -#: templates/settings.php:44 -msgid "Name" -msgstr "Namn" - -#: templates/settings.php:45 -msgid "Description" -msgstr "Beskrivning" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Spara" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Avbryt" - -#: templates/settings.php:52 -msgid "More..." -msgstr "Mer..." diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 1eaf985129e8fda82fd660d4440ba071c9d5ffac..6c2844d64539f2a56efc0e37278ff9df06ec38b8 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-30 02:02+0200\n" -"PO-Revision-Date: 2012-09-29 11:11+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,55 +35,55 @@ msgstr "Ingen kategori att lägga till?" msgid "This category already exists: " msgstr "Denna kategori finns redan:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Inställningar" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Januari" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Februari" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Mars" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "April" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Maj" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Juni" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Juli" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Augusti" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "September" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Oktober" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "November" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "December" @@ -111,8 +111,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Inga kategorier valda för radering." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Fel" @@ -152,7 +152,8 @@ msgstr "Delad med länk" msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Lösenord" @@ -188,39 +189,39 @@ msgstr "med" msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "kan redigera" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "skapa" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "uppdatera" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "radera" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "dela" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" @@ -244,8 +245,8 @@ msgstr "Begärd" msgid "Login failed!" msgstr "Misslyckad inloggning!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Användarnamn" @@ -305,52 +306,77 @@ msgstr "Redigera kategorier" msgid "Add" msgstr "Lägg till" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "Säkerhetsvarning" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget." + +#: 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 "Utan en säker slumptalsgenerator kan angripare få möjlighet att förutsäga lösenordsåterställningar och ta över ditt konto." + +#: 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 "Skapa ett <strong>administratörskonto</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Avancerat" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "kommer att användas" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Avsluta installation" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "webbtjänster under din kontroll" @@ -358,15 +384,29 @@ msgstr "webbtjänster under din kontroll" msgid "Log out" msgstr "Logga ut" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "Logga in" @@ -381,3 +421,17 @@ msgstr "föregående" #: templates/part.pagenavi.php:20 msgid "next" msgstr "nästa" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/sv/files_odfviewer.po b/l10n/sv/files_odfviewer.po deleted file mode 100644 index 35b60c1eb8d19af08d29ea9501c9f0846bb7157a..0000000000000000000000000000000000000000 --- a/l10n/sv/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/sv/files_pdfviewer.po b/l10n/sv/files_pdfviewer.po deleted file mode 100644 index 674a9273cadd4b862b5d8423f6057ecd03ad7094..0000000000000000000000000000000000000000 --- a/l10n/sv/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/sv/files_texteditor.po b/l10n/sv/files_texteditor.po deleted file mode 100644 index e29a0d220c4dbf79ee8529593f45585c2c05a68d..0000000000000000000000000000000000000000 --- a/l10n/sv/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/sv/gallery.po b/l10n/sv/gallery.po deleted file mode 100644 index 3bb99841a7b9c30fbc63d09dbb6d10e6ec059dc5..0000000000000000000000000000000000000000 --- a/l10n/sv/gallery.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Christer Eriksson <post@hc3web.com>, 2012. -# <magnus@linux.com>, 2012. -# <revoltism@gmail.com>, 2012. -# <tscooter@hotmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-30 02:02+0200\n" -"PO-Revision-Date: 2012-07-29 07:37+0000\n" -"Last-Translator: maghog <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Bilder" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Dela galleri" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Fel:" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Internt fel" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Bildspel" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Tillbaka" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Vill du säkert ta bort" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Vill du ta bort albumet" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Ändra albumnamnet" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Albumnamn" diff --git a/l10n/sv/impress.po b/l10n/sv/impress.po deleted file mode 100644 index 93637c418a3b1208429f85c16811e4d38d3f20f5..0000000000000000000000000000000000000000 --- a/l10n/sv/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/sv/media.po b/l10n/sv/media.po deleted file mode 100644 index f6f24a1626571f32ae5276bfe55431ae778489c4..0000000000000000000000000000000000000000 --- a/l10n/sv/media.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daniel Sandman <revoltism@gmail.com>, 2012. -# Magnus Höglund <magnus@linux.com>, 2012. -# <revoltism@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-22 02:04+0200\n" -"PO-Revision-Date: 2012-08-21 08:29+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "Musik" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "Lägg till album till spellistan" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Spela" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Paus" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Föregående" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Nästa" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Ljudlös" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Ljud på" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Sök igenom samlingen" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Artist" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Titel" diff --git a/l10n/sv/tasks.po b/l10n/sv/tasks.po deleted file mode 100644 index b397a7d18daa95249edf31d0e06e9d05f8b1540f..0000000000000000000000000000000000000000 --- a/l10n/sv/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Magnus Höglund <magnus@linux.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 13:36+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "Felaktigt datum/tid" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "Uppgifter" - -#: js/tasks.js:415 -msgid "No category" -msgstr "Ingen kategori" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "Ospecificerad " - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=högsta" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=mellan" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=lägsta" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "Tom sammanfattning" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "Ogiltig andel procent klar" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "Felaktig prioritet" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "Lägg till uppgift" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "Förfaller" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "Kategori" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "Slutförd" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "Plats" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "Prioritet" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "Etikett" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "Laddar uppgifter..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "Viktigt" - -#: templates/tasks.php:23 -msgid "More" -msgstr "Mer" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "Mindre" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "Radera" diff --git a/l10n/sv/user_migrate.po b/l10n/sv/user_migrate.po deleted file mode 100644 index 3c9b00b3f6f5dc097724dd17b024a1efc74c42f3..0000000000000000000000000000000000000000 --- a/l10n/sv/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Magnus Höglund <magnus@linux.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 12:39+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "Exportera" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "Något gick fel när exportfilen skulle genereras" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "Ett fel har uppstått" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "Exportera ditt användarkonto" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "Detta vill skapa en komprimerad fil som innehåller ditt ownCloud-konto." - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "Importera ett användarkonto" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "ownCloud Zip-fil" - -#: templates/settings.php:17 -msgid "Import" -msgstr "Importera" diff --git a/l10n/sv/user_openid.po b/l10n/sv/user_openid.po deleted file mode 100644 index f05dbf48fd24e38d024493758ee95e1eae212512..0000000000000000000000000000000000000000 --- a/l10n/sv/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Magnus Höglund <magnus@linux.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-13 13:42+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "Detta är en OpenID-server slutpunkt. För mer information, se" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "Identitet: <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "Realm: <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "Användare: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "Logga in" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "Fel: <b>Ingen användare vald" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "du kan autentisera till andra webbplatser med denna adress" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "Godkänd openID leverantör" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "Din adress på Wordpress, Identi.ca, …" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po new file mode 100644 index 0000000000000000000000000000000000000000..1686955bd99fa2a6c76f3e267a89e06ad10769ec --- /dev/null +++ b/l10n/ta_LK/core.po @@ -0,0 +1,431 @@ +# 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: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 +msgid "Application name not provided." +msgstr "" + +#: ajax/vcategories/add.php:29 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:36 +msgid "This category already exists: " +msgstr "" + +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 +msgid "Settings" +msgstr "" + +#: js/js.js:670 +msgid "January" +msgstr "" + +#: js/js.js:670 +msgid "February" +msgstr "" + +#: js/js.js:670 +msgid "March" +msgstr "" + +#: js/js.js:670 +msgid "April" +msgstr "" + +#: js/js.js:670 +msgid "May" +msgstr "" + +#: js/js.js:670 +msgid "June" +msgstr "" + +#: js/js.js:671 +msgid "July" +msgstr "" + +#: js/js.js:671 +msgid "August" +msgstr "" + +#: js/js.js:671 +msgid "September" +msgstr "" + +#: js/js.js:671 +msgid "October" +msgstr "" + +#: js/js.js:671 +msgid "November" +msgstr "" + +#: js/js.js:671 +msgid "December" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:159 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:160 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:68 +msgid "No categories selected for deletion." +msgstr "" + +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 +msgid "Error" +msgstr "" + +#: js/share.js:103 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:114 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:121 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:130 +msgid "Shared with you and the group" +msgstr "" + +#: js/share.js:130 +msgid "by" +msgstr "" + +#: js/share.js:132 +msgid "Shared with you by" +msgstr "" + +#: js/share.js:137 +msgid "Share with" +msgstr "" + +#: js/share.js:142 +msgid "Share with link" +msgstr "" + +#: js/share.js:143 +msgid "Password protect" +msgstr "" + +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 +msgid "Password" +msgstr "" + +#: js/share.js:152 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:153 +msgid "Expiration date" +msgstr "" + +#: js/share.js:185 +msgid "Share via email:" +msgstr "" + +#: js/share.js:187 +msgid "No people found" +msgstr "" + +#: js/share.js:214 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:250 +msgid "Shared in" +msgstr "" + +#: js/share.js:250 +msgid "with" +msgstr "" + +#: js/share.js:271 +msgid "Unshare" +msgstr "" + +#: js/share.js:283 +msgid "can edit" +msgstr "" + +#: js/share.js:285 +msgid "access control" +msgstr "" + +#: js/share.js:288 +msgid "create" +msgstr "" + +#: js/share.js:291 +msgid "update" +msgstr "" + +#: js/share.js:294 +msgid "delete" +msgstr "" + +#: js/share.js:297 +msgid "share" +msgstr "" + +#: js/share.js:322 js/share.js:484 +msgid "Password protected" +msgstr "" + +#: js/share.js:497 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:509 +msgid "Error setting expiration date" +msgstr "" + +#: lostpassword/index.php:26 +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 "Requested" +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Login failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 +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:14 +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:48 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:50 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:57 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 +msgid "will be used" +msgstr "" + +#: templates/installation.php:105 +msgid "Database user" +msgstr "" + +#: templates/installation.php:109 +msgid "Database password" +msgstr "" + +#: templates/installation.php:113 +msgid "Database name" +msgstr "" + +#: templates/installation.php:121 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:127 +msgid "Database host" +msgstr "" + +#: templates/installation.php:132 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:38 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:34 +msgid "Log out" +msgstr "" + +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:27 +msgid "remember" +msgstr "" + +#: templates/login.php:28 +msgid "Log in" +msgstr "" + +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po new file mode 100644 index 0000000000000000000000000000000000000000..942737c0f6048a67386330f9beab465fee27a4fe --- /dev/null +++ b/l10n/ta_LK/files.po @@ -0,0 +1,299 @@ +# 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: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:20 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:21 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgstr "" + +#: ajax/upload.php:22 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:23 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:24 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:25 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:26 +msgid "Failed to write to disk" +msgstr "" + +#: appinfo/app.php:6 +msgid "Files" +msgstr "" + +#: js/fileactions.js:108 templates/index.php:62 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:110 templates/index.php:64 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:182 +msgid "Rename" +msgstr "" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "already exists" +msgstr "" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "replace" +msgstr "" + +#: js/filelist.js:192 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:192 js/filelist.js:194 +msgid "cancel" +msgstr "" + +#: js/filelist.js:241 js/filelist.js:243 +msgid "replaced" +msgstr "" + +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 +msgid "undo" +msgstr "" + +#: js/filelist.js:243 +msgid "with" +msgstr "" + +#: js/filelist.js:275 +msgid "unshared" +msgstr "" + +#: js/filelist.js:277 +msgid "deleted" +msgstr "" + +#: js/files.js:179 +msgid "generating ZIP-file, it may take some time." +msgstr "" + +#: js/files.js:214 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:214 +msgid "Upload Error" +msgstr "" + +#: js/files.js:242 js/files.js:347 js/files.js:377 +msgid "Pending" +msgstr "" + +#: js/files.js:262 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:265 js/files.js:310 js/files.js:325 +msgid "files uploading" +msgstr "" + +#: js/files.js:328 js/files.js:361 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:430 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:500 +msgid "Invalid name, '/' is not allowed." +msgstr "" + +#: js/files.js:681 +msgid "files scanned" +msgstr "" + +#: js/files.js:689 +msgid "error while scanning" +msgstr "" + +#: js/files.js:762 templates/index.php:48 +msgid "Name" +msgstr "" + +#: js/files.js:763 templates/index.php:56 +msgid "Size" +msgstr "" + +#: js/files.js:764 templates/index.php:58 +msgid "Modified" +msgstr "" + +#: js/files.js:791 +msgid "folder" +msgstr "" + +#: js/files.js:793 +msgid "folders" +msgstr "" + +#: js/files.js:801 +msgid "file" +msgstr "" + +#: js/files.js:803 +msgid "files" +msgstr "" + +#: js/files.js:847 +msgid "seconds ago" +msgstr "" + +#: js/files.js:848 +msgid "minute ago" +msgstr "" + +#: js/files.js:849 +msgid "minutes ago" +msgstr "" + +#: js/files.js:852 +msgid "today" +msgstr "" + +#: js/files.js:853 +msgid "yesterday" +msgstr "" + +#: js/files.js:854 +msgid "days ago" +msgstr "" + +#: js/files.js:855 +msgid "last month" +msgstr "" + +#: js/files.js:857 +msgid "months ago" +msgstr "" + +#: js/files.js:858 +msgid "last year" +msgstr "" + +#: js/files.js:859 +msgid "years ago" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:7 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:9 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:9 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:11 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:12 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:14 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:10 +msgid "Folder" +msgstr "" + +#: templates/index.php:11 +msgid "From url" +msgstr "" + +#: templates/index.php:20 +msgid "Upload" +msgstr "" + +#: templates/index.php:27 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:40 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:50 +msgid "Share" +msgstr "" + +#: templates/index.php:52 +msgid "Download" +msgstr "" + +#: templates/index.php:75 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:77 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:82 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:85 +msgid "Current scanning" +msgstr "" diff --git a/l10n/tr/admin_migrate.po b/l10n/ta_LK/files_encryption.po similarity index 52% rename from l10n/tr/admin_migrate.po rename to l10n/ta_LK/files_encryption.po index ab3ee34d97f08d94b354ed5d4dcb3693920f92de..59c15d46d9bd1fd9a0a8ff2284f80c5ce265dcc9 100644 --- a/l10n/tr/admin_migrate.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,26 +7,28 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" +"POT-Creation-Date: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Language: ta_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 -msgid "Export this ownCloud instance" +msgid "Encryption" msgstr "" #: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" +msgid "Exclude the following file types from encryption" +msgstr "" + +#: templates/settings.php:5 +msgid "None" msgstr "" -#: templates/settings.php:12 -msgid "Export" +#: templates/settings.php:10 +msgid "Enable Encryption" msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..469c1e516eb1b69a2af65144cd504db16a5f729d --- /dev/null +++ b/l10n/ta_LK/files_external.po @@ -0,0 +1,106 @@ +# 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: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_LK\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 "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:7 templates/settings.php:19 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:8 +msgid "Backend" +msgstr "" + +#: templates/settings.php:9 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:10 +msgid "Options" +msgstr "" + +#: templates/settings.php:11 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:23 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:54 templates/settings.php:62 +msgid "None set" +msgstr "" + +#: templates/settings.php:63 +msgid "All Users" +msgstr "" + +#: templates/settings.php:64 +msgid "Groups" +msgstr "" + +#: templates/settings.php:69 +msgid "Users" +msgstr "" + +#: templates/settings.php:77 templates/settings.php:107 +msgid "Delete" +msgstr "" + +#: templates/settings.php:87 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:88 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:99 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:113 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..b2ec47ff8679ed7aec5f1c0dbf081ab4a0778e56 --- /dev/null +++ b/l10n/ta_LK/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_LK\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:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:35 +msgid "web services under your control" +msgstr "" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..7fc3ff7a54fe7db475551ccc07a6de679038a985 --- /dev/null +++ b/l10n/ta_LK/files_versions.po @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:31 templates/settings-personal.php:10 +msgid "Expire all versions" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/settings-personal.php:4 +msgid "Versions" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "This will delete all existing backup versions of your files" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..f55cc2748728d515735e94a207095d1c4720be7d --- /dev/null +++ b/l10n/ta_LK/lib.po @@ -0,0 +1,125 @@ +# 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: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:285 +msgid "Help" +msgstr "" + +#: app.php:292 +msgid "Personal" +msgstr "" + +#: app.php:297 +msgid "Settings" +msgstr "" + +#: app.php:302 +msgid "Users" +msgstr "" + +#: app.php:309 +msgid "Apps" +msgstr "" + +#: app.php:311 +msgid "Admin" +msgstr "" + +#: files.php:328 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:329 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:329 files.php:354 +msgid "Back to Files" +msgstr "" + +#: files.php:353 +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 "" + +#: template.php:87 +msgid "seconds ago" +msgstr "" + +#: template.php:88 +msgid "1 minute ago" +msgstr "" + +#: template.php:89 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:92 +msgid "today" +msgstr "" + +#: template.php:93 +msgid "yesterday" +msgstr "" + +#: template.php:94 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:95 +msgid "last month" +msgstr "" + +#: template.php:96 +msgid "months ago" +msgstr "" + +#: template.php:97 +msgid "last year" +msgstr "" + +#: template.php:98 +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 "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..934df12e9d23e1b5acaa48f23ce8e3b31a9ecb17 --- /dev/null +++ b/l10n/ta_LK/settings.po @@ -0,0 +1,320 @@ +# 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: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:23 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/creategroup.php:12 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:21 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:14 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:16 +msgid "Invalid email" +msgstr "" + +#: ajax/openid.php:16 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "" + +#: ajax/removegroup.php:16 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "" + +#: ajax/removeuser.php:27 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:18 +msgid "Language changed" +msgstr "" + +#: ajax/togglegroups.php:25 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:31 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: js/apps.js:28 js/apps.js:65 +msgid "Disable" +msgstr "" + +#: js/apps.js:28 js/apps.js:54 +msgid "Enable" +msgstr "" + +#: js/personal.js:69 +msgid "Saving..." +msgstr "" + +#: personal.php:42 personal.php:43 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:14 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:17 +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/admin.php:31 +msgid "Cron" +msgstr "" + +#: templates/admin.php:37 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:43 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:49 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:56 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:61 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:62 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:67 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:68 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:73 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:74 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:79 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:81 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:88 +msgid "Log" +msgstr "" + +#: templates/admin.php:116 +msgid "More" +msgstr "" + +#: templates/admin.php:124 +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/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:9 +msgid "Documentation" +msgstr "" + +#: templates/help.php:10 +msgid "Managing Big Files" +msgstr "" + +#: templates/help.php:11 +msgid "Ask a question" +msgstr "" + +#: templates/help.php:23 +msgid "Problems connecting to help database." +msgstr "" + +#: templates/help.php:24 +msgid "Go there manually." +msgstr "" + +#: templates/help.php:32 +msgid "Answer" +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 "Desktop and Mobile Syncing Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download" +msgstr "" + +#: templates/personal.php:19 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:20 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:21 +msgid "Current password" +msgstr "" + +#: templates/personal.php:22 +msgid "New password" +msgstr "" + +#: templates/personal.php:23 +msgid "show" +msgstr "" + +#: templates/personal.php:24 +msgid "Change password" +msgstr "" + +#: templates/personal.php:30 +msgid "Email" +msgstr "" + +#: templates/personal.php:31 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:32 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:38 templates/personal.php:39 +msgid "Language" +msgstr "" + +#: templates/personal.php:44 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:51 +msgid "use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:76 +msgid "Name" +msgstr "" + +#: templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/users.php:26 templates/users.php:78 templates/users.php:98 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Quota" +msgstr "" + +#: templates/users.php:55 templates/users.php:138 +msgid "Other" +msgstr "" + +#: templates/users.php:80 templates/users.php:112 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:82 +msgid "Quota" +msgstr "" + +#: templates/users.php:146 +msgid "Delete" +msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..878df1455d044e783e0335131a3ed574afb8a6ff --- /dev/null +++ b/l10n/ta_LK/user_ldap.po @@ -0,0 +1,170 @@ +# 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: 2012-10-16 02:03+0200\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta_LK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:8 +msgid "Host" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:9 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:9 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:10 +msgid "User DN" +msgstr "" + +#: templates/settings.php:10 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:11 +msgid "Password" +msgstr "" + +#: templates/settings.php:11 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:12 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:12 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:13 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:13 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:13 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:14 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:14 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:14 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:17 +msgid "Port" +msgstr "" + +#: templates/settings.php:18 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:19 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:20 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:21 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:21 +msgid "Do not use it for SSL connections, it will fail." +msgstr "" + +#: templates/settings.php:22 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:23 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:23 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:23 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:24 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:24 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:25 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:25 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:27 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:29 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:32 +msgid "Help" +msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 651f38bc4701ad647a43d8c4b76888dd80230ed7..ffa37038804df8f6cb0d52c0d4be8ebe059473ba 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -146,7 +146,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "" @@ -238,8 +239,8 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "" @@ -299,48 +300,73 @@ msgstr "" msgid "Add" msgstr "" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "" @@ -352,15 +378,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "" @@ -375,3 +415,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 19b3af3c6b05df1798f37475e3da6c218d1d4e84..ae1687dd197e019ad8a78f8e4c7f65bcc3a98eaf 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 536907bb00817276c67f0e277a64c5a6ad69a5ba..89b267e31ed3acc4765b2c3dfa659f27d14012af 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f04d2300cbbbbfc15932f0c91fec70966ea567ec..a2dff7eed8b0e466b973d50a3cce951e86c430a9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 499c844b6fa77d4c0f69c7e3d201af7bcde006dd..4e770b2da8b56f5c785210db633a5eedbc6a31fd 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index db827defbd6b2096055f0ceb4a51d476dbf6866e..4097400b272939a65d433ee10bf6b0292040c993 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 020ff3080e37b88a34dbd924f279013f93e073ed..71f1c60fb563f659f4e33064d935ebe7d528f3e0 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:05+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -61,7 +61,7 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:63 json.php:75 +#: json.php:39 json.php:64 json.php:77 json.php:89 msgid "Authentication error" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 009e49c13b653c3aa5d54e3afd4cf0561c77996c..de8f6beed5602dcc101d033b889fb00038954bf5 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:05+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -21,16 +21,11 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" -#: ajax/creategroup.php:9 ajax/removeuser.php:18 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 -msgid "Authentication error" -msgstr "" - -#: ajax/creategroup.php:19 +#: ajax/creategroup.php:12 msgid "Group already exists" msgstr "" -#: ajax/creategroup.php:28 +#: ajax/creategroup.php:21 msgid "Unable to add group" msgstr "" @@ -58,6 +53,10 @@ msgstr "" msgid "Unable to delete group" msgstr "" +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "" + #: ajax/removeuser.php:27 msgid "Unable to delete user" msgstr "" @@ -88,7 +87,7 @@ msgstr "" msgid "Saving..." msgstr "" -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 3e8aebbb49b32d4cb570d717016fa5a1bf551416..3e84a57333939d62281ce53e5d6badf3e239fd1b 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-10-13 02:04+0200\n" +"POT-Creation-Date: 2012-10-17 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/admin_dependencies_chk.po b/l10n/th_TH/admin_dependencies_chk.po deleted file mode 100644 index 95abe0c652612ed21fb274cc380434433b1a5756..0000000000000000000000000000000000000000 --- a/l10n/th_TH/admin_dependencies_chk.po +++ /dev/null @@ -1,74 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-20 02:01+0200\n" -"PO-Revision-Date: 2012-08-19 14:18+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "โมดูล php-json จำเป็นต้องใช้สำหรับแอพพลิเคชั่นหลายๆตัวเพื่อการเชื่อมต่อสากล" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "โมดูล php-curl จำเป็นต้องใช้สำหรับดึงข้อมูลชื่อหัวเว็บเมื่อเพิ่มเข้าไปยังรายการโปรด" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "โมดูล php-gd จำเป็นต้องใช้สำหรับสร้างรูปภาพขนาดย่อของรูปภาพของคุณ" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "โมดูล php-ldap จำเป็นต้องใช้สำหรับการเชื่อมต่อกับเซิร์ฟเวอร์ ldap ของคุณ" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "โมดูล php-zip จำเป็นต้องใช้สำหรับดาวน์โหลดไฟล์พร้อมกันหลายๆไฟล์ในครั้งเดียว" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "โมดูล php-mb_multibyte จำเป็นต้องใช้สำหรับการจัดการการแปลงรหัสไฟล์อย่างถูกต้อง" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "โมดูล php-ctype จำเป็นต้องใช้สำหรับตรวจสอบความถูกต้องของข้อมูล" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "โมดูล php-xml จำเป็นต้องใช้สำหรับแชร์ไฟล์ด้วย webdav" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "คำสั่ง allow_url_fopen ที่อยู่ในไฟล์ php.ini ของคุณ ควรกำหนดเป็น 1 เพื่อดึงข้อมูลของฐานความรู้ต่างๆจากเซิร์ฟเวอร์ของ OCS" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "โมดูล php-pdo จำเป็นต้องใช้สำหรับจัดเก็บข้อมูลใน owncloud เข้าไปไว้ยังฐานข้อมูล" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "สถานะการอ้างอิง" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "ใช้งานโดย:" diff --git a/l10n/th_TH/admin_migrate.po b/l10n/th_TH/admin_migrate.po deleted file mode 100644 index c3f57864015faadf738610ccfd68356b81ef7172..0000000000000000000000000000000000000000 --- a/l10n/th_TH/admin_migrate.po +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 13:09+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "ส่งออกข้อมูลค่าสมมุติของ ownCloud นี้" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "ส่วนนี้จะเป็นการสร้างไฟล์บีบอัดที่บรรจุข้อมูลค่าสมมุติของ ownCloud.\n กรุณาเลือกชนิดของการส่งออกข้อมูล:" - -#: templates/settings.php:12 -msgid "Export" -msgstr "ส่งออก" diff --git a/l10n/th_TH/bookmarks.po b/l10n/th_TH/bookmarks.po deleted file mode 100644 index 0c6e7c61e3d1f88eb23aa43925ef7d7de415738e..0000000000000000000000000000000000000000 --- a/l10n/th_TH/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 13:16+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "รายการโปรด" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "ยังไม่มีชื่อ" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "ลากสิ่งนี้ไปไว้ที่รายการโปรดในโปรแกรมบราวเซอร์ของคุณ แล้วคลิกที่นั่น, เมื่อคุณต้องการเก็บหน้าเว็บเพจเข้าไปไว้ในรายการโปรดอย่างรวดเร็ว" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "อ่านภายหลัง" - -#: templates/list.php:13 -msgid "Address" -msgstr "ที่อยู่" - -#: templates/list.php:14 -msgid "Title" -msgstr "ชื่อ" - -#: templates/list.php:15 -msgid "Tags" -msgstr "ป้ายกำกับ" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "บันทึกรายการโปรด" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "คุณยังไม่มีรายการโปรด" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "Bookmarklet <br />" diff --git a/l10n/th_TH/calendar.po b/l10n/th_TH/calendar.po deleted file mode 100644 index db695db5dca440faa3bc5e2795b882fd0f67c0a5..0000000000000000000000000000000000000000 --- a/l10n/th_TH/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -# AriesAnywhere Anywhere <ariesanywherer@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:02+0200\n" -"PO-Revision-Date: 2012-08-14 13:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "ไม่ใช่ปฏิทินทั้งหมดที่จะถูกจัดเก็บข้อมูลไว้ในหน่วยความจำแคชอย่างสมบูรณ์" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "ทุกสิ่งทุกอย่างได้ถูกเก็บเข้าไปไว้ในหน่วยความจำแคชอย่างสมบูรณ์แล้ว" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "ไม่พบปฏิทินที่ต้องการ" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "ไม่พบกิจกรรมที่ต้องการ" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "ปฏิทินไม่ถูกต้อง" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "ไฟล์ดังกล่าวบรรจุข้อมูลกิจกรรมที่มีอยู่แล้วในปฏิทินของคุณ" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "กิจกรรมได้ถูกบันทึกไปไว้ในปฏิทินที่สร้างขึ้นใหม่แล้ว" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "การนำเข้าข้อมูลล้มเหลว" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "กิจกรรมได้ถูกบันทึกเข้าไปไว้ในปฏิทินของคุณแล้ว" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "สร้างโซนเวลาใหม่:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "โซนเวลาถูกเปลี่ยนแล้ว" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "คำร้องขอไม่ถูกต้อง" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "ปฏิทิน" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "วันเกิด" - -#: lib/app.php:122 -msgid "Business" -msgstr "ธุรกิจ" - -#: lib/app.php:123 -msgid "Call" -msgstr "โทรติดต่อ" - -#: lib/app.php:124 -msgid "Clients" -msgstr "ลูกค้า" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "จัดส่ง" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "วันหยุด" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "ไอเดีย" - -#: lib/app.php:128 -msgid "Journey" -msgstr "การเดินทาง" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "งานเลี้ยง" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "นัดประชุม" - -#: lib/app.php:131 -msgid "Other" -msgstr "อื่นๆ" - -#: lib/app.php:132 -msgid "Personal" -msgstr "ส่วนตัว" - -#: lib/app.php:133 -msgid "Projects" -msgstr "โครงการ" - -#: lib/app.php:134 -msgid "Questions" -msgstr "คำถาม" - -#: lib/app.php:135 -msgid "Work" -msgstr "งาน" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "โดย" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "ไม่มีชื่อ" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "สร้างปฏิทินใหม่" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "ไม่ต้องทำซ้ำ" - -#: lib/object.php:373 -msgid "Daily" -msgstr "รายวัน" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "รายสัปดาห์" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "ทุกวันหยุด" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "รายปักษ์" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "รายเดือน" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "รายปี" - -#: lib/object.php:388 -msgid "never" -msgstr "ไม่ต้องเลย" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "ตามจำนวนที่ปรากฏ" - -#: lib/object.php:390 -msgid "by date" -msgstr "ตามวันที่" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "จากเดือน" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "จากสัปดาห์" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "วันจันทร์" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "วันอังคาร" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "วันพุธ" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "วันพฤหัสบดี" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "วันศุกร์" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "วันเสาร์" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "วันอาทิตย์" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "สัปดาห์ที่มีกิจกรรมของเดือน" - -#: lib/object.php:428 -msgid "first" -msgstr "ลำดับแรก" - -#: lib/object.php:429 -msgid "second" -msgstr "ลำดับที่สอง" - -#: lib/object.php:430 -msgid "third" -msgstr "ลำดับที่สาม" - -#: lib/object.php:431 -msgid "fourth" -msgstr "ลำดับที่สี่" - -#: lib/object.php:432 -msgid "fifth" -msgstr "ลำดับที่ห้า" - -#: lib/object.php:433 -msgid "last" -msgstr "ลำดับสุดท้าย" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "มกราคม" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "กุมภาพันธ์" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "มีนาคม" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "เมษายน" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "พฤษภาคม" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "มิถุนายน" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "กรกฏาคม" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "สิงหาคม" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "กันยายน" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "ตุลาคม" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "พฤศจิกายน" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "ธันวาคม" - -#: lib/object.php:488 -msgid "by events date" -msgstr "ตามวันที่จัดกิจกรรม" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "ของเมื่อวานนี้" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "จากหมายเลขของสัปดาห์" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "ตามวันและเดือน" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "วันที่" - -#: lib/search.php:43 -msgid "Cal." -msgstr "คำนวณ" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "อา." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "จ." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "อ." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "พ." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "พฤ." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "ศ." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "ส." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "ม.ค." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "ก.พ." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "มี.ค." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "เม.ย." - -#: templates/calendar.php:8 -msgid "May." -msgstr "พ.ค." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "มิ.ย." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "ก.ค." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "ส.ค." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "ก.ย." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "ต.ค." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "พ.ย." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "ธ.ค." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "ทั้งวัน" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "ช่องฟิลด์เกิดการสูญหาย" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "ชื่อกิจกรรม" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "จากวันที่" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "ตั้งแต่เวลา" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "ถึงวันที่" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "ถึงเวลา" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "วันที่สิ้นสุดกิจกรรมดังกล่าวอยู่ก่อนวันเริ่มต้น" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "เกิดความล้มเหลวกับฐานข้อมูล" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "สัปดาห์" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "เดือน" - -#: templates/calendar.php:41 -msgid "List" -msgstr "รายการ" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "วันนี้" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "ตั้งค่า" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "ปฏิทินของคุณ" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "ลิงค์ CalDav" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "ปฏิทินที่เปิดแชร์" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "ไม่มีปฏิทินที่เปิดแชร์ไว้" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "เปิดแชร์ปฏิทิน" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "ดาวน์โหลด" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "แก้ไข" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "ลบ" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "แชร์ให้คุณโดย" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "สร้างปฏิทินใหม่" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "แก้ไขปฏิทิน" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "ชื่อที่ต้องการให้แสดง" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "ใช้งาน" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "สีของปฏิทิน" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "บันทึก" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "ส่งข้อมูล" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "ยกเลิก" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "แก้ไขกิจกรรม" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "ส่งออกข้อมูล" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "ข้อมูลเกี่ยวกับกิจกรรม" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "ทำซ้ำ" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "แจ้งเตือน" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "ผู้เข้าร่วมกิจกรรม" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "แชร์" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "ชื่อของกิจกรรม" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "หมวดหมู่" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "คั่นระหว่างรายการหมวดหมู่ด้วยเครื่องหมายจุลภาคหรือคอมม่า" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "แก้ไขหมวดหมู่" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "เป็นกิจกรรมตลอดทั้งวัน" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "จาก" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "ถึง" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "ตัวเลือกขั้นสูง" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "สถานที่" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "สถานที่จัดกิจกรรม" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "คำอธิบาย" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "คำอธิบายเกี่ยวกับกิจกรรม" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "ทำซ้ำ" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "ขั้นสูง" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "เลือกสัปดาห์" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "เลือกวัน" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "และวันที่มีเหตุการณ์เกิดขึ้นในปี" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "และวันที่มีเหตุการณ์เกิดขึ้นในเดือน" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "เลือกเดือน" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "เลือกสัปดาห์" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "และสัปดาห์ที่มีเหตุการณ์เกิดขึ้นในปี" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "ช่วงเวลา" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "สิ้นสุด" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "จำนวนที่ปรากฏ" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "สร้างปฏิทินใหม่" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "นำเข้าไฟล์ปฏิทิน" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "กรุณาเลือกปฏิทิน" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "ชื่อของปฏิทิน" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "เลือกชื่อที่ต้องการ" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "ปฏิทินชื่อดังกล่าวถูกใช้งานไปแล้ว หากคุณยังดำเนินการต่อไป ปฏิทินดังกล่าวนี้จะถูกผสานข้อมูลเข้าด้วยกัน" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "นำเข้าข้อมูล" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "ปิดกล่องข้อความโต้ตอบ" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "สร้างกิจกรรมใหม่" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "ดูกิจกรรม" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "ยังไม่ได้เลือกหมวดหมู่" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "ของ" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "ที่" - -#: templates/settings.php:10 -msgid "General" -msgstr "ทั่วไป" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "โซนเวลา" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "อัพเดทโซนเวลาอัตโนมัติ" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "รูปแบบเวลา" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24 ช.ม." - -#: templates/settings.php:58 -msgid "12h" -msgstr "12 ช.ม." - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "เริ่มต้นสัปดาห์ด้วย" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "หน่วยความจำแคช" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "ล้างข้อมูลในหน่วยความจำแคชสำหรับกิจกรรมที่ซ้ำซ้อน" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "URLs" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "ที่อยู่ที่ใช้สำหรับเชื่อมข้อมูลปฏิทิน CalDAV" - -#: templates/settings.php:87 -msgid "more info" -msgstr "ข้อมูลเพิ่มเติม" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "ที่อยู่หลัก (Kontact et al)" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "อ่านเฉพาะลิงก์ iCalendar เท่านั้น" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "ผู้ใช้งาน" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "เลือกผู้ใช้งาน" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "สามารถแก้ไขได้" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "กลุ่ม" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "เลือกกลุ่ม" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "กำหนดเป็นสาธารณะ" diff --git a/l10n/th_TH/contacts.po b/l10n/th_TH/contacts.po deleted file mode 100644 index 978e20b06690b67d644256e58cd99937fddda6b3..0000000000000000000000000000000000000000 --- a/l10n/th_TH/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -# AriesAnywhere Anywhere <ariesanywherer@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "เกิดข้อผิดพลาดใน (ยกเลิก)การเปิดใช้งานสมุดบันทึกที่อยู่" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "ยังไม่ได้กำหนดรหัส" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "ไม่สามารถอัพเดทสมุดบันทึกที่อยู่โดยไม่มีชื่อได้" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "เกิดข้อผิดพลาดในการอัพเดทสมุดบันทึกที่อยู่" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "ยังไม่ได้ใส่รหัส" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "เกิดข้อผิดพลาดในการตั้งค่า checksum" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "ไม่พบสมุดบันทึกที่อยู่ที่ต้องการ" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "ไม่พบข้อมูลการติดต่อที่ต้องการ" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "เกิดข้อผิดพลาดในการเพิ่มรายชื่อผู้ติดต่อใหม่" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "ยังไม่ได้กำหนดชื่อ" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "ไม่สามารถแจกแจงรายชื่อผู้ติดต่อได้" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "ไม่สามารถเพิ่มรายละเอียดที่ไม่มีข้อมูลได้" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "อย่างน้อยที่สุดช่องข้อมูลที่อยู่จะต้องถูกกรอกลงไป" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "พยายามที่จะเพิ่มทรัพยากรที่ซ้ำซ้อนกัน: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "ข้อมูลเกี่ยวกับ vCard ไม่ถูกต้อง กรุณาโหลดหน้าเวปใหม่อีกครั้ง" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "รหัสสูญหาย" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "พบข้อผิดพลาดในการแยกรหัส VCard:\"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "ยังไม่ได้กำหนดค่า checksum" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "ข้อมูล vCard ไม่ถูกต้อง กรุณาโหลดหน้าเว็บใหม่อีกครั้ง: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "มีบางอย่างเกิดการ FUBAR. " - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "ไม่มีรหัสข้อมูลการติดต่อถูกส่งมา" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "เกิดข้อผิดพลาดในการอ่านรูปภาพของข้อมูลการติดต่อ" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "เกิดข้อผิดพลาดในการบันทึกไฟล์ชั่วคราว" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "โหลดรูปภาพไม่ถูกต้อง" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "รหัสข้อมูลการติดต่อเกิดการสูญหาย" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "ไม่พบตำแหน่งพาธของรูปภาพ" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "ไม่มีไฟล์ดังกล่าว" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "เกิดข้อผิดพลาดในการโหลดรูปภาพ" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "เกิดข้อผิดพลาดในการดึงข้อมูลติดต่อ" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "เกิดข้อผิดพลาดในการดึงคุณสมบัติของรูปภาพ" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "เกิดข้อผิดพลาดในการบันทึกข้อมูลผู้ติดต่อ" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "เกิดข้อผิดพลาดในการปรับขนาดรูปภาพ" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "เกิดข้อผิดพลาดในการครอบตัดภาพ" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "เกิดข้อผิดพลาดในการสร้างรูปภาพชั่วคราว" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "เกิดข้อผิดพลาดในการค้นหารูปภาพ: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "เกิดข้อผิดพลาดในการอัพโหลดข้อมูลการติดต่อไปยังพื้นที่จัดเก็บข้อมูล" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง upload_max_filesize ที่อยู่ในไฟล์ php.ini" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "ไม่สามารถบันทึกรูปภาพชั่วคราวได้: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "ไม่สามารถโหลดรูปภาพชั่วคราวได้: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "ข้อมูลการติดต่อ" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "ขออภัย, ฟังก์ชั่นการทำงานนี้ยังไม่ได้ถูกดำเนินการ" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "ยังไม่ได้ถูกดำเนินการ" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "ไม่สามารถดึงที่อยู่ที่ถูกต้องได้" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "พบข้อผิดพลาด" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "คุณสมบัตินี้ต้องไม่มีข้อมูลว่างอยู่" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "ไม่สามารถทำสัญลักษณ์องค์ประกอบต่างๆให้เป็นตัวเลขตามลำดับได้" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' ถูกเรียกใช้โดยไม่มีอาร์กิวเมนต์ กรุณาแจ้งได้ที่ bugs.owncloud.org" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "แก้ไขชื่อ" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "ยังไม่ได้เลือกไฟล์ำสำหรับอัพโหลด" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "ไฟล์ที่คุณกำลังพยายามที่จะอัพโหลดมีขนาดเกินจำนวนสูงสุดที่สามารถอัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "เกิดข้อผิดพลาดในการโหลดรูปภาพประจำตัว" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "เลือกชนิด" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "ข้อมูลผู้ติดต่อบางรายการได้ถูกทำเครื่องหมายสำหรับลบทิ้งเอาไว้, แต่ยังไม่ได้ถูกลบทิ้ง, กรุณารอให้รายการดังกล่าวถูกลบทิ้งเสียก่อน" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "คุณต้องการผสานข้อมูลสมุดบันทึกที่อยู่เหล่านี้หรือไม่?" - -#: js/loader.js:49 -msgid "Result: " -msgstr "ผลลัพธ์: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " นำเข้าข้อมูลแล้ว, " - -#: js/loader.js:49 -msgid " failed." -msgstr " ล้มเหลว." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "ชื่อที่ใช้แสดงไม่สามารถเว้นว่างได้" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "ไม่พบสมุดบันทึกที่อยู่ที่ต้องการ" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "นี่ไม่ใช่สมุดบันทึกที่อยู่ของคุณ" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "ไม่พบข้อมูลการติดต่อ" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "ที่ทำงาน" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "บ้าน" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "อื่นๆ" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "มือถือ" - -#: lib/app.php:203 -msgid "Text" -msgstr "ข้อความ" - -#: lib/app.php:204 -msgid "Voice" -msgstr "เสียงพูด" - -#: lib/app.php:205 -msgid "Message" -msgstr "ข้อความ" - -#: lib/app.php:206 -msgid "Fax" -msgstr "โทรสาร" - -#: lib/app.php:207 -msgid "Video" -msgstr "วีดีโอ" - -#: lib/app.php:208 -msgid "Pager" -msgstr "เพจเจอร์" - -#: lib/app.php:215 -msgid "Internet" -msgstr "อินเทอร์เน็ต" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "วันเกิด" - -#: lib/app.php:253 -msgid "Business" -msgstr "ธุรกิจ" - -#: lib/app.php:254 -msgid "Call" -msgstr "โทร" - -#: lib/app.php:255 -msgid "Clients" -msgstr "ลูกค้า" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "ผู้จัดส่ง" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "วันหยุด" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "ไอเดีย" - -#: lib/app.php:259 -msgid "Journey" -msgstr "การเดินทาง" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "งานเฉลิมฉลอง" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "ประชุม" - -#: lib/app.php:263 -msgid "Personal" -msgstr "ส่วนตัว" - -#: lib/app.php:264 -msgid "Projects" -msgstr "โปรเจค" - -#: lib/app.php:265 -msgid "Questions" -msgstr "คำถาม" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "วันเกิดของ {name}" - -#: lib/search.php:15 -msgid "Contact" -msgstr "ข้อมูลการติดต่อ" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "เพิ่มรายชื่อผู้ติดต่อใหม่" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "นำเข้า" - -#: templates/index.php:18 -msgid "Settings" -msgstr "ตั้งค่า" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "สมุดบันทึกที่อยู่" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "ปิด" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "ปุ่มลัด" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "ระบบเมนู" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "ข้อมูลผู้ติดต่อถัดไปในรายการ" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "ข้อมูลผู้ติดต่อก่อนหน้าในรายการ" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "ขยาย/ย่อ สมุดบันทึกที่อยู่ปัจจุบัน" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "สมุดบันทึกที่อยู่ถัดไป" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "สมุดบันทึกที่อยู่ก่อนหน้า" - -#: templates/index.php:54 -msgid "Actions" -msgstr "การกระทำ" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "รีเฟรชรายชื่อผู้ติดต่อใหม่" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "เพิ่มข้อมูลผู้ติดต่อใหม่" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "เพิ่มสมุดบันทึกที่อยู่ใหม่" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "ลบข้อมูลผู้ติดต่อปัจจุบัน" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "วางรูปภาพที่ต้องการอัพโหลด" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "ลบรูปภาพปัจจุบัน" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "แก้ไขรูปภาพปัจจุบัน" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "อัพโหลดรูปภาพใหม่" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "เลือกรูปภาพจาก ownCloud" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "กำหนดรูปแบบของชื่อย่อ, ชื่อจริง, ย้อนค่ากลัีบด้วยคอมม่าเอง" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "แก้ไขรายละเอียดของชื่อ" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "หน่วยงาน" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "ลบ" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "ชื่อเล่น" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "กรอกชื่อเล่น" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "เว็บไซต์" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "ไปที่เว็บไซต์" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "กลุ่ม" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "คั่นระหว่างรายชื่อกลุ่มด้วยเครื่องหมายจุลภาีคหรือคอมม่า" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "แก้ไขกลุ่ม" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "พิเศษ" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "กรุณาระบุที่อยู่อีเมลที่ถูกต้อง" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "กรอกที่อยู่อีเมล" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "ส่งอีเมลไปที่" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "ลบที่อยู่อีเมล" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "กรอกหมายเลขโทรศัพท์" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "ลบหมายเลขโทรศัพท์" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "ดูบนแผนที่" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "แก้ไขรายละเอียดที่อยู่" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "เพิ่มหมายเหตุกำกับไว้ที่นี่" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "เพิ่มช่องรับข้อมูล" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "โทรศัพท์" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "อีเมล์" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "ที่อยู่" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "หมายเหตุ" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "ดาวน์โหลดข้อมูลการติดต่อ" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "ลบข้อมูลการติดต่อ" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "รูปภาพชั่วคราวดังกล่าวได้ถูกลบออกจากหน่วยความจำแคชแล้ว" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "แก้ไขที่อยู่" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "ประเภท" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "ตู้ ปณ." - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "ที่อยู่" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "ถนนและหมายเลข" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "เพิ่ม" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "หมายเลขอพาร์ทเมนต์ ฯลฯ" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "เมือง" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "ภูมิภาค" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "เช่น รัฐ หรือ จังหวัด" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "รหัสไปรษณีย์" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "รหัสไปรษณีย์" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "ประเทศ" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "สมุดบันทึกที่อยู่" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "คำนำหน้าชื่อคนรัก" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "นางสาว" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "น.ส." - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "นาย" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "คุณ" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "นาง" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "ดร." - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "ชื่อที่ใช้" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "ชื่ออื่นๆ" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "ชื่อครอบครัว" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "คำแนบท้ายชื่อคนรัก" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "M.D." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "ปริญญาเอก" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "จูเนียร์" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "ซีเนียร์" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "นำเข้าไฟล์ข้อมูลการติดต่อ" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "กรุณาเลือกสมุดบันทึกที่อยู่" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "สร้างสมุดบันทึกที่อยู่ใหม่" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "กำหนดชื่อของสมุดที่อยู่ที่สร้างใหม่" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "นำเข้าข้อมูลการติดต่อ" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "คุณยังไม่มีข้อมูลการติดต่อใดๆในสมุดบันทึกที่อยู่ของคุณ" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "เพิ่มชื่อผู้ติดต่อ" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "เลือกสมุดบันทึกที่อยู่" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "กรอกชื่อ" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "กรอกคำอธิบาย" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "ที่อยู่ที่ใช้เชื่อมข้อมูลกับ CardDAV" - -#: templates/settings.php:3 -msgid "more info" -msgstr "ข้อมูลเพิ่มเติม" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "ที่อยู่หลัก (สำหรับติดต่อ)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "แสดงลิงก์ CardDav" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "แสดงลิงก์ VCF สำหรับอ่านเท่านั้น" - -#: templates/settings.php:26 -msgid "Share" -msgstr "แชร์" - -#: templates/settings.php:29 -msgid "Download" -msgstr "ดาวน์โหลด" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "แก้ไข" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "สร้างสมุดบันทึกข้อมูลการติดต่อใหม่" - -#: templates/settings.php:44 -msgid "Name" -msgstr "ชื่อ" - -#: templates/settings.php:45 -msgid "Description" -msgstr "คำอธิบาย" - -#: templates/settings.php:46 -msgid "Save" -msgstr "บันทึก" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "ยกเลิก" - -#: templates/settings.php:52 -msgid "More..." -msgstr "เพิ่มเติม..." diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index b9f67f922d250052a1fba0c56a0ee6bc38ab968c..7c760142837d517a4960149b09365b81757463a8 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-01 02:04+0200\n" -"PO-Revision-Date: 2012-09-30 07:07+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" +"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,55 +31,55 @@ msgstr "ไม่มีหมวดหมู่ที่ต้องการเ msgid "This category already exists: " msgstr "หมวดหมู่นี้มีอยู่แล้ว: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "มกราคม" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "กุมภาพันธ์" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "มีนาคม" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "เมษายน" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "พฤษภาคม" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "มิถุนายน" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "กรกฏาคม" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "สิงหาคม" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "กันยายน" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "ตุลาคม" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "พฤศจิกายน" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "ธันวาคม" @@ -107,8 +107,8 @@ msgstr "ตกลง" msgid "No categories selected for deletion." msgstr "ยังไม่ได้เลือกหมวดหมู่ที่ต้องการลบ" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "พบข้อผิดพลาด" @@ -148,7 +148,8 @@ msgstr "แชร์ด้วยลิงก์" msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "รหัสผ่าน" @@ -184,39 +185,39 @@ msgstr "ด้วย" msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "สร้าง" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "อัพเดท" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "ลบ" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "แชร์" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" @@ -240,8 +241,8 @@ msgstr "ส่งคำร้องเรียบร้อยแล้ว" msgid "Login failed!" msgstr "ไม่สามารถเข้าสู่ระบบได้!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -301,52 +302,77 @@ msgstr "แก้ไขหมวดหมู่" msgid "Add" msgstr "เพิ่ม" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "สร้าง <strong>บัญชีผู้ดูแลระบบ</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "กำหนดค่าฐานข้อมูล" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "จะถูกใช้" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Database host" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "web services under your control" @@ -354,15 +380,29 @@ msgstr "web services under your control" msgid "Log out" msgstr "ออกจากระบบ" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "เข้าสู่ระบบ" @@ -377,3 +417,17 @@ msgstr "ก่อนหน้า" #: templates/part.pagenavi.php:20 msgid "next" msgstr "ถัดไป" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/th_TH/files_odfviewer.po b/l10n/th_TH/files_odfviewer.po deleted file mode 100644 index 652cc1125ec157433005fe2c8d632bc5c01dcc90..0000000000000000000000000000000000000000 --- a/l10n/th_TH/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/th_TH/files_pdfviewer.po b/l10n/th_TH/files_pdfviewer.po deleted file mode 100644 index 354985befa1ce26ef553a8582d6d07dc8b7f3121..0000000000000000000000000000000000000000 --- a/l10n/th_TH/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/th_TH/files_texteditor.po b/l10n/th_TH/files_texteditor.po deleted file mode 100644 index 00accf8089f7f91b815f61828dc75e5a483e1080..0000000000000000000000000000000000000000 --- a/l10n/th_TH/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/th_TH/gallery.po b/l10n/th_TH/gallery.po deleted file mode 100644 index d442789187de9884f35e439e25523f853b5618b1..0000000000000000000000000000000000000000 --- a/l10n/th_TH/gallery.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -# AriesAnywhere Anywhere <ariesanywherer@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 12:50+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "รูปภาพ" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "แชร์ข้อมูลแกลอรี่" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "พบข้อผิดพลาด: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "เกิดข้อผิดพลาดภายในระบบ" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "ภาพสไลด์โชว์" diff --git a/l10n/th_TH/impress.po b/l10n/th_TH/impress.po deleted file mode 100644 index e360e941e406a3bfef210c37d1a779fa934a06e5..0000000000000000000000000000000000000000 --- a/l10n/th_TH/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/th_TH/media.po b/l10n/th_TH/media.po deleted file mode 100644 index d59e3cc7c0762318abb6917e52d44ac65639039e..0000000000000000000000000000000000000000 --- a/l10n/th_TH/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywherer@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.net/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "เพลง" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "เล่น" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "หยุดชั่วคราว" - -#: templates/music.php:5 -msgid "Previous" -msgstr "ก่อนหน้า" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "ถัดไป" - -#: templates/music.php:7 -msgid "Mute" -msgstr "ปิดเสียง" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "เปิดเสียง" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "ตรวจสอบไฟล์ที่เก็บไว้อีกครั้ง" - -#: templates/music.php:37 -msgid "Artist" -msgstr "ศิลปิน" - -#: templates/music.php:38 -msgid "Album" -msgstr "อัลบั้ม" - -#: templates/music.php:39 -msgid "Title" -msgstr "ชื่อ" diff --git a/l10n/th_TH/tasks.po b/l10n/th_TH/tasks.po deleted file mode 100644 index 7d45023764580701777739b4d0bc155bc83ecb66..0000000000000000000000000000000000000000 --- a/l10n/th_TH/tasks.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 15:26+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "วันที่ / เวลา ไม่ถูกต้อง" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "งาน" - -#: js/tasks.js:415 -msgid "No category" -msgstr "ไม่มีหมวดหมู่" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "ยังไม่ได้ระบุ" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "1=สูงสุด" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "5=ปานกลาง" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "9=ต่ำสุด" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "ข้อมูลสรุปยังว่างอยู่" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "สัดส่วนเปอร์เซ็นต์ความสมบูรณ์ไม่ถูกต้อง" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "ความสำคัญไม่ถูกต้อง" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "เพิ่มงานใหม่" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "จัดเรียงตามกำหนดเวลา" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "จัดเรียงตามรายชื่อ" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "จัดเรียงตามความสมบูรณ์" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "จัดเรียงตามตำแหน่งที่อยู่" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "จัดเรียงตามระดับความสำคัญ" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "จัดเรียงตามป้ายชื่อ" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "กำลังโหลดข้อมูลงาน..." - -#: templates/tasks.php:20 -msgid "Important" -msgstr "สำคัญ" - -#: templates/tasks.php:23 -msgid "More" -msgstr "มาก" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "น้อย" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "ลบ" diff --git a/l10n/th_TH/user_migrate.po b/l10n/th_TH/user_migrate.po deleted file mode 100644 index 74a5aec4843f78e50e9bb895c038aee34b7b6320..0000000000000000000000000000000000000000 --- a/l10n/th_TH/user_migrate.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 13:37+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "ส่งออก" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "เกิดข้อผิดพลาดบางประการในระหว่างการส่งออกไฟล์" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "เกิดข้อผิดพลาดบางประการ" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "ส่งออกบัญชีผู้ใช้งานของคุณ" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "ส่วนนี้จะเป็นการสร้างไฟล์บีบอัดที่บรรจุข้อมูลบัญชีผู้ใช้งาน ownCloud ของคุณ" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "นำเข้าบัญชีผู้ใช้งาน" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "ไฟล์ Zip ผู้ใช้งาน ownCloud" - -#: templates/settings.php:17 -msgid "Import" -msgstr "นำเข้า" diff --git a/l10n/th_TH/user_openid.po b/l10n/th_TH/user_openid.po deleted file mode 100644 index 7ed74e306baf45dd4e448bc1e52e3bc5c110b9bc..0000000000000000000000000000000000000000 --- a/l10n/th_TH/user_openid.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-15 02:03+0200\n" -"PO-Revision-Date: 2012-08-14 13:32+0000\n" -"Last-Translator: AriesAnywhere Anywhere <ariesanywhere@gmail.com>\n" -"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "นี่คือปลายทางของเซิร์ฟเวอร์ OpenID สำหรับรายละเอียดเพิ่มเติม, กรุณาดูที่" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "ข้อมูลประจำตัว <b>" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "ขอบเขตพื้นที่ <b>" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "ผู้ใช้งาน: <b>" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "เข้าสู่ระบบ" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "พบข้อผิดพลาด <b> ยังไม่ได้เลือกชื่อผู้ใช้งาน" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "คุณสามารถได้รับสิทธิ์เพื่อเข้าใช้งานเว็บไซต์อื่นๆโดยใช้ที่อยู่นี้" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "ผู้ให้บริการ OpenID ที่ได้รับอนุญาต" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "ที่อยู่ของคุณที่ Wordpress, Identi.ca, …" diff --git a/l10n/tr/admin_dependencies_chk.po b/l10n/tr/admin_dependencies_chk.po deleted file mode 100644 index 7a089c19af607473e54db898e625832bafa0c264..0000000000000000000000000000000000000000 --- a/l10n/tr/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/tr/bookmarks.po b/l10n/tr/bookmarks.po deleted file mode 100644 index 34e76f301d83540c1e1131b9828acef4588a1fb2..0000000000000000000000000000000000000000 --- a/l10n/tr/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/tr/calendar.po b/l10n/tr/calendar.po deleted file mode 100644 index 0e49a20184115d53281a7144b81f8c0431d0a10a..0000000000000000000000000000000000000000 --- a/l10n/tr/calendar.po +++ /dev/null @@ -1,818 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <ahmet_kaplan@hotmail.com>, 2012. -# Aranel Surion <aranel@aranelsurion.org>, 2011, 2012. -# Emre <emresaracoglu@live.com>, 2012. -# <mesutgungor@iyte.edu.tr>, 2012. -# Necdet Yücel <necdetyucel@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "Bütün takvimler tamamen ön belleğe alınmadı" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "Bütün herşey tamamen ön belleğe alınmış görünüyor" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Takvim yok." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Etkinlik yok." - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Yanlış takvim" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "Dosya ya hiçbir etkinlik içermiyor veya bütün etkinlikler takviminizde zaten saklı." - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "Etkinlikler yeni takvimde saklandı" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "İçeri aktarma başarısız oldu." - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "Etkinlikler takviminizde saklandı" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Yeni Zamandilimi:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Zaman dilimi değiştirildi" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Geçersiz istek" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Takvim" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "AAA g[ yyyy]{ '—'[ AAA] g yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Doğum günü" - -#: lib/app.php:122 -msgid "Business" -msgstr "İş" - -#: lib/app.php:123 -msgid "Call" -msgstr "Arama" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Müşteriler" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "Teslimatçı" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Tatil günleri" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Fikirler" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Seyahat" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Yıl dönümü" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Toplantı" - -#: lib/app.php:131 -msgid "Other" -msgstr "Diğer" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Kişisel" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Projeler" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Sorular" - -#: lib/app.php:135 -msgid "Work" -msgstr "İş" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "hazırlayan" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "isimsiz" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Yeni Takvim" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Tekrar etmiyor" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Günlük" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Haftalı" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Haftaiçi Her gün" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "İki haftada bir" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Aylık" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Yıllı" - -#: lib/object.php:388 -msgid "never" -msgstr "asla" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "sıklığa göre" - -#: lib/object.php:390 -msgid "by date" -msgstr "tarihe göre" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "ay günlerine göre" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "hafta günlerine göre" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Pazartesi" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Salı" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Çarşamba" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Perşembe" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Cuma" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Cumartesi" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Pazar" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "ayın etkinlikler haftası" - -#: lib/object.php:428 -msgid "first" -msgstr "birinci" - -#: lib/object.php:429 -msgid "second" -msgstr "ikinci" - -#: lib/object.php:430 -msgid "third" -msgstr "üçüncü" - -#: lib/object.php:431 -msgid "fourth" -msgstr "dördüncü" - -#: lib/object.php:432 -msgid "fifth" -msgstr "beşinci" - -#: lib/object.php:433 -msgid "last" -msgstr "sonuncu" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Ocak" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Şubat" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Mart" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Nisan" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Mayıs" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Haziran" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Temmuz" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Ağustos" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Eylül" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Ekim" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Kasım" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Aralık" - -#: lib/object.php:488 -msgid "by events date" -msgstr "olay tarihine göre" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "yıl gün(ler)ine göre" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "hafta sayı(lar)ına göre" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "gün ve aya göre" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Tarih" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Takv." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "Paz." - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "Pzt." - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "Sal." - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "Çar." - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "Per." - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "Cum." - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "Cmt." - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "Oca." - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "Şbt." - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "Mar." - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "Nis" - -#: templates/calendar.php:8 -msgid "May." -msgstr "May." - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "Haz." - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "Tem." - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "Agu." - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "Eyl." - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "Eki." - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "Kas." - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "Ara." - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Tüm gün" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Eksik alanlar" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Başlık" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Bu Tarihten" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Bu Saatten" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Bu Tarihe" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Bu Saate" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Olay başlamadan önce bitiyor" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Bir veritabanı başarısızlığı oluştu" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Hafta" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Ay" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Liste" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Bugün" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Takvimleriniz" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav Bağlantısı" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Paylaşılan" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Paylaşılan takvim yok" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Takvimi paylaş" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "İndir" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Düzenle" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Sil" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "sizinle paylaşılmış" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Yeni takvim" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Takvimi düzenle" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Görünüm adı" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Aktif" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Takvim rengi" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Kaydet" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Gönder" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "İptal" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Bir olay düzenle" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Dışa aktar" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "Etkinlik bilgisi" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "Tekrarlama" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "Alarm" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "Katılanlar" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Paylaş" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Olayın Başlığı" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Kategori" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "Kategorileri virgülle ayırın" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "Kategorileri düzenle" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Tüm Gün Olay" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Kimden" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Kime" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Gelişmiş opsiyonlar" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Konum" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Olayın Konumu" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Açıklama" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Olayın Açıklaması" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Tekrar" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Gelişmiş" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Hafta günlerini seçin" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Günleri seçin" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "ve yılın etkinlikler günü." - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "ve ayın etkinlikler günü." - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Ayları seç" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Haftaları seç" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "ve yılın etkinkinlikler haftası." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "Aralık" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "Son" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "olaylar" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Yeni bir takvim oluştur" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Takvim dosyasını içeri aktar" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "Lütfen takvim seçiniz" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Yeni takvimin adı" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "Müsait ismi al !" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "Bu isimde bir takvim zaten mevcut. Yine de devam ederseniz bu takvimler birleştirilecektir." - -#: templates/part.import.php:47 -msgid "Import" -msgstr "İçe Al" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Diyalogu kapat" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Yeni olay oluştur" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Bir olay görüntüle" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Kategori seçilmedi" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "nın" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "üzerinde" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Zaman dilimi" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24s" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12s" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "Önbellek" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "Tekrar eden etkinlikler için ön belleği temizle." - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "CalDAV takvimi adresleri senkronize ediyor." - -#: templates/settings.php:87 -msgid "more info" -msgstr "daha fazla bilgi" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "Öncelikli adres" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "Sadece okunabilir iCalendar link(ler)i" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Kullanıcılar" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "kullanıcıları seç" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "Düzenlenebilir" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Gruplar" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "grupları seç" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "kamuyla paylaş" diff --git a/l10n/tr/contacts.po b/l10n/tr/contacts.po deleted file mode 100644 index 8feffd070680b82f7f85d07e1c575f7b747f56ff..0000000000000000000000000000000000000000 --- a/l10n/tr/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Aranel Surion <aranel@aranelsurion.org>, 2011, 2012. -# <mesutgungor@iyte.edu.tr>, 2012. -# Necdet Yücel <necdetyucel@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "Adres defteri etkisizleştirilirken hata oluştu." - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id atanmamış." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "Adres defterini boş bir isimle güncelleyemezsiniz." - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "Adres defteri güncellenirken hata oluştu." - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "ID verilmedi" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "İmza oluşturulurken hata." - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "Silmek için bir kategori seçilmedi." - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Adres defteri bulunamadı." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Bağlantı bulunamadı." - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "Kişi eklenirken hata oluştu." - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "eleman ismi atanmamış." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "Kişi bilgisi ayrıştırılamadı." - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "Boş özellik eklenemiyor." - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "En az bir adres alanı doldurulmalı." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "Yinelenen özellik eklenmeye çalışılıyor: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "vCard bilgileri doğru değil. Lütfen sayfayı yenileyin." - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Eksik ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "ID için VCard ayrıştırılamadı:\"" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "checksum atanmamış." - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "vCard hakkındaki bilgi hatalı. Lütfen sayfayı yeniden yükleyin: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "Bir şey FUBAR gitti." - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "Bağlantı ID'si girilmedi." - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Bağlantı fotoğrafı okunamadı." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "Geçici dosya kaydetme hatası." - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Yüklenecek fotograf geçerli değil." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "Bağlantı ID'si eksik." - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "Fotoğraf girilmedi." - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Dosya mevcut değil:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "İmaj yükleme hatası." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "Bağlantı nesnesini kaydederken hata." - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "Resim özelleğini alırken hata oluştu." - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "Bağlantıyı kaydederken hata" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "Görüntü yeniden boyutlandırılamadı." - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "Görüntü kırpılamadı." - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "Geçici resim oluştururken hata oluştu" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "Resim ararken hata oluştu:" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Bağlantıları depoya yükleme hatası" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Dosya başarıyla yüklendi, hata oluşmadı" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "Dosyanın boyutu php.ini dosyasındaki upload_max_filesize limitini aşıyor" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Yüklenecek dosyanın boyutu HTML formunda belirtilen MAX_FILE_SIZE limitini aşıyor" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "Dosya kısmen karşıya yüklenebildi" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "Hiç dosya gönderilmedi" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "Geçici dizin eksik" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "Geçici resmi saklayamadı : " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "Geçici resmi yükleyemedi :" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "Dosya yüklenmedi. Bilinmeyen hata" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Kişiler" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "Üzgünüz, bu özellik henüz tamamlanmadı." - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "Tamamlanmadı." - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "Geçerli bir adres alınamadı." - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "Hata" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "Bu özellik boş bırakılmamalı." - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "Öğeler seri hale getiremedi" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' tip argümanı olmadan çağrıldı. Lütfen bugs.owncloud.org a rapor ediniz." - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "İsmi düzenle" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "Yükleme için dosya seçilmedi." - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "Yüklemeye çalıştığınız dosya sunucudaki dosya yükleme maksimum boyutunu aşmaktadır. " - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "Tür seç" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "Sonuç: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " içe aktarıldı, " - -#: js/loader.js:49 -msgid " failed." -msgstr " hatalı." - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Bu sizin adres defteriniz değil." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "Kişi bulunamadı." - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "İş" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Ev" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "Diğer" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Mobil" - -#: lib/app.php:203 -msgid "Text" -msgstr "Metin" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Ses" - -#: lib/app.php:205 -msgid "Message" -msgstr "mesaj" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Faks" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Sayfalayıcı" - -#: lib/app.php:215 -msgid "Internet" -msgstr "İnternet" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Doğum günü" - -#: lib/app.php:253 -msgid "Business" -msgstr "İş" - -#: lib/app.php:254 -msgid "Call" -msgstr "Çağrı" - -#: lib/app.php:255 -msgid "Clients" -msgstr "Müşteriler" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "Dağıtıcı" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "Tatiller" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "Fikirler" - -#: lib/app.php:259 -msgid "Journey" -msgstr "Seyahat" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "Yıl Dönümü" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "Toplantı" - -#: lib/app.php:263 -msgid "Personal" -msgstr "Kişisel" - -#: lib/app.php:264 -msgid "Projects" -msgstr "Projeler" - -#: lib/app.php:265 -msgid "Questions" -msgstr "Sorular" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name}'nin Doğumgünü" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Kişi" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Kişi Ekle" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "İçe aktar" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Adres defterleri" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "Kapat" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "Klavye kısayolları" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "Dolaşım" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "Listedeki sonraki kişi" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "Listedeki önceki kişi" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "Şuanki adres defterini genişlet/daralt" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "Eylemler" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "Kişi listesini tazele" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "Yeni kişi ekle" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "Yeni adres defteri ekle" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "Şuanki kişiyi sil" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "Fotoğrafı yüklenmesi için bırakın" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "Mevcut fotoğrafı sil" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "Mevcut fotoğrafı düzenle" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "Yeni fotoğraf yükle" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "ownCloud'dan bir fotoğraf seç" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "Biçin özel, Kısa isim, Tam isim, Ters veya noktalı ters" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "İsim detaylarını düzenle" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Organizasyon" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Sil" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "Takma ad" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "Takma adı girin" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "Web sitesi" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "http://www.somesite.com" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "Web sitesine git" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "gg-aa-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "Gruplar" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "Grupları birbirinden virgülle ayırın" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "Grupları düzenle" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "Tercih edilen" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "Lütfen geçerli bir eposta adresi belirtin." - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "Eposta adresini girin" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "Eposta adresi" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "Eposta adresini sil" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "Telefon numarasını gir" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "Telefon numarasını sil" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "Haritada gör" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "Adres detaylarını düzenle" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "Notları buraya ekleyin." - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "Alan ekle" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Telefon" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Eposta" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Adres" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "Not" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "Kişiyi indir" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Kişiyi sil" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "Geçici resim ön bellekten silinmiştir." - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "Adresi düzenle" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "Tür" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Posta Kutusu" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "Sokak adresi" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "Sokak ve Numara" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Uzatılmış" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "Apartman numarası vb." - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Şehir" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Bölge" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "Örn. eyalet veya il" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Posta kodu" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "Posta kodu" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Ülke" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Adres defteri" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "Kısaltmalar" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "Bayan" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "Bayan" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "Bay" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "Bay" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "Bayan" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "Dr" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "Verilen isim" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "İlave isimler" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "Soyad" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "Kısaltmalar" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "J.D." - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "D.O." - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "D.C." - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "Dr." - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "Esq." - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "Jr." - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "Sn." - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "Bağlantı dosyasını içeri aktar" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "Yeni adres defterini seç" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "Yeni adres defteri oluştur" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "Yeni adres defteri için isim" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "Bağlantıları içe aktar" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "Adres defterinizde hiç bağlantı yok." - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "Bağlatı ekle" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "Adres deftelerini seçiniz" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "İsim giriniz" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "Tanım giriniz" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV adresleri eşzamanlıyor" - -#: templates/settings.php:3 -msgid "more info" -msgstr "daha fazla bilgi" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "Birincil adres (Bağlantı ve arkadaşları)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "İndir" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Düzenle" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Yeni Adres Defteri" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Kaydet" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "İptal" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 0fdd0fc3b3448f63a2b02878e58d85c5c44b8bba..17d229d03552bfbea0b20d339653c281208a0b89 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -32,55 +32,55 @@ msgstr "Eklenecek kategori yok?" msgid "This category already exists: " msgstr "Bu kategori zaten mevcut: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Ocak" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Şubat" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Mart" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Nisan" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Mayıs" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Haziran" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Temmuz" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Ağustos" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Eylül" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Ekim" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Kasım" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Aralık" @@ -108,8 +108,8 @@ msgstr "Tamam" msgid "No categories selected for deletion." msgstr "Silmek için bir kategori seçilmedi" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Hata" @@ -149,7 +149,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Parola" @@ -185,39 +186,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -241,12 +242,12 @@ msgstr "İstendi" msgid "Login failed!" msgstr "Giriş başarısız!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Kullanıcı adı" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Sıfırlama iste" @@ -302,52 +303,77 @@ msgstr "Kategorileri düzenle" msgid "Add" msgstr "Ekle" +#: 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 "Bir <strong>yönetici hesabı</strong> oluşturun" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Gelişmiş" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "kontrolünüzdeki web servisleri" @@ -355,15 +381,29 @@ msgstr "kontrolünüzdeki web servisleri" msgid "Log out" msgstr "Çıkış yap" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "hatırla" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Giriş yap" @@ -378,3 +418,17 @@ msgstr "önceki" #: templates/part.pagenavi.php:20 msgid "next" msgstr "sonraki" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/tr/files_odfviewer.po b/l10n/tr/files_odfviewer.po deleted file mode 100644 index 81c300af47a4f89c6171ee35726632acd84f86a5..0000000000000000000000000000000000000000 --- a/l10n/tr/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/tr/files_pdfviewer.po b/l10n/tr/files_pdfviewer.po deleted file mode 100644 index 8f66b76939404eb0e0e7c2b8885e9db970f40f1b..0000000000000000000000000000000000000000 --- a/l10n/tr/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/tr/files_texteditor.po b/l10n/tr/files_texteditor.po deleted file mode 100644 index d1aa8ee65ad4a8b3c0b738ddc83e0a0e33988ac9..0000000000000000000000000000000000000000 --- a/l10n/tr/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/tr/gallery.po b/l10n/tr/gallery.po deleted file mode 100644 index b150c44bf8a7251d504a1c9ff9b6607aad4ecbe8..0000000000000000000000000000000000000000 --- a/l10n/tr/gallery.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <ahmet_kaplan@hotmail.com>, 2012. -# Aranel Surion <aranel@aranelsurion.org>, 2012. -# Emre <emresaracoglu@live.com>, 2012. -# Necdet Yücel <necdetyucel@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 09:13+0000\n" -"Last-Translator: Emre Saraçoğlu <emresaracoglu@live.com>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Resimler" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Galeriyi paylaş" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Hata: " - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "İç hata" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "Slide Gösterim" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Geri" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Doğrulamayı kaldır" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Albümü silmek istiyor musunuz" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Albüm adını değiştir" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Yeni albüm adı" diff --git a/l10n/tr/impress.po b/l10n/tr/impress.po deleted file mode 100644 index ffbe59988655cf64398dd7621bc7e8d0a30d4b05..0000000000000000000000000000000000000000 --- a/l10n/tr/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/tr/media.po b/l10n/tr/media.po deleted file mode 100644 index 0d9a91d218b4c0acec5c19a069685c06efe50ccb..0000000000000000000000000000000000000000 --- a/l10n/tr/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Aranel Surion <aranel@aranelsurion.org>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Turkish (http://www.transifex.net/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "Müzik" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Oynat" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Beklet" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Önceki" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Sonraki" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Sesi kapat" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Sesi aç" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Koleksiyonu Tara" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Sanatç" - -#: templates/music.php:38 -msgid "Album" -msgstr "Albüm" - -#: templates/music.php:39 -msgid "Title" -msgstr "Başlık" diff --git a/l10n/tr/tasks.po b/l10n/tr/tasks.po deleted file mode 100644 index 68549f8375bb4e0d1584d1177f0e94de68a39651..0000000000000000000000000000000000000000 --- a/l10n/tr/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/tr/user_migrate.po b/l10n/tr/user_migrate.po deleted file mode 100644 index 5b31904b2f3c9dabb5b677d5d560b58a20ac858f..0000000000000000000000000000000000000000 --- a/l10n/tr/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/tr/user_openid.po b/l10n/tr/user_openid.po deleted file mode 100644 index 6c6f6b5ed5f5e79a66313cbb83e4eab3b8c11a30..0000000000000000000000000000000000000000 --- a/l10n/tr/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/uk/admin_dependencies_chk.po b/l10n/uk/admin_dependencies_chk.po deleted file mode 100644 index 5fae31131d780c0505d314da40882f037fe2ab36..0000000000000000000000000000000000000000 --- a/l10n/uk/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/uk/admin_migrate.po b/l10n/uk/admin_migrate.po deleted file mode 100644 index b0ba19c7eb9393ce685f0415854711f929ca1dcc..0000000000000000000000000000000000000000 --- a/l10n/uk/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/uk/bookmarks.po b/l10n/uk/bookmarks.po deleted file mode 100644 index 2183661f9f0ca12118a6fac84398d510ec8a6c2b..0000000000000000000000000000000000000000 --- a/l10n/uk/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/uk/calendar.po b/l10n/uk/calendar.po deleted file mode 100644 index a80f3c9db3ebecebb057be37cdd65ea414cbeeae..0000000000000000000000000000000000000000 --- a/l10n/uk/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Soul Kim <warlock.rf@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Новий часовий пояс" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Часовий пояс змінено" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Календар" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "День народження" - -#: lib/app.php:122 -msgid "Business" -msgstr "Справи" - -#: lib/app.php:123 -msgid "Call" -msgstr "Подзвонити" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Клієнти" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Свята" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ідеї" - -#: lib/app.php:128 -msgid "Journey" -msgstr "Поїздка" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Ювілей" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Зустріч" - -#: lib/app.php:131 -msgid "Other" -msgstr "Інше" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Особисте" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Проекти" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Запитання" - -#: lib/app.php:135 -msgid "Work" -msgstr "Робота" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "новий Календар" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Не повторювати" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Щоденно" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Щотижня" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "По будням" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Кожні дві неділі" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Щомісяця" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Щорічно" - -#: lib/object.php:388 -msgid "never" -msgstr "ніколи" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "" - -#: lib/object.php:390 -msgid "by date" -msgstr "" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Понеділок" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Вівторок" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Середа" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Четвер" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "П'ятниця" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Субота" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Неділя" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "" - -#: lib/object.php:428 -msgid "first" -msgstr "перший" - -#: lib/object.php:429 -msgid "second" -msgstr "другий" - -#: lib/object.php:430 -msgid "third" -msgstr "третій" - -#: lib/object.php:431 -msgid "fourth" -msgstr "четвертий" - -#: lib/object.php:432 -msgid "fifth" -msgstr "п'ятий" - -#: lib/object.php:433 -msgid "last" -msgstr "останній" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Січень" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Лютий" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Березень" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Квітень" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Травень" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Червень" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Липень" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Серпень" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Вересень" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Жовтень" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Листопад" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Грудень" - -#: lib/object.php:488 -msgid "by events date" -msgstr "" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Дата" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Кал." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Увесь день" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "Пропущені поля" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Назва" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Від Дати" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "З Часу" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "До Часу" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "По Дату" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Подія завершається до її початку" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "Сталася помилка бази даних" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Тиждень" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Місяць" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Список" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Сьогодні" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Ваші календарі" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Завантажити" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Редагувати" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Видалити" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Новий календар" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "Редагувати календар" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Активний" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Колір календаря" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Зберегти" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Відмінити" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "Експорт" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Назва події" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Категорія" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "З" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "По" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Місце" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Місце події" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Опис" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Опис події" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Повторювати" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "створити новий календар" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "Імпортувати файл календаря" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Назва нового календаря" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "Імпорт" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Створити нову подію" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Часовий пояс" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24г" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12г" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "Користувачі" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "Групи" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/uk/contacts.po b/l10n/uk/contacts.po deleted file mode 100644 index f415e863ccfa6a99343da592b4fe647efa1889c7..0000000000000000000000000000000000000000 --- a/l10n/uk/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Soul Kim <warlock.rf@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "Має бути заповнено щонайменше одне поле." - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "Це не ваша адресна книга." - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Мобільний" - -#: lib/app.php:203 -msgid "Text" -msgstr "Текст" - -#: lib/app.php:204 -msgid "Voice" -msgstr "Голос" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Факс" - -#: lib/app.php:207 -msgid "Video" -msgstr "Відео" - -#: lib/app.php:208 -msgid "Pager" -msgstr "Пейджер" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "День народження" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Додати контакт" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Організація" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Видалити" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Телефон" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Ел.пошта" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Адреса" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Видалити контакт" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "Розширено" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Місто" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Поштовий індекс" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Країна" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Завантажити" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "Нова адресна книга" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 47f5aeb743089c4673999ea97729aaf65be770ce..8657d0895cd8183ec2767663f298a407b6d14fd2 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.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-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -32,55 +32,55 @@ msgstr "" msgid "This category already exists: " msgstr "" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Налаштування" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Січень" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Лютий" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Березень" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Квітень" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Травень" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Червень" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Липень" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Серпень" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Вересень" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Жовтень" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Листопад" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Грудень" @@ -108,8 +108,8 @@ msgstr "" msgid "No categories selected for deletion." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Помилка" @@ -149,7 +149,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Пароль" @@ -185,39 +186,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -241,12 +242,12 @@ msgstr "" msgid "Login failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Ім'я користувача" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "" @@ -302,52 +303,77 @@ msgstr "" msgid "Add" msgstr "Додати" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 -msgid "Create an <strong>admin account</strong>" +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:48 msgid "Advanced" msgstr "" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Налаштування бази даних" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "буде використано" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Завершити налаштування" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "веб-сервіс під вашим контролем" @@ -355,15 +381,29 @@ msgstr "веб-сервіс під вашим контролем" msgid "Log out" msgstr "Вихід" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Вхід" @@ -378,3 +418,17 @@ msgstr "" #: templates/part.pagenavi.php:20 msgid "next" msgstr "" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/uk/files_odfviewer.po b/l10n/uk/files_odfviewer.po deleted file mode 100644 index f7dfc7c8debf2258f7aa564e2b35c016eb4bc3c7..0000000000000000000000000000000000000000 --- a/l10n/uk/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/uk/files_pdfviewer.po b/l10n/uk/files_pdfviewer.po deleted file mode 100644 index 5fb83eac039b22aa395d07e3396bfaea841bca2c..0000000000000000000000000000000000000000 --- a/l10n/uk/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/uk/files_texteditor.po b/l10n/uk/files_texteditor.po deleted file mode 100644 index 2c4cf49ae46e4e23658c171dd76e05f87654c943..0000000000000000000000000000000000000000 --- a/l10n/uk/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/uk/gallery.po b/l10n/uk/gallery.po deleted file mode 100644 index a29e3a1312de95b36f4de99e028c500587e34a6b..0000000000000000000000000000000000000000 --- a/l10n/uk/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Soul Kim <warlock.rf@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Ukrainian (http://www.transifex.net/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "Оновити" - -#: templates/index.php:17 -msgid "Stop" -msgstr "" - -#: templates/index.php:18 -msgid "Share" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Назад" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/uk/impress.po b/l10n/uk/impress.po deleted file mode 100644 index 1307d932c3d4ebc7b3c8c026e25596b899550451..0000000000000000000000000000000000000000 --- a/l10n/uk/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/uk/media.po b/l10n/uk/media.po deleted file mode 100644 index aef0c0eada9080ab8ab51d005b96bd0961d664e3..0000000000000000000000000000000000000000 --- a/l10n/uk/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <dzubchikd@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-31 22:53+0200\n" -"PO-Revision-Date: 2012-07-30 21:07+0000\n" -"Last-Translator: dzubchikd <dzubchikd@gmail.com>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "Музика" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "Додати альбом до плейлиста" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Грати" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Пауза" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Попередній" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Наступний" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Звук вкл." - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Звук викл." - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Повторне сканування колекції" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Виконавець" - -#: templates/music.php:38 -msgid "Album" -msgstr "Альбом" - -#: templates/music.php:39 -msgid "Title" -msgstr "Заголовок" diff --git a/l10n/uk/tasks.po b/l10n/uk/tasks.po deleted file mode 100644 index 37254722c735a048ea806698174f1a1338f79c93..0000000000000000000000000000000000000000 --- a/l10n/uk/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/uk/user_migrate.po b/l10n/uk/user_migrate.po deleted file mode 100644 index 816951cef340e5a3d319358bd884269b3dfd4184..0000000000000000000000000000000000000000 --- a/l10n/uk/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/uk/user_openid.po b/l10n/uk/user_openid.po deleted file mode 100644 index 699f470569be3a1fe6166c134fc39d739453d49c..0000000000000000000000000000000000000000 --- a/l10n/uk/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/vi/admin_dependencies_chk.po b/l10n/vi/admin_dependencies_chk.po deleted file mode 100644 index 9f7f77f611afa85fa1567acea732442496803346..0000000000000000000000000000000000000000 --- a/l10n/vi/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/vi/admin_migrate.po b/l10n/vi/admin_migrate.po deleted file mode 100644 index 58d15a553c4c6366f1fd9d2ce18f7cc617a302a7..0000000000000000000000000000000000000000 --- a/l10n/vi/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/vi/bookmarks.po b/l10n/vi/bookmarks.po deleted file mode 100644 index 38181e5d1faac971ca9661ae594f6ce911c472da..0000000000000000000000000000000000000000 --- a/l10n/vi/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/vi/calendar.po b/l10n/vi/calendar.po deleted file mode 100644 index b08b6e2ae866263d83691858c4c3ee2dda3150c6..0000000000000000000000000000000000000000 --- a/l10n/vi/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <mattheu_9x@yahoo.com>, 2012. -# Sơn Nguyễn <sonnghit@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "Không tìm thấy lịch." - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "Không tìm thấy sự kiện nào" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "Sai lịch" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "Múi giờ mới :" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "Thay đổi múi giờ" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "Yêu cầu không hợp lệ" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "Lịch" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "ddd M/d" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "dddd M/d" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "MMMM yyyy" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "dddd, MMM d, yyyy" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "Ngày sinh nhật" - -#: lib/app.php:122 -msgid "Business" -msgstr "Công việc" - -#: lib/app.php:123 -msgid "Call" -msgstr "Số điện thoại" - -#: lib/app.php:124 -msgid "Clients" -msgstr "Máy trạm" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "Ngày lễ" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "Ý tưởng" - -#: lib/app.php:128 -msgid "Journey" -msgstr "" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "Lễ kỷ niệm" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "Hội nghị" - -#: lib/app.php:131 -msgid "Other" -msgstr "Khác" - -#: lib/app.php:132 -msgid "Personal" -msgstr "Cá nhân" - -#: lib/app.php:133 -msgid "Projects" -msgstr "Dự án" - -#: lib/app.php:134 -msgid "Questions" -msgstr "Câu hỏi" - -#: lib/app.php:135 -msgid "Work" -msgstr "Công việc" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "Lịch mới" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "Không lặp lại" - -#: lib/object.php:373 -msgid "Daily" -msgstr "Hàng ngày" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "Hàng tuần" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "Mỗi ngày trong tuần" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "Hai tuần một lần" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "Hàng tháng" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "Hàng năm" - -#: lib/object.php:388 -msgid "never" -msgstr "không thay đổi" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "bởi xuất hiện" - -#: lib/object.php:390 -msgid "by date" -msgstr "bởi ngày" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "bởi ngày trong tháng" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "bởi ngày trong tuần" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "Thứ 2" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "Thứ 3" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "Thứ 4" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "Thứ 5" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "Thứ " - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "Thứ 7" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "Chủ nhật" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "sự kiện trong tuần của tháng" - -#: lib/object.php:428 -msgid "first" -msgstr "đầu tiên" - -#: lib/object.php:429 -msgid "second" -msgstr "Thứ hai" - -#: lib/object.php:430 -msgid "third" -msgstr "Thứ ba" - -#: lib/object.php:431 -msgid "fourth" -msgstr "Thứ tư" - -#: lib/object.php:432 -msgid "fifth" -msgstr "Thứ năm" - -#: lib/object.php:433 -msgid "last" -msgstr "" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "Tháng 1" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "Tháng 2" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "Tháng 3" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "Tháng 4" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "Tháng 5" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "Tháng 6" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "Tháng 7" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "Tháng 8" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "Tháng 9" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "Tháng 10" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "Tháng 11" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "Tháng 12" - -#: lib/object.php:488 -msgid "by events date" -msgstr "Theo ngày tháng sự kiện" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "số tuần" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "ngày, tháng" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "Ngày" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "Tất cả các ngày" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "Tiêu đề" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "Từ ngày" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "Từ thời gian" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "Tới ngày" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "Tới thời gian" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "Sự kiện này kết thúc trước khi nó bắt đầu" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "Tuần" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "Tháng" - -#: templates/calendar.php:41 -msgid "List" -msgstr "Danh sách" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "Hôm nay" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "Lịch của bạn" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "Liên kết CalDav " - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "Chia sẻ lịch" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "Không chia sẻ lcihj" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "Chia sẻ lịch" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "Tải về" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "Chỉnh sửa" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "Xóa" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "Chia sẻ bởi" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "Lịch mới" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "sửa Lịch" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "Hiển thị tên" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "Kích hoạt" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "Màu lịch" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "Lưu" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "Submit" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "Hủy" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "Sửa sự kiện" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "Chia sẻ" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "Tên sự kiện" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "Danh mục" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "Sự kiện trong ngày" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "Từ" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "Tới" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "Tùy chọn nâng cao" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "Nơi" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "Nơi tổ chức sự kiện" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "Mô tả" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "Mô tả sự kiện" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "Lặp lại" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "Nâng cao" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "Chọn ngày trong tuần" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "Chọn ngày" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "và sự kiện của ngày trong năm" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "và sự kiện của một ngày trong năm" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "Chọn tháng" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "Chọn tuần" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "và sự kiện của tuần trong năm." - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "Tạo lịch mới" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "Tên lịch mới" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "Đóng hộp thoại" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "Tạo một sự kiện mới" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "Xem một sự kiện" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "Không danh sách nào được chọn" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "của" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "tại" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "Múi giờ" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24h" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12h" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/vi/contacts.po b/l10n/vi/contacts.po deleted file mode 100644 index 924eb994b83cee028889d960dfee18e1e3a4d033..0000000000000000000000000000000000000000 --- a/l10n/vi/contacts.po +++ /dev/null @@ -1,953 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Sơn Nguyễn <sonnghit@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "id không được thiết lập." - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "Không có ID được cung cấp" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "Không tìm thấy sổ địa chỉ." - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "Không tìm thấy danh sách" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "tên phần tử không được thiết lập." - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "Missing ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "Lỗi đọc liên lạc hình ảnh." - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "Các hình ảnh tải không hợp lệ." - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "Tập tin không tồn tại" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "Lỗi khi tải hình ảnh." - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "Lỗi tải lên danh sách địa chỉ để lưu trữ." - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "Không có lỗi, các tập tin tải lên thành công" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "Liên lạc" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "Công việc" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "Nhà" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "Di động" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "Fax" - -#: lib/app.php:207 -msgid "Video" -msgstr "Video" - -#: lib/app.php:208 -msgid "Pager" -msgstr "số trang" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "Ngày sinh nhật" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "Danh sách" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "Thêm liên lạc" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "Sổ địa chỉ" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "Tổ chức" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "Xóa" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "Điện thoại" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "Email" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "Địa chỉ" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "Xóa liên lạc" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "Hòm thư bưu điện" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "Thành phố" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "Vùng/miền" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "Mã bưu điện" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "Quốc gia" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "Sổ địa chỉ" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "Tải về" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "Sửa" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "Lưu" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "Hủy" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index a5861cdf0f78a5011c6369d9e67a891ae9747079..ec6878969562f8dfecebbbd1c283c9cc2cd9a865 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <khanhnd@kenhgiaiphap.vn>, 2012. # Son Nguyen <sonnghit@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 06:30+0000\n" +"Last-Translator: khanhnd <khanhnd@kenhgiaiphap.vn>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,61 +31,61 @@ msgstr "Không có danh mục được thêm?" msgid "This category already exists: " msgstr "Danh mục này đã được tạo :" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "Tháng 1" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "Tháng 2" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "Tháng 3" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "Tháng 4" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "Tháng 5" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "Tháng 6" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "Tháng 7" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "Tháng 8" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "Tháng 9" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "Tháng 10" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "Tháng 11" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "Tháng 12" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Chọn" #: js/oc-dialogs.js:143 js/oc-dialogs.js:163 msgid "Cancel" @@ -106,26 +107,26 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "Không có thể loại nào được chọn để xóa." -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "Lỗi" #: js/share.js:103 msgid "Error while sharing" -msgstr "" +msgstr "Lỗi trong quá trình chia sẻ" #: js/share.js:114 msgid "Error while unsharing" -msgstr "" +msgstr "Lỗi trong quá trình gỡ chia sẻ" #: js/share.js:121 msgid "Error while changing permissions" -msgstr "" +msgstr "Lỗi trong quá trình phân quyền" #: js/share.js:130 msgid "Shared with you and the group" -msgstr "" +msgstr "Được chia sẻ với bạn và Nhóm" #: js/share.js:130 msgid "by" @@ -133,39 +134,40 @@ msgstr "" #: js/share.js:132 msgid "Shared with you by" -msgstr "" +msgstr "Được chia sẻ với bạn qua" #: js/share.js:137 msgid "Share with" -msgstr "" +msgstr "Chia sẻ với" #: js/share.js:142 msgid "Share with link" -msgstr "" +msgstr "Chia sẻ với link" #: js/share.js:143 msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "Mật khẩu" #: js/share.js:152 msgid "Set expiration date" -msgstr "" +msgstr "Đặt ngày kết thúc" #: js/share.js:153 msgid "Expiration date" -msgstr "" +msgstr "Ngày kết thúc" #: js/share.js:185 msgid "Share via email:" -msgstr "" +msgstr "Chia sẻ thông qua email" #: js/share.js:187 msgid "No people found" -msgstr "" +msgstr "Không tìm thấy người nào" #: js/share.js:214 msgid "Resharing is not allowed" @@ -173,51 +175,51 @@ msgstr "" #: js/share.js:250 msgid "Shared in" -msgstr "" +msgstr "Chi sẻ trong" #: js/share.js:250 msgid "with" -msgstr "" +msgstr "với" #: js/share.js:271 msgid "Unshare" -msgstr "" +msgstr "Gỡ bỏ chia sẻ" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" -msgstr "" +msgstr "quản lý truy cập" -#: js/share.js:284 +#: js/share.js:288 msgid "create" -msgstr "" +msgstr "tạo" -#: js/share.js:287 +#: js/share.js:291 msgid "update" -msgstr "" +msgstr "cập nhật" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" -msgstr "" +msgstr "xóa" -#: js/share.js:293 +#: js/share.js:297 msgid "share" -msgstr "" +msgstr "chia sẻ" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" -msgstr "" +msgstr "Mật khẩu bảo vệ" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Lỗi trong quá trình gỡ bỏ ngày kết thúc" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" -msgstr "" +msgstr "Lỗi cấu hình ngày kết thúc" #: lostpassword/index.php:26 msgid "ownCloud password reset" @@ -239,12 +241,12 @@ msgstr "Yêu cầu" msgid "Login failed!" msgstr "Bạn đã nhập sai mật khẩu hay tên người dùng !" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "Tên người dùng" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "Yêu cầu thiết lập lại " @@ -300,52 +302,77 @@ msgstr "Sửa thể loại" msgid "Add" msgstr "Thêm" +#: 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 "Tạo một <strong>tài khoản quản trị</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "Nâng cao" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "Cấu hình Cơ Sở Dữ Liệu" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "được sử dụng" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "Database host" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "Cài đặt hoàn tất" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "các dịch vụ web dưới sự kiểm soát của bạn" @@ -353,15 +380,29 @@ msgstr "các dịch vụ web dưới sự kiểm soát của bạn" msgid "Log out" msgstr "Đăng xuất" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "Nhớ" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "Đăng nhập" @@ -376,3 +417,17 @@ msgstr "Lùi lại" #: templates/part.pagenavi.php:20 msgid "next" msgstr "Kế tiếp" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 70e04f13f74bbf713a898279a058b3b5bc0a3fb6..45ec476b3a47947c15d2449c2e5cefe5eec249ba 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <khanhnd@kenhgiaiphap.vn>, 2012. # <mattheu_9x@yahoo.com>, 2012. # Sơn Nguyễn <sonnghit@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-26 13:19+0200\n" -"PO-Revision-Date: 2012-09-26 11:20+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 23:37+0200\n" +"PO-Revision-Date: 2012-10-16 07:20+0000\n" +"Last-Translator: khanhnd <khanhnd@kenhgiaiphap.vn>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,41 +64,41 @@ msgstr "Xóa" #: js/fileactions.js:182 msgid "Rename" -msgstr "" +msgstr "Sửa tên" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "already exists" msgstr "đã tồn tại" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "replace" msgstr "thay thế" -#: js/filelist.js:190 +#: js/filelist.js:192 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:190 js/filelist.js:192 +#: js/filelist.js:192 js/filelist.js:194 msgid "cancel" msgstr "hủy" -#: js/filelist.js:239 js/filelist.js:241 +#: js/filelist.js:241 js/filelist.js:243 msgid "replaced" msgstr "đã được thay thế" -#: js/filelist.js:239 js/filelist.js:241 js/filelist.js:273 js/filelist.js:275 +#: js/filelist.js:241 js/filelist.js:243 js/filelist.js:275 js/filelist.js:277 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:241 +#: js/filelist.js:243 msgid "with" msgstr "với" -#: js/filelist.js:273 +#: js/filelist.js:275 msgid "unshared" -msgstr "" +msgstr "gỡ chia sẻ" -#: js/filelist.js:275 +#: js/filelist.js:277 msgid "deleted" msgstr "đã xóa" @@ -105,114 +106,114 @@ msgstr "đã xóa" msgid "generating ZIP-file, it may take some time." msgstr "Tạo tập tinh ZIP, điều này có thể mất một ít thời gian" -#: js/files.js:208 +#: js/files.js:214 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" -#: js/files.js:208 +#: js/files.js:214 msgid "Upload Error" msgstr "Tải lên lỗi" -#: js/files.js:236 js/files.js:341 js/files.js:371 +#: js/files.js:242 js/files.js:347 js/files.js:377 msgid "Pending" msgstr "Chờ" -#: js/files.js:256 +#: js/files.js:262 msgid "1 file uploading" -msgstr "" +msgstr "1 tệp tin đang được tải lên" -#: js/files.js:259 js/files.js:304 js/files.js:319 +#: js/files.js:265 js/files.js:310 js/files.js:325 msgid "files uploading" -msgstr "" +msgstr "tệp tin đang được tải lên" -#: js/files.js:322 js/files.js:355 +#: js/files.js:328 js/files.js:361 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:424 +#: js/files.js:430 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/files.js:494 +#: js/files.js:500 msgid "Invalid name, '/' is not allowed." msgstr "Tên không hợp lệ ,không được phép dùng '/'" -#: js/files.js:667 +#: js/files.js:681 msgid "files scanned" -msgstr "" +msgstr "tệp tin đã quét" -#: js/files.js:675 +#: js/files.js:689 msgid "error while scanning" -msgstr "" +msgstr "lỗi trong khi quét" -#: js/files.js:748 templates/index.php:48 +#: js/files.js:762 templates/index.php:48 msgid "Name" msgstr "Tên" -#: js/files.js:749 templates/index.php:56 +#: js/files.js:763 templates/index.php:56 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:750 templates/index.php:58 +#: js/files.js:764 templates/index.php:58 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:777 +#: js/files.js:791 msgid "folder" msgstr "folder" -#: js/files.js:779 +#: js/files.js:793 msgid "folders" msgstr "folders" -#: js/files.js:787 +#: js/files.js:801 msgid "file" msgstr "file" -#: js/files.js:789 +#: js/files.js:803 msgid "files" msgstr "files" -#: js/files.js:833 +#: js/files.js:847 msgid "seconds ago" -msgstr "" +msgstr "giây trước" -#: js/files.js:834 +#: js/files.js:848 msgid "minute ago" -msgstr "" +msgstr "một phút trước" -#: js/files.js:835 +#: js/files.js:849 msgid "minutes ago" -msgstr "" +msgstr "phút trước" -#: js/files.js:838 +#: js/files.js:852 msgid "today" -msgstr "" +msgstr "hôm nay" -#: js/files.js:839 +#: js/files.js:853 msgid "yesterday" -msgstr "" +msgstr "hôm qua" -#: js/files.js:840 +#: js/files.js:854 msgid "days ago" -msgstr "" +msgstr "ngày trước" -#: js/files.js:841 +#: js/files.js:855 msgid "last month" -msgstr "" +msgstr "tháng trước" -#: js/files.js:843 +#: js/files.js:857 msgid "months ago" -msgstr "" +msgstr "tháng trước" -#: js/files.js:844 +#: js/files.js:858 msgid "last year" -msgstr "" +msgstr "năm trước" -#: js/files.js:845 +#: js/files.js:859 msgid "years ago" -msgstr "" +msgstr "năm trước" #: templates/admin.php:5 msgid "File handling" @@ -224,7 +225,7 @@ msgstr "Kích thước tối đa " #: templates/admin.php:7 msgid "max. possible: " -msgstr "" +msgstr "tối đa cho phép" #: templates/admin.php:9 msgid "Needed for multi-file and folder downloads." diff --git a/l10n/vi/files_odfviewer.po b/l10n/vi/files_odfviewer.po deleted file mode 100644 index 21d7de16b00690ae0bf157c6763da6e2b1b0b030..0000000000000000000000000000000000000000 --- a/l10n/vi/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/vi/files_pdfviewer.po b/l10n/vi/files_pdfviewer.po deleted file mode 100644 index f8265b4455022090eab54cfae07156a3ddf9cc79..0000000000000000000000000000000000000000 --- a/l10n/vi/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/vi/files_texteditor.po b/l10n/vi/files_texteditor.po deleted file mode 100644 index 40a7005281ceee6b7b6293be992d954c2ccddcd9..0000000000000000000000000000000000000000 --- a/l10n/vi/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index d6a9e9ee7aaa607d08b89d1062a15f5157cb2972..484f1f79c1817d06f401843f80cdfae254a3dbd8 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <khanhnd@kenhgiaiphap.vn>, 2012. # Sơn Nguyễn <sonnghit@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 06:32+0000\n" +"Last-Translator: khanhnd <khanhnd@kenhgiaiphap.vn>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "Hết hạn tất cả các phiên bản" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "Lịch sử" #: templates/settings-personal.php:4 msgid "Versions" @@ -36,8 +37,8 @@ msgstr "Điều này sẽ xóa tất cả các phiên bản sao lưu hiện có #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "Phiên bản tệp tin" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "Kích hoạtLịch sử" diff --git a/l10n/vi/gallery.po b/l10n/vi/gallery.po deleted file mode 100644 index 741f026c53d191ee144af6084bf40e0bffb40448..0000000000000000000000000000000000000000 --- a/l10n/vi/gallery.po +++ /dev/null @@ -1,60 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Son Nguyen <sonnghit@gmail.com>, 2012. -# Sơn Nguyễn <sonnghit@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-25 19:30+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "Hình ảnh" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "Chia sẻ gallery" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "Lỗi :" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "Lỗi nội bộ" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "Trở lại" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "Xóa xác nhận" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "Bạn muốn xóa album này " - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "Đổi tên album" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "Tên album mới" diff --git a/l10n/vi/impress.po b/l10n/vi/impress.po deleted file mode 100644 index af17dc75c44eba32c6b50e5a4586e04bb67bb75a..0000000000000000000000000000000000000000 --- a/l10n/vi/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/vi/media.po b/l10n/vi/media.po deleted file mode 100644 index 9c4613fa2bc7d0dfae9f8a0c8cb05d6b1d1a8a5a..0000000000000000000000000000000000000000 --- a/l10n/vi/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Sơn Nguyễn <sonnghit@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-07-26 08:03+0200\n" -"PO-Revision-Date: 2012-07-23 06:41+0000\n" -"Last-Translator: Sơn Nguyễn <sonnghit@gmail.com>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "Âm nhạc" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "Thêm album vào playlist" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "Play" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "Tạm dừng" - -#: templates/music.php:5 -msgid "Previous" -msgstr "Trang trước" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "Tiếp theo" - -#: templates/music.php:7 -msgid "Mute" -msgstr "Tắt" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "Bật" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "Quét lại bộ sưu tập" - -#: templates/music.php:37 -msgid "Artist" -msgstr "Nghệ sỹ" - -#: templates/music.php:38 -msgid "Album" -msgstr "Album" - -#: templates/music.php:39 -msgid "Title" -msgstr "Tiêu đề" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 5cac96c5e92493bad136b1ce26bb441df17dc719..60f4d9ddd7072235564cb3effcd2afe4b9b01ca3 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# <khanhnd@kenhgiaiphap.vn>, 2012. # <mattheu_9x@yahoo.com>, 2012. # Son Nguyen <sonnghit@gmail.com>, 2012. # Sơn Nguyễn <sonnghit@gmail.com>, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-09 02:03+0200\n" -"PO-Revision-Date: 2012-10-09 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 07:01+0000\n" +"Last-Translator: khanhnd <khanhnd@kenhgiaiphap.vn>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,22 +26,17 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Không thể tải danh sách ứng dụng từ App Store" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 -msgid "Authentication error" -msgstr "Lỗi xác thực" - -#: ajax/creategroup.php:19 +#: ajax/creategroup.php:12 msgid "Group already exists" msgstr "Nhóm đã tồn tại" -#: ajax/creategroup.php:28 +#: ajax/creategroup.php:21 msgid "Unable to add group" msgstr "Không thể thêm nhóm" #: ajax/enableapp.php:14 msgid "Could not enable app. " -msgstr "" +msgstr "không thể kích hoạt ứng dụng." #: ajax/lostpassword.php:14 msgid "Email saved" @@ -62,7 +58,11 @@ msgstr "Yêu cầu không hợp lệ" msgid "Unable to delete group" msgstr "Không thể xóa nhóm" -#: ajax/removeuser.php:22 +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "Lỗi xác thực" + +#: ajax/removeuser.php:27 msgid "Unable to delete user" msgstr "Không thể xóa người dùng" @@ -92,7 +92,7 @@ msgstr "Cho phép" msgid "Saving..." msgstr "Đang tiến hành lưu ..." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "__Ngôn ngữ___" @@ -115,23 +115,23 @@ msgstr "Cron" #: templates/admin.php:37 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Thực thi tác vụ mỗi khi trang được tải" #: templates/admin.php:43 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php đã được đăng ký tại một dịch vụ webcron. Gọi trang cron.php mỗi phút một lần thông qua giao thức http." #: templates/admin.php:49 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Sử dụng dịch vụ cron của hệ thống. Gọi tệp tin cron.php mỗi phút một lần." #: templates/admin.php:56 msgid "Sharing" -msgstr "" +msgstr "Chia sẻ" #: templates/admin.php:61 msgid "Enable Share API" @@ -189,7 +189,7 @@ msgstr "Thêm ứng dụng của bạn" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "Nhiều ứng dụng hơn" #: templates/apps.php:27 msgid "Select an App" @@ -230,7 +230,7 @@ msgstr "trả lời" #: templates/personal.php:8 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s<strong>" -msgstr "" +msgstr "Bạn đã sử dụng <strong>%s</strong> trong <strong>%s</strong> được phép." #: templates/personal.php:12 msgid "Desktop and Mobile Syncing Clients" @@ -242,7 +242,7 @@ msgstr "Tải về" #: templates/personal.php:19 msgid "Your password was changed" -msgstr "" +msgstr "Mật khẩu của bạn đã được thay đổi." #: templates/personal.php:20 msgid "Unable to change your password" diff --git a/l10n/vi/tasks.po b/l10n/vi/tasks.po deleted file mode 100644 index d22fa25d8cac6c576bb8d874737f3ab21985b550..0000000000000000000000000000000000000000 --- a/l10n/vi/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/vi/user_migrate.po b/l10n/vi/user_migrate.po deleted file mode 100644 index 1e5615249f75161fde04f58811eb5b38e5212906..0000000000000000000000000000000000000000 --- a/l10n/vi/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/vi/user_openid.po b/l10n/vi/user_openid.po deleted file mode 100644 index 848cdb3cf4b31fa941367d4e6310d4a9bf1a3a4a..0000000000000000000000000000000000000000 --- a/l10n/vi/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/zh_CN.GB2312/admin_dependencies_chk.po b/l10n/zh_CN.GB2312/admin_dependencies_chk.po deleted file mode 100644 index b226f02b4cacbb1c61f3e2445161dff327cb075e..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/zh_CN.GB2312/admin_migrate.po b/l10n/zh_CN.GB2312/admin_migrate.po deleted file mode 100644 index f33396b69ec3e97a0e56c372df72b1f4d8dbc5dd..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/zh_CN.GB2312/bookmarks.po b/l10n/zh_CN.GB2312/bookmarks.po deleted file mode 100644 index 7bf81fd460862c23b596fea51d06835770e8f2ea..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/zh_CN.GB2312/calendar.po b/l10n/zh_CN.GB2312/calendar.po deleted file mode 100644 index 5e807e319ff581de43e70db4b8a2b6b4bfd433ac..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/calendar.po +++ /dev/null @@ -1,814 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <bluehattree@126.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-12 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 14:53+0000\n" -"Last-Translator: bluehattree <bluehattree@126.com>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "错误的日历" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "新时区" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "时区改变了" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "非法请求" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "日历" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "生日" - -#: lib/app.php:122 -msgid "Business" -msgstr "商务" - -#: lib/app.php:123 -msgid "Call" -msgstr "呼叫" - -#: lib/app.php:124 -msgid "Clients" -msgstr "客户端" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "交付者" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "假期" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "灵感" - -#: lib/app.php:128 -msgid "Journey" -msgstr "旅行" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "五十年纪念" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "会面" - -#: lib/app.php:131 -msgid "Other" -msgstr "其它" - -#: lib/app.php:132 -msgid "Personal" -msgstr "个人的" - -#: lib/app.php:133 -msgid "Projects" -msgstr "项目" - -#: lib/app.php:134 -msgid "Questions" -msgstr "问题" - -#: lib/app.php:135 -msgid "Work" -msgstr "工作" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "新的日历" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "不要重复" - -#: lib/object.php:373 -msgid "Daily" -msgstr "每天" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "每星期" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "每个周末" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "每两周" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "每个月" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "每年" - -#: lib/object.php:388 -msgid "never" -msgstr "从不" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "根据发生时" - -#: lib/object.php:390 -msgid "by date" -msgstr "根据日期" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "根据月天" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "根据星期" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "星期一" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "星期二" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "星期三" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "星期四" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "星期五" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "星期六" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "星期天" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "时间每月发生的周数" - -#: lib/object.php:428 -msgid "first" -msgstr "首先" - -#: lib/object.php:429 -msgid "second" -msgstr "其次" - -#: lib/object.php:430 -msgid "third" -msgstr "第三" - -#: lib/object.php:431 -msgid "fourth" -msgstr "第四" - -#: lib/object.php:432 -msgid "fifth" -msgstr "第五" - -#: lib/object.php:433 -msgid "last" -msgstr "最后" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "一月" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "二月" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "三月" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "四月" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "五月" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "六月" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "七月" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "八月" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "九月" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "十月" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "十一月" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "十二月" - -#: lib/object.php:488 -msgid "by events date" -msgstr "根据时间日期" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "根据年数" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "根据周数" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "根据天和月" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "日期" - -#: lib/search.php:43 -msgid "Cal." -msgstr "Cal." - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "整天" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "丢失的输入框" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "标题" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "从日期" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "从时间" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "到日期" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "到时间" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "在它开始前需要结束的事件" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "发生了一个数据库失败" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "星期" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "月" - -#: templates/calendar.php:41 -msgid "List" -msgstr "列表" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "今天" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav 链接" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "下载" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "编辑" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "删除" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "新的日历" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "编辑日历" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "显示名称" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "活动" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "日历颜色" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "保存" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "提交" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr " 取消" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "编辑一个事件" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "导出" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "事件的标题" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "分类" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "每天的事件" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "从" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "到" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "进阶选项" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "地点" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "事件的地点" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "解释" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "事件描述" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "重复" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "进阶" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "选择星期" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "选择日" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "选择每年时间发生天数" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "选择每个月事件发生的天" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "选择月份" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "选择星期" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "每年时间发生的星期" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "间隔" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "结束" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "发生" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "导入" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "新建一个时间" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "时区" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24小时" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12小时" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "" diff --git a/l10n/zh_CN.GB2312/contacts.po b/l10n/zh_CN.GB2312/contacts.po deleted file mode 100644 index d4431695aeee87ae0b8a826b3919c4973af4c121..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/contacts.po +++ /dev/null @@ -1,952 +0,0 @@ -# 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: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "" - -#: lib/app.php:203 -msgid "Text" -msgstr "" - -#: lib/app.php:204 -msgid "Voice" -msgstr "" - -#: lib/app.php:205 -msgid "Message" -msgstr "" - -#: lib/app.php:206 -msgid "Fax" -msgstr "" - -#: lib/app.php:207 -msgid "Video" -msgstr "" - -#: lib/app.php:208 -msgid "Pager" -msgstr "" - -#: lib/app.php:215 -msgid "Internet" -msgstr "" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "" - -#: lib/search.php:15 -msgid "Contact" -msgstr "" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 892575be9dd1f54665e9c3eb2c5aa92a6369ffe8..a1beb02db9bdc3398d4a8bb48832f508eb35b389 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-12 02:04+0200\n" -"PO-Revision-Date: 2012-10-11 23:45+0000\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 11:59+0000\n" "Last-Translator: marguerite su <i@marguerite.su>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -31,55 +31,55 @@ msgstr "没有分类添加了?" msgid "This category already exists: " msgstr "这个分类已经存在了:" -#: js/js.js:229 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "设置" -#: js/js.js:661 +#: js/js.js:670 msgid "January" msgstr "一月" -#: js/js.js:661 +#: js/js.js:670 msgid "February" msgstr "二月" -#: js/js.js:661 +#: js/js.js:670 msgid "March" msgstr "三月" -#: js/js.js:661 +#: js/js.js:670 msgid "April" msgstr "四月" -#: js/js.js:661 +#: js/js.js:670 msgid "May" msgstr "五月" -#: js/js.js:661 +#: js/js.js:670 msgid "June" msgstr "六月" -#: js/js.js:662 +#: js/js.js:671 msgid "July" msgstr "七月" -#: js/js.js:662 +#: js/js.js:671 msgid "August" msgstr "八月" -#: js/js.js:662 +#: js/js.js:671 msgid "September" msgstr "九月" -#: js/js.js:662 +#: js/js.js:671 msgid "October" msgstr "十月" -#: js/js.js:662 +#: js/js.js:671 msgid "November" msgstr "十一月" -#: js/js.js:662 +#: js/js.js:671 msgid "December" msgstr "十二月" @@ -148,7 +148,8 @@ msgstr "分享链接" msgid "Password protect" msgstr "密码保护" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "密码" @@ -240,8 +241,8 @@ msgstr "请求" msgid "Login failed!" msgstr "登陆失败!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "用户名" @@ -301,48 +302,73 @@ msgstr "编辑分类" 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 "没有安全随机码生成器,请启用 PHP OpenSSL 扩展。" + +#: 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 "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "建立一个 <strong>管理帐户</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "进阶" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "数据存放文件夹" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "将会使用" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "数据库用户名" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "数据库表格空间" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "完成安装" @@ -354,15 +380,29 @@ msgstr "你控制下的网络服务" msgid "Log out" msgstr "注销" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "自动登录被拒绝!" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "如果您最近没有修改您的密码,那您的帐号可能被攻击了!" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "请修改您的密码以保护账户。" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:16 +#: templates/login.php:27 msgid "remember" msgstr "备忘" -#: templates/login.php:17 +#: templates/login.php:28 msgid "Log in" msgstr "登陆" @@ -377,3 +417,17 @@ 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 "请确认您的密码。<br/>处于安全原因你偶尔也会被要求再次输入您的密码。" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "确认" diff --git a/l10n/zh_CN.GB2312/files_odfviewer.po b/l10n/zh_CN.GB2312/files_odfviewer.po deleted file mode 100644 index c46ade9153f17edc27bcde0d90e0125bb80fc1d6..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/zh_CN.GB2312/files_pdfviewer.po b/l10n/zh_CN.GB2312/files_pdfviewer.po deleted file mode 100644 index a8c53c751dd16992636580d15b2aa8b3bf69505d..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/zh_CN.GB2312/files_texteditor.po b/l10n/zh_CN.GB2312/files_texteditor.po deleted file mode 100644 index 2e1dfee3c86b29ab36e446ddca614d00828e790d..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/zh_CN.GB2312/gallery.po b/l10n/zh_CN.GB2312/gallery.po deleted file mode 100644 index 32b2ed7179fb96631670538887ae06a85ba28455..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/gallery.po +++ /dev/null @@ -1,58 +0,0 @@ -# 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: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-01-15 13:48+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "" diff --git a/l10n/zh_CN.GB2312/impress.po b/l10n/zh_CN.GB2312/impress.po deleted file mode 100644 index 64aa634938d4763bb9c918659de0d3af305f5e8c..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/zh_CN.GB2312/media.po b/l10n/zh_CN.GB2312/media.po deleted file mode 100644 index 844e38b16f2f4402ed974b79b5300972be068920..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <bluehattree@126.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-12 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 14:06+0000\n" -"Last-Translator: bluehattree <bluehattree@126.com>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:45 templates/player.php:8 -msgid "Music" -msgstr "音乐" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "添加专辑到播放列表" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "播放" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "暂停" - -#: templates/music.php:5 -msgid "Previous" -msgstr "前面的" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "下一个" - -#: templates/music.php:7 -msgid "Mute" -msgstr "静音" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "取消静音" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "重新扫描收藏" - -#: templates/music.php:37 -msgid "Artist" -msgstr "艺术家" - -#: templates/music.php:38 -msgid "Album" -msgstr "专辑" - -#: templates/music.php:39 -msgid "Title" -msgstr "标题" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 292d5760fcdab5735849bc7a72f04e3cde836f78..f09da62c843e6bd21ad5cb958969b188c5203b62 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.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-10-09 02:03+0200\n" -"PO-Revision-Date: 2012-10-09 00:04+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2012-10-16 23:38+0200\n" +"PO-Revision-Date: 2012-10-16 12:18+0000\n" +"Last-Translator: marguerite su <i@marguerite.su>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,16 +23,11 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "不能从App Store 中加载列表" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 -msgid "Authentication error" -msgstr "认证错误" - -#: ajax/creategroup.php:19 +#: ajax/creategroup.php:12 msgid "Group already exists" msgstr "群组已存在" -#: ajax/creategroup.php:28 +#: ajax/creategroup.php:21 msgid "Unable to add group" msgstr "未能添加群组" @@ -60,7 +55,11 @@ msgstr "非法请求" msgid "Unable to delete group" msgstr "未能删除群组" -#: ajax/removeuser.php:22 +#: ajax/removeuser.php:18 ajax/setquota.php:18 ajax/togglegroups.php:15 +msgid "Authentication error" +msgstr "认证错误" + +#: ajax/removeuser.php:27 msgid "Unable to delete user" msgstr "未能删除用户" @@ -90,7 +89,7 @@ msgstr "启用" msgid "Saving..." msgstr "保存中..." -#: personal.php:47 personal.php:48 +#: personal.php:42 personal.php:43 msgid "__language_name__" msgstr "Chinese" @@ -187,7 +186,7 @@ msgstr "添加你的应用程序" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "更多应用" #: templates/apps.php:27 msgid "Select an App" diff --git a/l10n/zh_CN.GB2312/tasks.po b/l10n/zh_CN.GB2312/tasks.po deleted file mode 100644 index 5d43b9b7ec3345ee499332096a78f642b7f0e760..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/zh_CN.GB2312/user_migrate.po b/l10n/zh_CN.GB2312/user_migrate.po deleted file mode 100644 index 06769367e75f4ced0d58784cec25400636b60e82..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/zh_CN.GB2312/user_openid.po b/l10n/zh_CN.GB2312/user_openid.po deleted file mode 100644 index 1937fffe2a77c6396da978d6c86b4e0b3b2ac890..0000000000000000000000000000000000000000 --- a/l10n/zh_CN.GB2312/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/zh_CN/admin_dependencies_chk.po b/l10n/zh_CN/admin_dependencies_chk.po deleted file mode 100644 index 6200d7451b8795c12cf2e73cf37191445a6ebbe7..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/zh_CN/admin_migrate.po b/l10n/zh_CN/admin_migrate.po deleted file mode 100644 index a25182363fb14e9527f7904548066cdd5b242926..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/zh_CN/bookmarks.po b/l10n/zh_CN/bookmarks.po deleted file mode 100644 index 65c4c5efc1dabbe274c82aee8e1b7a7f80128fb2..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/bookmarks.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <appweb.cn@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-25 02:04+0200\n" -"PO-Revision-Date: 2012-08-24 01:10+0000\n" -"Last-Translator: hanfeng <appweb.cn@gmail.com>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "书签" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "未命名" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "拖曳此处到您的浏览器书签处,点击可以将网页快速添加到书签中。" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "稍后阅读" - -#: templates/list.php:13 -msgid "Address" -msgstr "地址" - -#: templates/list.php:14 -msgid "Title" -msgstr "标题" - -#: templates/list.php:15 -msgid "Tags" -msgstr "标签" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "保存书签" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "您暂无书签" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "书签应用" diff --git a/l10n/zh_CN/calendar.po b/l10n/zh_CN/calendar.po deleted file mode 100644 index b66ae0afc1157aea8adb9482a82c5d11d88899e8..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/calendar.po +++ /dev/null @@ -1,817 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Phoenix Nemo <>, 2012. -# <rainofchaos@gmail.com>, 2012. -# <wengxt@gmail.com>, 2011, 2012. -# 冰 蓝 <lanbing89@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "无法找到日历。" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "无法找到事件。" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "错误的日历" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "新时区:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "时区已修改" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "非法请求" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "日历" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "ddd" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "生日" - -#: lib/app.php:122 -msgid "Business" -msgstr "商务" - -#: lib/app.php:123 -msgid "Call" -msgstr "呼叫" - -#: lib/app.php:124 -msgid "Clients" -msgstr "客户" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "派送" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "节日" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "想法" - -#: lib/app.php:128 -msgid "Journey" -msgstr "旅行" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "周年纪念" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "会议" - -#: lib/app.php:131 -msgid "Other" -msgstr "其他" - -#: lib/app.php:132 -msgid "Personal" -msgstr "个人" - -#: lib/app.php:133 -msgid "Projects" -msgstr "项目" - -#: lib/app.php:134 -msgid "Questions" -msgstr "问题" - -#: lib/app.php:135 -msgid "Work" -msgstr "工作" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "未命名" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "新日历" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "不重复" - -#: lib/object.php:373 -msgid "Daily" -msgstr "每天" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "每周" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "每个工作日" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "每两周" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "每月" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "每年" - -#: lib/object.php:388 -msgid "never" -msgstr "从不" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "按发生次数" - -#: lib/object.php:390 -msgid "by date" -msgstr "按日期" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "按月的某天" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "按星期的某天" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "星期一" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "星期二" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "星期三" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "星期四" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "星期五" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "星期六" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "星期日" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "事件在每月的第几个星期" - -#: lib/object.php:428 -msgid "first" -msgstr "第一" - -#: lib/object.php:429 -msgid "second" -msgstr "第二" - -#: lib/object.php:430 -msgid "third" -msgstr "第三" - -#: lib/object.php:431 -msgid "fourth" -msgstr "第四" - -#: lib/object.php:432 -msgid "fifth" -msgstr "第五" - -#: lib/object.php:433 -msgid "last" -msgstr "最后" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "一月" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "二月" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "三月" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "四月" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "五月" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "六月" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "七月" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "八月" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "九月" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "十月" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "十一月" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "十二月" - -#: lib/object.php:488 -msgid "by events date" -msgstr "按事件日期" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "按每年的某天" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "按星期数" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "按天和月份" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "日期" - -#: lib/search.php:43 -msgid "Cal." -msgstr "日历" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "全天" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "缺少字段" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "标题" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "从" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "从" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "至" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "至" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "事件在开始前已结束" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "数据库访问失败" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "星期" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "月" - -#: templates/calendar.php:41 -msgid "List" -msgstr "列表" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "今天" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "您的日历" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav 链接" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "共享的日历" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "无共享的日历" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "共享日历" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "下载" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "编辑" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "删除" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr " " - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "新日历" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "编辑日历" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "显示名称" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "激活" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "日历颜色" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "保存" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "提交" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "取消" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "编辑事件" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "导出" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "事件信息" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "重复" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "提醒" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "参加者" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "共享" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "事件标题" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "分类" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "用逗号分隔分类" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "编辑分类" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "全天事件" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "自" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "至" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "高级选项" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "地点" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "事件地点" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "描述" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "事件描述" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "重复" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "高级" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "选择星期中的某天" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "选择某天" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "选择每年事件发生的日子" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "选择每月事件发生的日子" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "选择月份" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "选择星期" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "选择每年的事件发生的星期" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "间隔" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "结束" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "次" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "创建新日历" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "导入日历文件" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "新日历名称" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "导入" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "关闭对话框" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "创建新事件" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "查看事件" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "无选中分类" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "在" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "在" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "时区" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24小时" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12小时" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "用户" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "选中用户" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "可编辑" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "分组" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "选中分组" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "公开" diff --git a/l10n/zh_CN/contacts.po b/l10n/zh_CN/contacts.po deleted file mode 100644 index 78d0fb242ff35d065b7b16b8f24d71856096adfe..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/contacts.po +++ /dev/null @@ -1,955 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Phoenix Nemo <>, 2012. -# <rainofchaos@gmail.com>, 2012. -# <wengxt@gmail.com>, 2011, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:02+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "(取消)激活地址簿错误。" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "没有设置 id。" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "无法使用一个空名称更新地址簿" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "更新地址簿错误" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "未提供 ID" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "设置校验值错误。" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "未选中要删除的分类。" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "找不到地址簿。" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "找不到联系人。" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "添加联系人时出错。" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "元素名称未设置" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "无法添加空属性。" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "至少需要填写一项地址。" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "试图添加重复属性: " - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "vCard 的信息不正确。请重新加载页面。" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "缺少 ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "无法解析如下ID的 VCard:“" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "未设置校验值。" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "vCard 信息不正确。请刷新页面: " - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "有一些信息无法被处理。" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "未提交联系人 ID。" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "读取联系人照片错误。" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "保存临时文件错误。" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "装入的照片不正确。" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "缺少联系人 ID。" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "未提供照片路径。" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "文件不存在:" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "加载图片错误。" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "获取联系人目标时出错。" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "获取照片属性时出错。" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "保存联系人时出错。" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "缩放图像时出错" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "裁切图像时出错" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "创建临时图像时出错" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "查找图像时出错: " - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "上传联系人到存储空间时出错" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "文件上传成功,没有错误发生" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "上传的文件长度超出了 php.ini 中 upload_max_filesize 的限制" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "已上传文件只上传了部分" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "没有文件被上传" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "缺少临时目录" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "无法保存临时图像: " - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "无法加载临时图像: " - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "没有文件被上传。未知错误" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "联系人" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "抱歉,这个功能暂时还没有被实现" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "未实现" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "无法获取一个合法的地址。" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "错误" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "这个属性必须是非空的" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "无法序列化元素" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "'deleteProperty' 调用时没有类型声明。请到 bugs.owncloud.org 汇报错误" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "编辑名称" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "没有选择文件以上传" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "您试图上传的文件超出了该服务器的最大文件限制" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "选择类型" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "结果: " - -#: js/loader.js:49 -msgid " imported, " -msgstr " 已导入, " - -#: js/loader.js:49 -msgid " failed." -msgstr " 失败。" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "这不是您的地址簿。" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "无法找到联系人。" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "工作" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "家庭" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "移动电话" - -#: lib/app.php:203 -msgid "Text" -msgstr "文本" - -#: lib/app.php:204 -msgid "Voice" -msgstr "语音" - -#: lib/app.php:205 -msgid "Message" -msgstr "消息" - -#: lib/app.php:206 -msgid "Fax" -msgstr "传真" - -#: lib/app.php:207 -msgid "Video" -msgstr "视频" - -#: lib/app.php:208 -msgid "Pager" -msgstr "传呼机" - -#: lib/app.php:215 -msgid "Internet" -msgstr "互联网" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "生日" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name} 的生日" - -#: lib/search.php:15 -msgid "Contact" -msgstr "联系人" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "添加联系人" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "导入" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "地址簿" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "关闭" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "拖拽图片进行上传" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "删除当前照片" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "编辑当前照片" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "上传新照片" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "从 ownCloud 选择照片" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "自定义格式,简称,全名,姓在前,姓在前并用逗号分割" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "编辑名称详情" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "组织" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "删除" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "昵称" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "输入昵称" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "yyyy-mm-dd" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "分组" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "用逗号隔开分组" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "编辑分组" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "偏好" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "请指定合法的电子邮件地址" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "输入电子邮件地址" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "发送邮件到地址" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "删除电子邮件地址" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "输入电话号码" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "删除电话号码" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "在地图上显示" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "编辑地址细节。" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "添加注释。" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "添加字段" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "电话" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "电子邮件" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "地址" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "注释" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "下载联系人" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "删除联系人" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "临时图像文件已从缓存中删除" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "编辑地址" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "类型" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "邮箱" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "扩展" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "城市" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "地区" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "邮编" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "国家" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "地址簿" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "名誉字首" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "小姐" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "女士" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "先生" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "先生" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "夫人" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "博士" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "名" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "其他名称" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "姓" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "名誉后缀" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "法律博士" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "医学博士" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "骨科医学博士" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "教育学博士" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "哲学博士" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "先生" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "小" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "老" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "导入联系人文件" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "请选择地址簿" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "创建新地址簿" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "新地址簿名称" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "导入联系人" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "您的地址簿中没有联系人。" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "添加联系人" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "CardDAV 同步地址" - -#: templates/settings.php:3 -msgid "more info" -msgstr "更多信息" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "首选地址 (Kontact 等)" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "iOS/OS X" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "下载" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "编辑" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "新建地址簿" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "保存" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "取消" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 2c70770418278d39099ae0730b78b9f51c2703f5..bab36633e1afbb6be82718733c2c7a92154a63ec 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -33,55 +33,55 @@ msgstr "没有可添加分类?" msgid "This category already exists: " msgstr "此分类已存在: " -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "设置" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "一月" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "二月" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "三月" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "四月" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "五月" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "六月" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "七月" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "八月" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "九月" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "十月" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "十一月" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "十二月" @@ -109,8 +109,8 @@ msgstr "好" msgid "No categories selected for deletion." msgstr "没有选择要删除的类别" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "错误" @@ -150,7 +150,8 @@ msgstr "共享链接" msgid "Password protect" msgstr "密码保护" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "密码" @@ -186,39 +187,39 @@ msgstr "" msgid "Unshare" msgstr "取消共享" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "可以修改" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "访问控制" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "创建" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "更新" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "删除" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "共享" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "设置过期日期时出错" @@ -242,12 +243,12 @@ msgstr "已请求" msgid "Login failed!" msgstr "登录失败!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "用户名" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "请求重置" @@ -303,52 +304,77 @@ msgstr "编辑分类" msgid "Add" msgstr "添加" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "创建<strong>管理员账号</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "高级" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "安装完成" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "由您掌控的网络服务" @@ -356,15 +382,29 @@ msgstr "由您掌控的网络服务" msgid "Log out" msgstr "注销" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "记住" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "登录" @@ -379,3 +419,17 @@ msgstr "上一页" #: templates/part.pagenavi.php:20 msgid "next" msgstr "下一页" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/zh_CN/files_odfviewer.po b/l10n/zh_CN/files_odfviewer.po deleted file mode 100644 index fc8d8333ac08c9c9652c62d2550fe83c440c2319..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/zh_CN/files_pdfviewer.po b/l10n/zh_CN/files_pdfviewer.po deleted file mode 100644 index 86e0af951914b3f2271c4b53a6f6df5959300aec..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/zh_CN/files_texteditor.po b/l10n/zh_CN/files_texteditor.po deleted file mode 100644 index dc16629c116c68a17ffd79a61b9c11dcb9075ec9..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/zh_CN/gallery.po b/l10n/zh_CN/gallery.po deleted file mode 100644 index e268331a6e8aed6f7437004f70770509274a5f27..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/gallery.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Bartek <bart.p.pl@gmail.com>, 2012. -# <rainofchaos@gmail.com>, 2012. -# <wengxt@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-19 02:02+0200\n" -"PO-Revision-Date: 2012-08-18 05:50+0000\n" -"Last-Translator: leonfeng <rainofchaos@gmail.com>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:39 -msgid "Pictures" -msgstr "图片" - -#: js/pictures.js:12 -msgid "Share gallery" -msgstr "分享图库" - -#: js/pictures.js:32 -msgid "Error: " -msgstr "错误:" - -#: js/pictures.js:32 -msgid "Internal error" -msgstr "内部错误" - -#: templates/index.php:27 -msgid "Slideshow" -msgstr "幻灯片" diff --git a/l10n/zh_CN/impress.po b/l10n/zh_CN/impress.po deleted file mode 100644 index 47fab23c2536eb34f6dbd21d111730dc04f97ab9..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/zh_CN/media.po b/l10n/zh_CN/media.po deleted file mode 100644 index 1990c3e2be055a1723cb8a5a60d89ec24f59aecb..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# <wengxt@gmail.com>, 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "音乐" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "播放" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "暂停" - -#: templates/music.php:5 -msgid "Previous" -msgstr "前一首" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "后一首" - -#: templates/music.php:7 -msgid "Mute" -msgstr "静音" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "取消静音" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "重新扫描收藏" - -#: templates/music.php:37 -msgid "Artist" -msgstr "艺术家" - -#: templates/music.php:38 -msgid "Album" -msgstr "专辑" - -#: templates/music.php:39 -msgid "Title" -msgstr "标题" diff --git a/l10n/zh_CN/tasks.po b/l10n/zh_CN/tasks.po deleted file mode 100644 index 7f27dae57f2c758fd8e555efecbc79e9c485763d..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/zh_CN/user_migrate.po b/l10n/zh_CN/user_migrate.po deleted file mode 100644 index f422c21ddf4b653034a9998d5c4bffa682ec5165..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/zh_CN/user_openid.po b/l10n/zh_CN/user_openid.po deleted file mode 100644 index a7e4f24cc2172610ff74bca28f0230dcb7a2e5be..0000000000000000000000000000000000000000 --- a/l10n/zh_CN/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/l10n/zh_TW/admin_dependencies_chk.po b/l10n/zh_TW/admin_dependencies_chk.po deleted file mode 100644 index 9519ecc8d967a713cc390a838e7c76464b8bb020..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/admin_dependencies_chk.po +++ /dev/null @@ -1,73 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: settings.php:33 -msgid "" -"The php-json module is needed by the many applications for inter " -"communications" -msgstr "" - -#: settings.php:39 -msgid "" -"The php-curl modude is needed to fetch the page title when adding a " -"bookmarks" -msgstr "" - -#: settings.php:45 -msgid "The php-gd module is needed to create thumbnails of your images" -msgstr "" - -#: settings.php:51 -msgid "The php-ldap module is needed connect to your ldap server" -msgstr "" - -#: settings.php:57 -msgid "The php-zip module is needed download multiple files at once" -msgstr "" - -#: settings.php:63 -msgid "" -"The php-mb_multibyte module is needed to manage correctly the encoding." -msgstr "" - -#: settings.php:69 -msgid "The php-ctype module is needed validate data." -msgstr "" - -#: settings.php:75 -msgid "The php-xml module is needed to share files with webdav." -msgstr "" - -#: settings.php:81 -msgid "" -"The allow_url_fopen directive of your php.ini should be set to 1 to retrieve" -" knowledge base from OCS servers" -msgstr "" - -#: settings.php:87 -msgid "The php-pdo module is needed to store owncloud data into a database." -msgstr "" - -#: templates/settings.php:2 -msgid "Dependencies status" -msgstr "" - -#: templates/settings.php:7 -msgid "Used by :" -msgstr "" diff --git a/l10n/zh_TW/admin_migrate.po b/l10n/zh_TW/admin_migrate.po deleted file mode 100644 index ad633109b339b872d864a5c5eeb0f122ce5d3715..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/admin_migrate.po +++ /dev/null @@ -1,32 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:32+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/settings.php:3 -msgid "Export this ownCloud instance" -msgstr "" - -#: templates/settings.php:4 -msgid "" -"This will create a compressed file that contains the data of this owncloud instance.\n" -" Please choose the export type:" -msgstr "" - -#: templates/settings.php:12 -msgid "Export" -msgstr "" diff --git a/l10n/zh_TW/bookmarks.po b/l10n/zh_TW/bookmarks.po deleted file mode 100644 index 5735653faa5a89253b2d0932a033f8bae8b4ceb1..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/bookmarks.po +++ /dev/null @@ -1,60 +0,0 @@ -# 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: 2012-07-28 02:02+0200\n" -"PO-Revision-Date: 2012-07-27 22:17+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:14 -msgid "Bookmarks" -msgstr "" - -#: bookmarksHelper.php:99 -msgid "unnamed" -msgstr "" - -#: templates/bookmarklet.php:5 -msgid "" -"Drag this to your browser bookmarks and click it, when you want to bookmark " -"a webpage quickly:" -msgstr "" - -#: templates/bookmarklet.php:7 -msgid "Read later" -msgstr "" - -#: templates/list.php:13 -msgid "Address" -msgstr "" - -#: templates/list.php:14 -msgid "Title" -msgstr "" - -#: templates/list.php:15 -msgid "Tags" -msgstr "" - -#: templates/list.php:16 -msgid "Save bookmark" -msgstr "" - -#: templates/list.php:22 -msgid "You have no bookmarks" -msgstr "" - -#: templates/settings.php:11 -msgid "Bookmarklet <br />" -msgstr "" diff --git a/l10n/zh_TW/calendar.po b/l10n/zh_TW/calendar.po deleted file mode 100644 index 4af2f9358807b06baaa1b8da82249e790aac7ec0..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/calendar.po +++ /dev/null @@ -1,815 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Donahue Chuang <soshinwu@gmail.com>, 2012. -# Eddy Chang <taiwanmambo@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-11 02:02+0200\n" -"PO-Revision-Date: 2012-08-11 00:02+0000\n" -"Last-Translator: owncloud_robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/cache/status.php:19 -msgid "Not all calendars are completely cached" -msgstr "" - -#: ajax/cache/status.php:21 -msgid "Everything seems to be completely cached" -msgstr "" - -#: ajax/categories/rescan.php:29 -msgid "No calendars found." -msgstr "沒有找到行事曆" - -#: ajax/categories/rescan.php:37 -msgid "No events found." -msgstr "沒有找到活動" - -#: ajax/event/edit.form.php:20 -msgid "Wrong calendar" -msgstr "錯誤日曆" - -#: ajax/import/dropimport.php:29 ajax/import/import.php:64 -msgid "" -"The file contained either no events or all events are already saved in your " -"calendar." -msgstr "" - -#: ajax/import/dropimport.php:31 ajax/import/import.php:67 -msgid "events has been saved in the new calendar" -msgstr "" - -#: ajax/import/import.php:56 -msgid "Import failed" -msgstr "" - -#: ajax/import/import.php:69 -msgid "events has been saved in your calendar" -msgstr "" - -#: ajax/settings/guesstimezone.php:25 -msgid "New Timezone:" -msgstr "新時區:" - -#: ajax/settings/settimezone.php:23 -msgid "Timezone changed" -msgstr "時區已變更" - -#: ajax/settings/settimezone.php:25 -msgid "Invalid request" -msgstr "無效請求" - -#: appinfo/app.php:35 templates/calendar.php:15 -#: templates/part.eventform.php:33 templates/part.showevent.php:33 -msgid "Calendar" -msgstr "日曆" - -#: js/calendar.js:832 -msgid "ddd" -msgstr "" - -#: js/calendar.js:833 -msgid "ddd M/d" -msgstr "" - -#: js/calendar.js:834 -msgid "dddd M/d" -msgstr "" - -#: js/calendar.js:837 -msgid "MMMM yyyy" -msgstr "" - -#: js/calendar.js:839 -msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" -msgstr "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" - -#: js/calendar.js:841 -msgid "dddd, MMM d, yyyy" -msgstr "" - -#: lib/app.php:121 -msgid "Birthday" -msgstr "生日" - -#: lib/app.php:122 -msgid "Business" -msgstr "商業" - -#: lib/app.php:123 -msgid "Call" -msgstr "呼叫" - -#: lib/app.php:124 -msgid "Clients" -msgstr "客戶" - -#: lib/app.php:125 -msgid "Deliverer" -msgstr "遞送者" - -#: lib/app.php:126 -msgid "Holidays" -msgstr "節日" - -#: lib/app.php:127 -msgid "Ideas" -msgstr "主意" - -#: lib/app.php:128 -msgid "Journey" -msgstr "旅行" - -#: lib/app.php:129 -msgid "Jubilee" -msgstr "周年慶" - -#: lib/app.php:130 -msgid "Meeting" -msgstr "會議" - -#: lib/app.php:131 -msgid "Other" -msgstr "其他" - -#: lib/app.php:132 -msgid "Personal" -msgstr "個人" - -#: lib/app.php:133 -msgid "Projects" -msgstr "計畫" - -#: lib/app.php:134 -msgid "Questions" -msgstr "問題" - -#: lib/app.php:135 -msgid "Work" -msgstr "工作" - -#: lib/app.php:351 lib/app.php:361 -msgid "by" -msgstr "" - -#: lib/app.php:359 lib/app.php:399 -msgid "unnamed" -msgstr "無名稱的" - -#: lib/import.php:184 templates/calendar.php:12 -#: templates/part.choosecalendar.php:22 -msgid "New Calendar" -msgstr "新日曆" - -#: lib/object.php:372 -msgid "Does not repeat" -msgstr "不重覆" - -#: lib/object.php:373 -msgid "Daily" -msgstr "每日" - -#: lib/object.php:374 -msgid "Weekly" -msgstr "每週" - -#: lib/object.php:375 -msgid "Every Weekday" -msgstr "每週末" - -#: lib/object.php:376 -msgid "Bi-Weekly" -msgstr "每雙週" - -#: lib/object.php:377 -msgid "Monthly" -msgstr "每月" - -#: lib/object.php:378 -msgid "Yearly" -msgstr "每年" - -#: lib/object.php:388 -msgid "never" -msgstr "絕不" - -#: lib/object.php:389 -msgid "by occurrences" -msgstr "由事件" - -#: lib/object.php:390 -msgid "by date" -msgstr "由日期" - -#: lib/object.php:400 -msgid "by monthday" -msgstr "依月份日期" - -#: lib/object.php:401 -msgid "by weekday" -msgstr "由平日" - -#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:69 -msgid "Monday" -msgstr "週一" - -#: lib/object.php:412 templates/calendar.php:5 -msgid "Tuesday" -msgstr "週二" - -#: lib/object.php:413 templates/calendar.php:5 -msgid "Wednesday" -msgstr "週三" - -#: lib/object.php:414 templates/calendar.php:5 -msgid "Thursday" -msgstr "週四" - -#: lib/object.php:415 templates/calendar.php:5 -msgid "Friday" -msgstr "週五" - -#: lib/object.php:416 templates/calendar.php:5 -msgid "Saturday" -msgstr "週六" - -#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:70 -msgid "Sunday" -msgstr "週日" - -#: lib/object.php:427 -msgid "events week of month" -msgstr "月份中活動週" - -#: lib/object.php:428 -msgid "first" -msgstr "第一" - -#: lib/object.php:429 -msgid "second" -msgstr "第二" - -#: lib/object.php:430 -msgid "third" -msgstr "第三" - -#: lib/object.php:431 -msgid "fourth" -msgstr "第四" - -#: lib/object.php:432 -msgid "fifth" -msgstr "第五" - -#: lib/object.php:433 -msgid "last" -msgstr "最後" - -#: lib/object.php:467 templates/calendar.php:7 -msgid "January" -msgstr "一月" - -#: lib/object.php:468 templates/calendar.php:7 -msgid "February" -msgstr "二月" - -#: lib/object.php:469 templates/calendar.php:7 -msgid "March" -msgstr "三月" - -#: lib/object.php:470 templates/calendar.php:7 -msgid "April" -msgstr "四月" - -#: lib/object.php:471 templates/calendar.php:7 -msgid "May" -msgstr "五月" - -#: lib/object.php:472 templates/calendar.php:7 -msgid "June" -msgstr "六月" - -#: lib/object.php:473 templates/calendar.php:7 -msgid "July" -msgstr "七月" - -#: lib/object.php:474 templates/calendar.php:7 -msgid "August" -msgstr "八月" - -#: lib/object.php:475 templates/calendar.php:7 -msgid "September" -msgstr "九月" - -#: lib/object.php:476 templates/calendar.php:7 -msgid "October" -msgstr "十月" - -#: lib/object.php:477 templates/calendar.php:7 -msgid "November" -msgstr "十一月" - -#: lib/object.php:478 templates/calendar.php:7 -msgid "December" -msgstr "十二月" - -#: lib/object.php:488 -msgid "by events date" -msgstr "由事件日期" - -#: lib/object.php:489 -msgid "by yearday(s)" -msgstr "依年份日期" - -#: lib/object.php:490 -msgid "by weeknumber(s)" -msgstr "由週數" - -#: lib/object.php:491 -msgid "by day and month" -msgstr "由日與月" - -#: lib/search.php:35 lib/search.php:37 lib/search.php:40 -msgid "Date" -msgstr "日期" - -#: lib/search.php:43 -msgid "Cal." -msgstr "行事曆" - -#: templates/calendar.php:6 -msgid "Sun." -msgstr "" - -#: templates/calendar.php:6 -msgid "Mon." -msgstr "" - -#: templates/calendar.php:6 -msgid "Tue." -msgstr "" - -#: templates/calendar.php:6 -msgid "Wed." -msgstr "" - -#: templates/calendar.php:6 -msgid "Thu." -msgstr "" - -#: templates/calendar.php:6 -msgid "Fri." -msgstr "" - -#: templates/calendar.php:6 -msgid "Sat." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jan." -msgstr "" - -#: templates/calendar.php:8 -msgid "Feb." -msgstr "" - -#: templates/calendar.php:8 -msgid "Mar." -msgstr "" - -#: templates/calendar.php:8 -msgid "Apr." -msgstr "" - -#: templates/calendar.php:8 -msgid "May." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jun." -msgstr "" - -#: templates/calendar.php:8 -msgid "Jul." -msgstr "" - -#: templates/calendar.php:8 -msgid "Aug." -msgstr "" - -#: templates/calendar.php:8 -msgid "Sep." -msgstr "" - -#: templates/calendar.php:8 -msgid "Oct." -msgstr "" - -#: templates/calendar.php:8 -msgid "Nov." -msgstr "" - -#: templates/calendar.php:8 -msgid "Dec." -msgstr "" - -#: templates/calendar.php:11 -msgid "All day" -msgstr "整天" - -#: templates/calendar.php:13 -msgid "Missing fields" -msgstr "遺失欄位" - -#: templates/calendar.php:14 templates/part.eventform.php:19 -#: templates/part.showevent.php:11 -msgid "Title" -msgstr "標題" - -#: templates/calendar.php:16 -msgid "From Date" -msgstr "自日期" - -#: templates/calendar.php:17 -msgid "From Time" -msgstr "至時間" - -#: templates/calendar.php:18 -msgid "To Date" -msgstr "至日期" - -#: templates/calendar.php:19 -msgid "To Time" -msgstr "至時間" - -#: templates/calendar.php:20 -msgid "The event ends before it starts" -msgstr "事件的結束在開始之前" - -#: templates/calendar.php:21 -msgid "There was a database fail" -msgstr "資料庫錯誤" - -#: templates/calendar.php:39 -msgid "Week" -msgstr "週" - -#: templates/calendar.php:40 -msgid "Month" -msgstr "月" - -#: templates/calendar.php:41 -msgid "List" -msgstr "清單" - -#: templates/calendar.php:45 -msgid "Today" -msgstr "今日" - -#: templates/calendar.php:46 templates/calendar.php:47 -msgid "Settings" -msgstr "" - -#: templates/part.choosecalendar.php:2 -msgid "Your calendars" -msgstr "你的行事曆" - -#: templates/part.choosecalendar.php:27 -#: templates/part.choosecalendar.rowfields.php:11 -msgid "CalDav Link" -msgstr "CalDav 聯結" - -#: templates/part.choosecalendar.php:31 -msgid "Shared calendars" -msgstr "分享的行事曆" - -#: templates/part.choosecalendar.php:48 -msgid "No shared calendars" -msgstr "不分享的行事曆" - -#: templates/part.choosecalendar.rowfields.php:8 -msgid "Share Calendar" -msgstr "分享行事曆" - -#: templates/part.choosecalendar.rowfields.php:14 -msgid "Download" -msgstr "下載" - -#: templates/part.choosecalendar.rowfields.php:17 -msgid "Edit" -msgstr "編輯" - -#: templates/part.choosecalendar.rowfields.php:20 -#: templates/part.editevent.php:9 -msgid "Delete" -msgstr "刪除" - -#: templates/part.choosecalendar.rowfields.shared.php:4 -msgid "shared with you by" -msgstr "分享給你由" - -#: templates/part.editcalendar.php:9 -msgid "New calendar" -msgstr "新日曆" - -#: templates/part.editcalendar.php:9 -msgid "Edit calendar" -msgstr "編輯日曆" - -#: templates/part.editcalendar.php:12 -msgid "Displayname" -msgstr "顯示名稱" - -#: templates/part.editcalendar.php:23 -msgid "Active" -msgstr "作用中" - -#: templates/part.editcalendar.php:29 -msgid "Calendar color" -msgstr "日曆顏色" - -#: templates/part.editcalendar.php:42 -msgid "Save" -msgstr "儲存" - -#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 -#: templates/part.newevent.php:6 -msgid "Submit" -msgstr "提出" - -#: templates/part.editcalendar.php:43 -msgid "Cancel" -msgstr "取消" - -#: templates/part.editevent.php:1 -msgid "Edit an event" -msgstr "編輯事件" - -#: templates/part.editevent.php:10 -msgid "Export" -msgstr "匯出" - -#: templates/part.eventform.php:8 templates/part.showevent.php:3 -msgid "Eventinfo" -msgstr "活動資訊" - -#: templates/part.eventform.php:9 templates/part.showevent.php:4 -msgid "Repeating" -msgstr "重覆中" - -#: templates/part.eventform.php:10 templates/part.showevent.php:5 -msgid "Alarm" -msgstr "鬧鐘" - -#: templates/part.eventform.php:11 templates/part.showevent.php:6 -msgid "Attendees" -msgstr "出席者" - -#: templates/part.eventform.php:13 -msgid "Share" -msgstr "分享" - -#: templates/part.eventform.php:21 -msgid "Title of the Event" -msgstr "事件標題" - -#: templates/part.eventform.php:27 templates/part.showevent.php:19 -msgid "Category" -msgstr "分類" - -#: templates/part.eventform.php:29 -msgid "Separate categories with commas" -msgstr "用逗點分隔分類" - -#: templates/part.eventform.php:30 -msgid "Edit categories" -msgstr "編輯分類" - -#: templates/part.eventform.php:56 templates/part.showevent.php:52 -msgid "All Day Event" -msgstr "全天事件" - -#: templates/part.eventform.php:60 templates/part.showevent.php:56 -msgid "From" -msgstr "自" - -#: templates/part.eventform.php:68 templates/part.showevent.php:64 -msgid "To" -msgstr "至" - -#: templates/part.eventform.php:76 templates/part.showevent.php:72 -msgid "Advanced options" -msgstr "進階選項" - -#: templates/part.eventform.php:81 templates/part.showevent.php:77 -msgid "Location" -msgstr "位置" - -#: templates/part.eventform.php:83 -msgid "Location of the Event" -msgstr "事件位置" - -#: templates/part.eventform.php:89 templates/part.showevent.php:85 -msgid "Description" -msgstr "描述" - -#: templates/part.eventform.php:91 -msgid "Description of the Event" -msgstr "事件描述" - -#: templates/part.eventform.php:100 templates/part.showevent.php:95 -msgid "Repeat" -msgstr "重覆" - -#: templates/part.eventform.php:107 templates/part.showevent.php:102 -msgid "Advanced" -msgstr "進階" - -#: templates/part.eventform.php:151 templates/part.showevent.php:146 -msgid "Select weekdays" -msgstr "選擇平日" - -#: templates/part.eventform.php:164 templates/part.eventform.php:177 -#: templates/part.showevent.php:159 templates/part.showevent.php:172 -msgid "Select days" -msgstr "選擇日" - -#: templates/part.eventform.php:169 templates/part.showevent.php:164 -msgid "and the events day of year." -msgstr "以及年中的活動日" - -#: templates/part.eventform.php:182 templates/part.showevent.php:177 -msgid "and the events day of month." -msgstr "以及月中的活動日" - -#: templates/part.eventform.php:190 templates/part.showevent.php:185 -msgid "Select months" -msgstr "選擇月" - -#: templates/part.eventform.php:203 templates/part.showevent.php:198 -msgid "Select weeks" -msgstr "選擇週" - -#: templates/part.eventform.php:208 templates/part.showevent.php:203 -msgid "and the events week of year." -msgstr "以及年中的活動週" - -#: templates/part.eventform.php:214 templates/part.showevent.php:209 -msgid "Interval" -msgstr "間隔" - -#: templates/part.eventform.php:220 templates/part.showevent.php:215 -msgid "End" -msgstr "結束" - -#: templates/part.eventform.php:233 templates/part.showevent.php:228 -msgid "occurrences" -msgstr "事件" - -#: templates/part.import.php:14 -msgid "create a new calendar" -msgstr "建立新日曆" - -#: templates/part.import.php:17 -msgid "Import a calendar file" -msgstr "匯入日曆檔案" - -#: templates/part.import.php:24 -msgid "Please choose a calendar" -msgstr "" - -#: templates/part.import.php:36 -msgid "Name of new calendar" -msgstr "新日曆名稱" - -#: templates/part.import.php:44 -msgid "Take an available name!" -msgstr "" - -#: templates/part.import.php:45 -msgid "" -"A Calendar with this name already exists. If you continue anyhow, these " -"calendars will be merged." -msgstr "" - -#: templates/part.import.php:47 -msgid "Import" -msgstr "匯入" - -#: templates/part.import.php:56 -msgid "Close Dialog" -msgstr "關閉對話" - -#: templates/part.newevent.php:1 -msgid "Create a new event" -msgstr "建立一個新事件" - -#: templates/part.showevent.php:1 -msgid "View an event" -msgstr "觀看一個活動" - -#: templates/part.showevent.php:23 -msgid "No categories selected" -msgstr "沒有選擇分類" - -#: templates/part.showevent.php:37 -msgid "of" -msgstr "於" - -#: templates/part.showevent.php:59 templates/part.showevent.php:67 -msgid "at" -msgstr "於" - -#: templates/settings.php:10 -msgid "General" -msgstr "" - -#: templates/settings.php:15 -msgid "Timezone" -msgstr "時區" - -#: templates/settings.php:47 -msgid "Update timezone automatically" -msgstr "" - -#: templates/settings.php:52 -msgid "Time format" -msgstr "" - -#: templates/settings.php:57 -msgid "24h" -msgstr "24小時制" - -#: templates/settings.php:58 -msgid "12h" -msgstr "12小時制" - -#: templates/settings.php:64 -msgid "Start week on" -msgstr "" - -#: templates/settings.php:76 -msgid "Cache" -msgstr "" - -#: templates/settings.php:80 -msgid "Clear cache for repeating events" -msgstr "" - -#: templates/settings.php:85 -msgid "URLs" -msgstr "" - -#: templates/settings.php:87 -msgid "Calendar CalDAV syncing addresses" -msgstr "" - -#: templates/settings.php:87 -msgid "more info" -msgstr "" - -#: templates/settings.php:89 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:91 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:93 -msgid "Read only iCalendar link(s)" -msgstr "" - -#: templates/share.dropdown.php:20 -msgid "Users" -msgstr "使用者" - -#: templates/share.dropdown.php:21 -msgid "select users" -msgstr "選擇使用者" - -#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 -msgid "Editable" -msgstr "可編輯" - -#: templates/share.dropdown.php:48 -msgid "Groups" -msgstr "群組" - -#: templates/share.dropdown.php:49 -msgid "select groups" -msgstr "選擇群組" - -#: templates/share.dropdown.php:75 -msgid "make public" -msgstr "公開" diff --git a/l10n/zh_TW/contacts.po b/l10n/zh_TW/contacts.po deleted file mode 100644 index 254da03e8b5ebe31fe8bc620b619e39c08ac38a8..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/contacts.po +++ /dev/null @@ -1,954 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Donahue Chuang <soshinwu@gmail.com>, 2012. -# Eddy Chang <taiwanmambo@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-24 02:02+0200\n" -"PO-Revision-Date: 2012-08-24 00:03+0000\n" -"Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 -msgid "Error (de)activating addressbook." -msgstr "在啟用或關閉電話簿時發生錯誤" - -#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 -#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:32 -#: ajax/contact/saveproperty.php:39 -msgid "id is not set." -msgstr "" - -#: ajax/addressbook/update.php:24 -msgid "Cannot update addressbook with an empty name." -msgstr "" - -#: ajax/addressbook/update.php:28 -msgid "Error updating addressbook." -msgstr "電話簿更新中發生錯誤" - -#: ajax/categories/categoriesfor.php:17 -msgid "No ID provided" -msgstr "未提供 ID" - -#: ajax/categories/categoriesfor.php:34 -msgid "Error setting checksum." -msgstr "" - -#: ajax/categories/delete.php:19 -msgid "No categories selected for deletion." -msgstr "" - -#: ajax/categories/delete.php:26 -msgid "No address books found." -msgstr "" - -#: ajax/categories/delete.php:34 -msgid "No contacts found." -msgstr "沒有找到聯絡人" - -#: ajax/contact/add.php:47 -msgid "There was an error adding the contact." -msgstr "添加通訊錄發生錯誤" - -#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:36 -msgid "element name is not set." -msgstr "" - -#: ajax/contact/addproperty.php:46 -msgid "Could not parse contact: " -msgstr "" - -#: ajax/contact/addproperty.php:56 -msgid "Cannot add empty property." -msgstr "不可添加空白內容" - -#: ajax/contact/addproperty.php:67 -msgid "At least one of the address fields has to be filled out." -msgstr "至少必須填寫一欄地址" - -#: ajax/contact/addproperty.php:76 -msgid "Trying to add duplicate property: " -msgstr "" - -#: ajax/contact/addproperty.php:115 ajax/contact/saveproperty.php:93 -msgid "Missing IM parameter." -msgstr "" - -#: ajax/contact/addproperty.php:119 ajax/contact/saveproperty.php:97 -msgid "Unknown IM: " -msgstr "" - -#: ajax/contact/deleteproperty.php:37 -msgid "Information about vCard is incorrect. Please reload the page." -msgstr "有關 vCard 的資訊不正確,請重新載入此頁。" - -#: ajax/contact/details.php:31 -msgid "Missing ID" -msgstr "遺失ID" - -#: ajax/contact/details.php:36 -msgid "Error parsing VCard for ID: \"" -msgstr "" - -#: ajax/contact/saveproperty.php:42 -msgid "checksum is not set." -msgstr "" - -#: ajax/contact/saveproperty.php:62 -msgid "Information about vCard is incorrect. Please reload the page: " -msgstr "" - -#: ajax/contact/saveproperty.php:69 -msgid "Something went FUBAR. " -msgstr "" - -#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 -#: ajax/uploadphoto.php:68 -msgid "No contact ID was submitted." -msgstr "" - -#: ajax/currentphoto.php:36 -msgid "Error reading contact photo." -msgstr "" - -#: ajax/currentphoto.php:48 -msgid "Error saving temporary file." -msgstr "" - -#: ajax/currentphoto.php:51 -msgid "The loading photo is not valid." -msgstr "" - -#: ajax/editname.php:31 -msgid "Contact ID is missing." -msgstr "" - -#: ajax/oc_photo.php:32 -msgid "No photo path was submitted." -msgstr "" - -#: ajax/oc_photo.php:39 -msgid "File doesn't exist:" -msgstr "" - -#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 -msgid "Error loading image." -msgstr "" - -#: ajax/savecrop.php:69 -msgid "Error getting contact object." -msgstr "" - -#: ajax/savecrop.php:79 -msgid "Error getting PHOTO property." -msgstr "" - -#: ajax/savecrop.php:98 -msgid "Error saving contact." -msgstr "" - -#: ajax/savecrop.php:109 -msgid "Error resizing image" -msgstr "" - -#: ajax/savecrop.php:112 -msgid "Error cropping image" -msgstr "" - -#: ajax/savecrop.php:115 -msgid "Error creating temporary image" -msgstr "" - -#: ajax/savecrop.php:118 -msgid "Error finding image: " -msgstr "" - -#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 -msgid "Error uploading contacts to storage." -msgstr "" - -#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 -msgid "There is no error, the file uploaded with success" -msgstr "" - -#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" -msgstr "" - -#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "" - -#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 -msgid "No file was uploaded" -msgstr "沒有已上傳的檔案" - -#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 -msgid "Missing a temporary folder" -msgstr "" - -#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 -msgid "Couldn't save temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 -msgid "Couldn't load temporary image: " -msgstr "" - -#: ajax/uploadphoto.php:71 -msgid "No file was uploaded. Unknown error" -msgstr "" - -#: appinfo/app.php:21 -msgid "Contacts" -msgstr "通訊錄" - -#: js/contacts.js:71 -msgid "Sorry, this functionality has not been implemented yet" -msgstr "" - -#: js/contacts.js:71 -msgid "Not implemented" -msgstr "" - -#: js/contacts.js:76 -msgid "Couldn't get a valid address." -msgstr "" - -#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 -#: js/contacts.js:723 js/contacts.js:763 js/contacts.js:789 js/contacts.js:921 -#: js/contacts.js:927 js/contacts.js:939 js/contacts.js:976 -#: js/contacts.js:1250 js/contacts.js:1258 js/contacts.js:1267 -#: js/contacts.js:1302 js/contacts.js:1338 js/contacts.js:1353 -#: js/contacts.js:1379 js/contacts.js:1609 js/contacts.js:1644 -#: js/contacts.js:1664 js/settings.js:26 js/settings.js:43 js/settings.js:68 -msgid "Error" -msgstr "" - -#: js/contacts.js:424 -msgid "You do not have permission to add contacts to " -msgstr "" - -#: js/contacts.js:425 -msgid "Please select one of your own address books." -msgstr "" - -#: js/contacts.js:425 -msgid "Permission error" -msgstr "" - -#: js/contacts.js:763 -msgid "This property has to be non-empty." -msgstr "" - -#: js/contacts.js:789 -msgid "Couldn't serialize elements." -msgstr "" - -#: js/contacts.js:921 js/contacts.js:939 -msgid "" -"'deleteProperty' called without type argument. Please report at " -"bugs.owncloud.org" -msgstr "" - -#: js/contacts.js:958 -msgid "Edit name" -msgstr "" - -#: js/contacts.js:1250 -msgid "No files selected for upload." -msgstr "" - -#: js/contacts.js:1258 -msgid "" -"The file you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: js/contacts.js:1322 -msgid "Error loading profile picture." -msgstr "" - -#: js/contacts.js:1457 js/contacts.js:1498 js/contacts.js:1517 -#: js/contacts.js:1560 -msgid "Select type" -msgstr "" - -#: js/contacts.js:1578 -msgid "" -"Some contacts are marked for deletion, but not deleted yet. Please wait for " -"them to be deleted." -msgstr "" - -#: js/contacts.js:1649 -msgid "Do you want to merge these address books?" -msgstr "" - -#: js/loader.js:49 -msgid "Result: " -msgstr "" - -#: js/loader.js:49 -msgid " imported, " -msgstr "" - -#: js/loader.js:49 -msgid " failed." -msgstr "" - -#: js/settings.js:68 -msgid "Displayname cannot be empty." -msgstr "" - -#: lib/app.php:36 -msgid "Addressbook not found: " -msgstr "" - -#: lib/app.php:52 -msgid "This is not your addressbook." -msgstr "這不是你的電話簿" - -#: lib/app.php:71 -msgid "Contact could not be found." -msgstr "通訊錄未發現" - -#: lib/app.php:116 -msgid "Jabber" -msgstr "" - -#: lib/app.php:121 -msgid "AIM" -msgstr "" - -#: lib/app.php:126 -msgid "MSN" -msgstr "" - -#: lib/app.php:131 -msgid "Twitter" -msgstr "" - -#: lib/app.php:136 -msgid "GoogleTalk" -msgstr "" - -#: lib/app.php:141 -msgid "Facebook" -msgstr "" - -#: lib/app.php:146 -msgid "XMPP" -msgstr "" - -#: lib/app.php:151 -msgid "ICQ" -msgstr "" - -#: lib/app.php:156 -msgid "Yahoo" -msgstr "" - -#: lib/app.php:161 -msgid "Skype" -msgstr "" - -#: lib/app.php:166 -msgid "QQ" -msgstr "" - -#: lib/app.php:171 -msgid "GaduGadu" -msgstr "" - -#: lib/app.php:194 lib/app.php:202 lib/app.php:213 lib/app.php:266 -msgid "Work" -msgstr "公司" - -#: lib/app.php:195 lib/app.php:200 lib/app.php:214 -msgid "Home" -msgstr "住宅" - -#: lib/app.php:196 lib/app.php:209 lib/app.php:262 lib/vcard.php:593 -msgid "Other" -msgstr "" - -#: lib/app.php:201 -msgid "Mobile" -msgstr "行動電話" - -#: lib/app.php:203 -msgid "Text" -msgstr "文字" - -#: lib/app.php:204 -msgid "Voice" -msgstr "語音" - -#: lib/app.php:205 -msgid "Message" -msgstr "訊息" - -#: lib/app.php:206 -msgid "Fax" -msgstr "傳真" - -#: lib/app.php:207 -msgid "Video" -msgstr "影片" - -#: lib/app.php:208 -msgid "Pager" -msgstr "呼叫器" - -#: lib/app.php:215 -msgid "Internet" -msgstr "網際網路" - -#: lib/app.php:252 templates/part.contact.php:45 -#: templates/part.contact.php:128 -msgid "Birthday" -msgstr "生日" - -#: lib/app.php:253 -msgid "Business" -msgstr "" - -#: lib/app.php:254 -msgid "Call" -msgstr "" - -#: lib/app.php:255 -msgid "Clients" -msgstr "" - -#: lib/app.php:256 -msgid "Deliverer" -msgstr "" - -#: lib/app.php:257 -msgid "Holidays" -msgstr "" - -#: lib/app.php:258 -msgid "Ideas" -msgstr "" - -#: lib/app.php:259 -msgid "Journey" -msgstr "" - -#: lib/app.php:260 -msgid "Jubilee" -msgstr "" - -#: lib/app.php:261 -msgid "Meeting" -msgstr "" - -#: lib/app.php:263 -msgid "Personal" -msgstr "" - -#: lib/app.php:264 -msgid "Projects" -msgstr "" - -#: lib/app.php:265 -msgid "Questions" -msgstr "" - -#: lib/hooks.php:102 -msgid "{name}'s Birthday" -msgstr "{name}的生日" - -#: lib/search.php:15 -msgid "Contact" -msgstr "通訊錄" - -#: lib/vcard.php:408 -msgid "You do not have the permissions to edit this contact." -msgstr "" - -#: lib/vcard.php:483 -msgid "You do not have the permissions to delete this contact." -msgstr "" - -#: templates/index.php:14 -msgid "Add Contact" -msgstr "添加通訊錄" - -#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 -msgid "Import" -msgstr "" - -#: templates/index.php:18 -msgid "Settings" -msgstr "" - -#: templates/index.php:18 templates/settings.php:9 -msgid "Addressbooks" -msgstr "電話簿" - -#: templates/index.php:36 templates/part.import.php:24 -msgid "Close" -msgstr "" - -#: templates/index.php:37 -msgid "Keyboard shortcuts" -msgstr "" - -#: templates/index.php:39 -msgid "Navigation" -msgstr "" - -#: templates/index.php:42 -msgid "Next contact in list" -msgstr "" - -#: templates/index.php:44 -msgid "Previous contact in list" -msgstr "" - -#: templates/index.php:46 -msgid "Expand/collapse current addressbook" -msgstr "" - -#: templates/index.php:48 -msgid "Next addressbook" -msgstr "" - -#: templates/index.php:50 -msgid "Previous addressbook" -msgstr "" - -#: templates/index.php:54 -msgid "Actions" -msgstr "" - -#: templates/index.php:57 -msgid "Refresh contacts list" -msgstr "" - -#: templates/index.php:59 -msgid "Add new contact" -msgstr "" - -#: templates/index.php:61 -msgid "Add new addressbook" -msgstr "" - -#: templates/index.php:63 -msgid "Delete current contact" -msgstr "" - -#: templates/part.contact.php:17 -msgid "Drop photo to upload" -msgstr "" - -#: templates/part.contact.php:19 -msgid "Delete current photo" -msgstr "" - -#: templates/part.contact.php:20 -msgid "Edit current photo" -msgstr "" - -#: templates/part.contact.php:21 -msgid "Upload new photo" -msgstr "" - -#: templates/part.contact.php:22 -msgid "Select photo from ownCloud" -msgstr "" - -#: templates/part.contact.php:35 -msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" -msgstr "" - -#: templates/part.contact.php:36 -msgid "Edit name details" -msgstr "編輯姓名詳細資訊" - -#: templates/part.contact.php:39 templates/part.contact.php:40 -#: templates/part.contact.php:126 -msgid "Organization" -msgstr "組織" - -#: templates/part.contact.php:40 templates/part.contact.php:42 -#: templates/part.contact.php:44 templates/part.contact.php:46 -#: templates/part.contact.php:50 templates/settings.php:36 -msgid "Delete" -msgstr "刪除" - -#: templates/part.contact.php:41 templates/part.contact.php:127 -msgid "Nickname" -msgstr "綽號" - -#: templates/part.contact.php:42 -msgid "Enter nickname" -msgstr "輸入綽號" - -#: templates/part.contact.php:43 templates/part.contact.php:134 -msgid "Web site" -msgstr "" - -#: templates/part.contact.php:44 -msgid "http://www.somesite.com" -msgstr "" - -#: templates/part.contact.php:44 -msgid "Go to web site" -msgstr "" - -#: templates/part.contact.php:46 -msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#: templates/part.contact.php:47 templates/part.contact.php:135 -msgid "Groups" -msgstr "群組" - -#: templates/part.contact.php:49 -msgid "Separate groups with commas" -msgstr "用逗號分隔群組" - -#: templates/part.contact.php:50 -msgid "Edit groups" -msgstr "編輯群組" - -#: templates/part.contact.php:59 templates/part.contact.php:73 -#: templates/part.contact.php:98 -msgid "Preferred" -msgstr "首選" - -#: templates/part.contact.php:60 -msgid "Please specify a valid email address." -msgstr "註填入合法的電子郵件住址" - -#: templates/part.contact.php:60 -msgid "Enter email address" -msgstr "輸入電子郵件地址" - -#: templates/part.contact.php:64 -msgid "Mail to address" -msgstr "寄送住址" - -#: templates/part.contact.php:65 -msgid "Delete email address" -msgstr "刪除電子郵件住址" - -#: templates/part.contact.php:75 -msgid "Enter phone number" -msgstr "輸入電話號碼" - -#: templates/part.contact.php:79 -msgid "Delete phone number" -msgstr "刪除電話號碼" - -#: templates/part.contact.php:100 -msgid "Instant Messenger" -msgstr "" - -#: templates/part.contact.php:101 -msgid "Delete IM" -msgstr "" - -#: templates/part.contact.php:110 -msgid "View on map" -msgstr "" - -#: templates/part.contact.php:110 -msgid "Edit address details" -msgstr "電子郵件住址詳細資訊" - -#: templates/part.contact.php:116 -msgid "Add notes here." -msgstr "在這裡新增註解" - -#: templates/part.contact.php:124 -msgid "Add field" -msgstr "新增欄位" - -#: templates/part.contact.php:129 -msgid "Phone" -msgstr "電話" - -#: templates/part.contact.php:130 -msgid "Email" -msgstr "電子郵件" - -#: templates/part.contact.php:131 -msgid "Instant Messaging" -msgstr "" - -#: templates/part.contact.php:132 -msgid "Address" -msgstr "地址" - -#: templates/part.contact.php:133 -msgid "Note" -msgstr "註解" - -#: templates/part.contact.php:138 -msgid "Download contact" -msgstr "下載通訊錄" - -#: templates/part.contact.php:139 -msgid "Delete contact" -msgstr "刪除通訊錄" - -#: templates/part.cropphoto.php:65 -msgid "The temporary image has been removed from cache." -msgstr "" - -#: templates/part.edit_address_dialog.php:6 -msgid "Edit address" -msgstr "" - -#: templates/part.edit_address_dialog.php:10 -msgid "Type" -msgstr "類型" - -#: templates/part.edit_address_dialog.php:18 -#: templates/part.edit_address_dialog.php:21 -msgid "PO Box" -msgstr "通訊地址" - -#: templates/part.edit_address_dialog.php:24 -msgid "Street address" -msgstr "" - -#: templates/part.edit_address_dialog.php:27 -msgid "Street and number" -msgstr "" - -#: templates/part.edit_address_dialog.php:30 -msgid "Extended" -msgstr "分機" - -#: templates/part.edit_address_dialog.php:33 -msgid "Apartment number etc." -msgstr "" - -#: templates/part.edit_address_dialog.php:36 -#: templates/part.edit_address_dialog.php:39 -msgid "City" -msgstr "城市" - -#: templates/part.edit_address_dialog.php:42 -msgid "Region" -msgstr "地區" - -#: templates/part.edit_address_dialog.php:45 -msgid "E.g. state or province" -msgstr "" - -#: templates/part.edit_address_dialog.php:48 -msgid "Zipcode" -msgstr "郵遞區號" - -#: templates/part.edit_address_dialog.php:51 -msgid "Postal code" -msgstr "" - -#: templates/part.edit_address_dialog.php:54 -#: templates/part.edit_address_dialog.php:57 -msgid "Country" -msgstr "國家" - -#: templates/part.edit_name_dialog.php:16 -msgid "Addressbook" -msgstr "電話簿" - -#: templates/part.edit_name_dialog.php:23 -msgid "Hon. prefixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:27 -msgid "Miss" -msgstr "" - -#: templates/part.edit_name_dialog.php:28 -msgid "Ms" -msgstr "" - -#: templates/part.edit_name_dialog.php:29 -msgid "Mr" -msgstr "先生" - -#: templates/part.edit_name_dialog.php:30 -msgid "Sir" -msgstr "先生" - -#: templates/part.edit_name_dialog.php:31 -msgid "Mrs" -msgstr "小姐" - -#: templates/part.edit_name_dialog.php:32 -msgid "Dr" -msgstr "博士(醫生)" - -#: templates/part.edit_name_dialog.php:35 -msgid "Given name" -msgstr "給定名(名)" - -#: templates/part.edit_name_dialog.php:37 -msgid "Additional names" -msgstr "額外名" - -#: templates/part.edit_name_dialog.php:39 -msgid "Family name" -msgstr "家族名(姓)" - -#: templates/part.edit_name_dialog.php:41 -msgid "Hon. suffixes" -msgstr "" - -#: templates/part.edit_name_dialog.php:45 -msgid "J.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:46 -msgid "M.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:47 -msgid "D.O." -msgstr "" - -#: templates/part.edit_name_dialog.php:48 -msgid "D.C." -msgstr "" - -#: templates/part.edit_name_dialog.php:49 -msgid "Ph.D." -msgstr "" - -#: templates/part.edit_name_dialog.php:50 -msgid "Esq." -msgstr "" - -#: templates/part.edit_name_dialog.php:51 -msgid "Jr." -msgstr "" - -#: templates/part.edit_name_dialog.php:52 -msgid "Sn." -msgstr "" - -#: templates/part.import.php:1 -msgid "Import a contacts file" -msgstr "" - -#: templates/part.import.php:6 -msgid "Please choose the addressbook" -msgstr "" - -#: templates/part.import.php:10 -msgid "create a new addressbook" -msgstr "" - -#: templates/part.import.php:15 -msgid "Name of new addressbook" -msgstr "" - -#: templates/part.import.php:20 -msgid "Importing contacts" -msgstr "" - -#: templates/part.no_contacts.php:3 -msgid "You have no contacts in your addressbook." -msgstr "" - -#: templates/part.no_contacts.php:5 -msgid "Add contact" -msgstr "" - -#: templates/part.selectaddressbook.php:1 -msgid "Select Address Books" -msgstr "" - -#: templates/part.selectaddressbook.php:27 -msgid "Enter name" -msgstr "" - -#: templates/part.selectaddressbook.php:29 -msgid "Enter description" -msgstr "" - -#: templates/settings.php:3 -msgid "CardDAV syncing addresses" -msgstr "" - -#: templates/settings.php:3 -msgid "more info" -msgstr "" - -#: templates/settings.php:5 -msgid "Primary address (Kontact et al)" -msgstr "" - -#: templates/settings.php:7 -msgid "iOS/OS X" -msgstr "" - -#: templates/settings.php:20 -msgid "Show CardDav link" -msgstr "" - -#: templates/settings.php:23 -msgid "Show read-only VCF link" -msgstr "" - -#: templates/settings.php:26 -msgid "Share" -msgstr "" - -#: templates/settings.php:29 -msgid "Download" -msgstr "下載" - -#: templates/settings.php:33 -msgid "Edit" -msgstr "編輯" - -#: templates/settings.php:43 -msgid "New Address Book" -msgstr "新電話簿" - -#: templates/settings.php:44 -msgid "Name" -msgstr "" - -#: templates/settings.php:45 -msgid "Description" -msgstr "" - -#: templates/settings.php:46 -msgid "Save" -msgstr "儲存" - -#: templates/settings.php:47 -msgid "Cancel" -msgstr "取消" - -#: templates/settings.php:52 -msgid "More..." -msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 97fc8c8bf663404c6f33c6b9643ca20882031a75..9bb44a04f17c2d83d10dc97401a674eda3ceda24 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 21:34+0000\n" +"POT-Creation-Date: 2012-10-16 02:04+0200\n" +"PO-Revision-Date: 2012-10-16 00:05+0000\n" "Last-Translator: I Robot <thomas.mueller@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -31,55 +31,55 @@ msgstr "無分類添加?" msgid "This category already exists: " msgstr "此分類已經存在:" -#: js/js.js:213 templates/layout.user.php:49 templates/layout.user.php:50 +#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 msgid "Settings" msgstr "設定" -#: js/js.js:645 +#: js/js.js:670 msgid "January" msgstr "一月" -#: js/js.js:645 +#: js/js.js:670 msgid "February" msgstr "二月" -#: js/js.js:645 +#: js/js.js:670 msgid "March" msgstr "三月" -#: js/js.js:645 +#: js/js.js:670 msgid "April" msgstr "四月" -#: js/js.js:645 +#: js/js.js:670 msgid "May" msgstr "五月" -#: js/js.js:645 +#: js/js.js:670 msgid "June" msgstr "六月" -#: js/js.js:646 +#: js/js.js:671 msgid "July" msgstr "七月" -#: js/js.js:646 +#: js/js.js:671 msgid "August" msgstr "八月" -#: js/js.js:646 +#: js/js.js:671 msgid "September" msgstr "九月" -#: js/js.js:646 +#: js/js.js:671 msgid "October" msgstr "十月" -#: js/js.js:646 +#: js/js.js:671 msgid "November" msgstr "十一月" -#: js/js.js:646 +#: js/js.js:671 msgid "December" msgstr "十二月" @@ -107,8 +107,8 @@ msgstr "Ok" msgid "No categories selected for deletion." msgstr "沒選擇要刪除的分類" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:489 -#: js/share.js:501 +#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 +#: js/share.js:509 msgid "Error" msgstr "錯誤" @@ -148,7 +148,8 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:30 templates/login.php:13 +#: js/share.js:147 templates/installation.php:42 templates/login.php:24 +#: templates/verify.php:13 msgid "Password" msgstr "密碼" @@ -184,39 +185,39 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/share.js:279 +#: js/share.js:283 msgid "can edit" msgstr "" -#: js/share.js:281 +#: js/share.js:285 msgid "access control" msgstr "" -#: js/share.js:284 +#: js/share.js:288 msgid "create" msgstr "" -#: js/share.js:287 +#: js/share.js:291 msgid "update" msgstr "" -#: js/share.js:290 +#: js/share.js:294 msgid "delete" msgstr "" -#: js/share.js:293 +#: js/share.js:297 msgid "share" msgstr "" -#: js/share.js:317 js/share.js:476 +#: js/share.js:322 js/share.js:484 msgid "Password protected" msgstr "" -#: js/share.js:489 +#: js/share.js:497 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:501 +#: js/share.js:509 msgid "Error setting expiration date" msgstr "" @@ -240,12 +241,12 @@ msgstr "已要求" msgid "Login failed!" msgstr "登入失敗!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:26 -#: templates/login.php:9 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 +#: templates/login.php:20 msgid "Username" msgstr "使用者名稱" -#: lostpassword/templates/lostpassword.php:15 +#: lostpassword/templates/lostpassword.php:14 msgid "Request reset" msgstr "要求重設" @@ -301,52 +302,77 @@ msgstr "編輯分類" msgid "Add" msgstr "添加" +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + #: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 msgid "Create an <strong>admin account</strong>" msgstr "建立一個<strong>管理者帳號</strong>" -#: templates/installation.php:36 +#: templates/installation.php:48 msgid "Advanced" msgstr "進階" -#: templates/installation.php:38 +#: templates/installation.php:50 msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:45 +#: templates/installation.php:57 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:50 templates/installation.php:61 -#: templates/installation.php:71 templates/installation.php:81 +#: templates/installation.php:62 templates/installation.php:73 +#: templates/installation.php:83 templates/installation.php:93 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:93 +#: templates/installation.php:105 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:97 +#: templates/installation.php:109 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:101 +#: templates/installation.php:113 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:109 +#: templates/installation.php:121 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:115 +#: templates/installation.php:127 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:120 +#: templates/installation.php:132 msgid "Finish setup" msgstr "完成設定" -#: templates/layout.guest.php:36 +#: templates/layout.guest.php:38 msgid "web services under your control" msgstr "網路服務已在你控制" @@ -354,15 +380,29 @@ msgstr "網路服務已在你控制" msgid "Log out" msgstr "登出" -#: templates/login.php:6 +#: templates/login.php:8 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:9 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:10 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:15 msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:17 +#: templates/login.php:27 msgid "remember" msgstr "記住" -#: templates/login.php:18 +#: templates/login.php:28 msgid "Log in" msgstr "登入" @@ -377,3 +417,17 @@ msgstr "上一頁" #: templates/part.pagenavi.php:20 msgid "next" msgstr "下一頁" + +#: templates/verify.php:5 +msgid "Security Warning!" +msgstr "" + +#: templates/verify.php:6 +msgid "" +"Please verify your password. <br/>For security reasons you may be " +"occasionally asked to enter your password again." +msgstr "" + +#: templates/verify.php:16 +msgid "Verify" +msgstr "" diff --git a/l10n/zh_TW/files_odfviewer.po b/l10n/zh_TW/files_odfviewer.po deleted file mode 100644 index 2327d1c14a076e0a2f6448f92a1d0059906b8ddb..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/files_odfviewer.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:9 -msgid "Close" -msgstr "" diff --git a/l10n/zh_TW/files_pdfviewer.po b/l10n/zh_TW/files_pdfviewer.po deleted file mode 100644 index 9bccfd7d921d975494ec9e4ff19eaf5c43332387..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/files_pdfviewer.po +++ /dev/null @@ -1,42 +0,0 @@ -# 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: 2012-08-26 02:18+0200\n" -"PO-Revision-Date: 2012-08-26 00:19+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/viewer.js:22 -msgid "Previous" -msgstr "" - -#: js/viewer.js:23 -msgid "Next" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Width" -msgstr "" - -#: js/viewer.js:29 -msgid "Page Fit" -msgstr "" - -#: js/viewer.js:30 -msgid "Print" -msgstr "" - -#: js/viewer.js:32 -msgid "Download" -msgstr "" diff --git a/l10n/zh_TW/files_texteditor.po b/l10n/zh_TW/files_texteditor.po deleted file mode 100644 index e57c25f2796d053cc4251fea29cccf3288f0daaa..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/files_texteditor.po +++ /dev/null @@ -1,44 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/aceeditor/mode-coldfusion-uncompressed.js:1568 -#: js/aceeditor/mode-liquid-uncompressed.js:902 -#: js/aceeditor/mode-svg-uncompressed.js:1575 -msgid "regex" -msgstr "" - -#: js/editor.js:72 js/editor.js:156 js/editor.js:163 -msgid "Save" -msgstr "" - -#: js/editor.js:74 -msgid "Close" -msgstr "" - -#: js/editor.js:149 -msgid "Saving..." -msgstr "" - -#: js/editor.js:239 -msgid "An error occurred!" -msgstr "" - -#: js/editor.js:266 -msgid "There were unsaved changes, click here to go back" -msgstr "" diff --git a/l10n/zh_TW/gallery.po b/l10n/zh_TW/gallery.po deleted file mode 100644 index 6f7fa99d1ef398301eb077d7644190bea33ba0d7..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/gallery.po +++ /dev/null @@ -1,95 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Donahue Chuang <soshinwu@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.net/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:37 -msgid "Pictures" -msgstr "圖片" - -#: js/album_cover.js:44 -msgid "Share gallery" -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 js/album_cover.js:133 -msgid "Error: " -msgstr "" - -#: js/album_cover.js:64 js/album_cover.js:100 -msgid "Internal error" -msgstr "" - -#: js/album_cover.js:114 -msgid "Scanning root" -msgstr "" - -#: js/album_cover.js:115 -msgid "Default order" -msgstr "" - -#: js/album_cover.js:116 -msgid "Ascending" -msgstr "" - -#: js/album_cover.js:116 -msgid "Descending" -msgstr "" - -#: js/album_cover.js:117 templates/index.php:19 -msgid "Settings" -msgstr "設定" - -#: js/album_cover.js:122 -msgid "Scanning root cannot be empty" -msgstr "" - -#: js/album_cover.js:122 js/album_cover.js:133 -msgid "Error" -msgstr "" - -#: templates/index.php:16 -msgid "Rescan" -msgstr "重新掃描" - -#: templates/index.php:17 -msgid "Stop" -msgstr "停止" - -#: templates/index.php:18 -msgid "Share" -msgstr "分享" - -#: templates/view_album.php:19 -msgid "Back" -msgstr "返回" - -#: templates/view_album.php:36 -msgid "Remove confirmation" -msgstr "移除確認" - -#: templates/view_album.php:37 -msgid "Do you want to remove album" -msgstr "你確定要移除相簿嗎" - -#: templates/view_album.php:40 -msgid "Change album name" -msgstr "變更相簿名稱" - -#: templates/view_album.php:43 -msgid "New album name" -msgstr "新相簿名稱" diff --git a/l10n/zh_TW/impress.po b/l10n/zh_TW/impress.po deleted file mode 100644 index c7925b09e306a878b9771571b29afa9658ad12f9..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/impress.po +++ /dev/null @@ -1,22 +0,0 @@ -# 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: 2012-08-26 01:17+0200\n" -"PO-Revision-Date: 2012-08-25 23:18+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/presentations.php:7 -msgid "Documentation" -msgstr "" diff --git a/l10n/zh_TW/media.po b/l10n/zh_TW/media.po deleted file mode 100644 index eb9a0eb1142e2c0f7d427e824b98bc7587d1e18b..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/media.po +++ /dev/null @@ -1,67 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Donahue Chuang <soshinwu@gmail.com>, 2012. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-06-06 00:12+0200\n" -"PO-Revision-Date: 2012-06-05 22:15+0000\n" -"Last-Translator: icewind <icewind1991@gmail.com>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.net/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: appinfo/app.php:32 templates/player.php:8 -msgid "Music" -msgstr "音樂" - -#: js/music.js:18 -msgid "Add album to playlist" -msgstr "" - -#: templates/music.php:3 templates/player.php:12 -msgid "Play" -msgstr "播放" - -#: templates/music.php:4 templates/music.php:26 templates/player.php:13 -msgid "Pause" -msgstr "暫停" - -#: templates/music.php:5 -msgid "Previous" -msgstr "上一首" - -#: templates/music.php:6 templates/player.php:14 -msgid "Next" -msgstr "下一首" - -#: templates/music.php:7 -msgid "Mute" -msgstr "靜音" - -#: templates/music.php:8 -msgid "Unmute" -msgstr "取消靜音" - -#: templates/music.php:25 -msgid "Rescan Collection" -msgstr "重新掃描收藏" - -#: templates/music.php:37 -msgid "Artist" -msgstr "藝人" - -#: templates/music.php:38 -msgid "Album" -msgstr "專輯" - -#: templates/music.php:39 -msgid "Title" -msgstr "標題" diff --git a/l10n/zh_TW/tasks.po b/l10n/zh_TW/tasks.po deleted file mode 100644 index 10432eca2dfb9595bf1b96f0d73eabb3996a6a0b..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/tasks.po +++ /dev/null @@ -1,106 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ajax/update_property.php:51 lib/app.php:89 lib/app.php:101 -msgid "Invalid date/time" -msgstr "" - -#: appinfo/app.php:11 -msgid "Tasks" -msgstr "" - -#: js/tasks.js:415 -msgid "No category" -msgstr "" - -#: lib/app.php:33 -msgid "Unspecified" -msgstr "" - -#: lib/app.php:34 -msgid "1=highest" -msgstr "" - -#: lib/app.php:38 -msgid "5=medium" -msgstr "" - -#: lib/app.php:42 -msgid "9=lowest" -msgstr "" - -#: lib/app.php:81 -msgid "Empty Summary" -msgstr "" - -#: lib/app.php:93 -msgid "Invalid percent complete" -msgstr "" - -#: lib/app.php:107 -msgid "Invalid priority" -msgstr "" - -#: templates/tasks.php:3 -msgid "Add Task" -msgstr "" - -#: templates/tasks.php:4 -msgid "Order Due" -msgstr "" - -#: templates/tasks.php:5 -msgid "Order List" -msgstr "" - -#: templates/tasks.php:6 -msgid "Order Complete" -msgstr "" - -#: templates/tasks.php:7 -msgid "Order Location" -msgstr "" - -#: templates/tasks.php:8 -msgid "Order Priority" -msgstr "" - -#: templates/tasks.php:9 -msgid "Order Label" -msgstr "" - -#: templates/tasks.php:16 -msgid "Loading tasks..." -msgstr "" - -#: templates/tasks.php:20 -msgid "Important" -msgstr "" - -#: templates/tasks.php:23 -msgid "More" -msgstr "" - -#: templates/tasks.php:26 -msgid "Less" -msgstr "" - -#: templates/tasks.php:29 -msgid "Delete" -msgstr "" diff --git a/l10n/zh_TW/user_migrate.po b/l10n/zh_TW/user_migrate.po deleted file mode 100644 index 005fbe5e715f0af1e4e35272e18d582495da2e84..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/user_migrate.po +++ /dev/null @@ -1,51 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: js/export.js:14 js/export.js:20 -msgid "Export" -msgstr "" - -#: js/export.js:19 -msgid "Something went wrong while the export file was being generated" -msgstr "" - -#: js/export.js:19 -msgid "An error has occurred" -msgstr "" - -#: templates/settings.php:2 -msgid "Export your user account" -msgstr "" - -#: templates/settings.php:3 -msgid "" -"This will create a compressed file that contains your ownCloud account." -msgstr "" - -#: templates/settings.php:13 -msgid "Import user account" -msgstr "" - -#: templates/settings.php:15 -msgid "ownCloud User Zip" -msgstr "" - -#: templates/settings.php:17 -msgid "Import" -msgstr "" diff --git a/l10n/zh_TW/user_openid.po b/l10n/zh_TW/user_openid.po deleted file mode 100644 index ca26a19dbf317e2923d51fcaacad68e5cde2fa84..0000000000000000000000000000000000000000 --- a/l10n/zh_TW/user_openid.po +++ /dev/null @@ -1,54 +0,0 @@ -# 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: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: templates/nomode.php:12 -msgid "This is an OpenID server endpoint. For more information, see " -msgstr "" - -#: templates/nomode.php:14 -msgid "Identity: <b>" -msgstr "" - -#: templates/nomode.php:15 -msgid "Realm: <b>" -msgstr "" - -#: templates/nomode.php:16 -msgid "User: <b>" -msgstr "" - -#: templates/nomode.php:17 -msgid "Login" -msgstr "" - -#: templates/nomode.php:22 -msgid "Error: <b>No user Selected" -msgstr "" - -#: templates/settings.php:4 -msgid "you can authenticate to other sites with this address" -msgstr "" - -#: templates/settings.php:5 -msgid "Authorized OpenID provider" -msgstr "" - -#: templates/settings.php:6 -msgid "Your address at Wordpress, Identi.ca, …" -msgstr "" diff --git a/lib/app.php b/lib/app.php index 4d7353e99dc14eecd2bf5a3cf8a5b5197a793ac6..db1a7fb925aad8f5e7fb349d2555970438ef918e 100755 --- a/lib/app.php +++ b/lib/app.php @@ -63,7 +63,7 @@ class OC_App{ if (!defined('DEBUG') || !DEBUG) { if (is_null($types) - && empty(OC_Util::$core_scripts) + && empty(OC_Util::$core_scripts) && empty(OC_Util::$core_styles)) { OC_Util::$core_scripts = OC_Util::$scripts; OC_Util::$scripts = array(); @@ -458,7 +458,7 @@ class OC_App{ } } self::$appInfo[$appid]=$data; - + return $data; } @@ -545,34 +545,34 @@ class OC_App{ * @todo: change the name of this method to getInstalledApps, which is more accurate */ public static function getAllApps() { - + $apps=array(); - + foreach ( OC::$APPSROOTS as $apps_dir ) { if(! is_readable($apps_dir['path'])) { OC_Log::write('core', 'unable to read app folder : ' .$apps_dir['path'] , OC_Log::WARN); continue; } $dh = opendir( $apps_dir['path'] ); - + while( $file = readdir( $dh ) ) { - - if ( - $file[0] != '.' - and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php' ) + + if ( + $file[0] != '.' + and is_file($apps_dir['path'].'/'.$file.'/appinfo/app.php' ) ) { - + $apps[] = $file; - + } - + } - + } - + return $apps; } - + /** * @brief: get a list of all apps on apps.owncloud.com * @return array, multi-dimensional array of apps. Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description @@ -584,7 +584,7 @@ class OC_App{ if ( ! $categories = array_keys( $catagoryNames ) ) { return false; } - + $page = 0; $remoteApps = OC_OCSClient::getApplications( $categories, $page, $filter ); $app1 = array(); @@ -659,7 +659,7 @@ class OC_App{ $version = OC_Util::getVersion(); foreach($apps as $app) { // check if the app is compatible with this version of ownCloud - $info = OC_App::getAppInfo($app); + $info = OC_App::getAppInfo($app); if(!isset($info['require']) or (($version[0].'.'.$version[1])>$info['require'])) { OC_Log::write('core', 'App "'.$info['name'].'" ('.$app.') can\'t be used because it is not compatible with this version of ownCloud', OC_Log::ERROR); OC_App::disable( $app ); diff --git a/lib/base.php b/lib/base.php index f26e6f8e4ee320cfcc5c40414d6f5de489c43dd4..6c291b6457c91255e61784f163322e66c0011aec 100644 --- a/lib/base.php +++ b/lib/base.php @@ -270,8 +270,30 @@ class OC{ } public static function initSession() { + // prevents javascript from accessing php session cookies ini_set('session.cookie_httponly', '1;'); + + // (re)-initialize session session_start(); + + // regenerate session id periodically to avoid session fixation + if (!isset($_SESSION['SID_CREATED'])) { + $_SESSION['SID_CREATED'] = time(); + } else if (time() - $_SESSION['SID_CREATED'] > 900) { + session_regenerate_id(true); + $_SESSION['SID_CREATED'] = time(); + } + + // session timeout + if (isset($_SESSION['LAST_ACTIVITY']) && (time() - $_SESSION['LAST_ACTIVITY'] > 3600)) { + if (isset($_COOKIE[session_name()])) { + setcookie(session_name(), '', time() - 42000, '/'); + } + session_unset(); + session_destroy(); + session_start(); + } + $_SESSION['LAST_ACTIVITY'] = time(); } public static function init() { @@ -291,7 +313,7 @@ class OC{ ini_set('arg_separator.output', '&'); // try to switch magic quotes off. - if(function_exists('set_magic_quotes_runtime')) { + if(get_magic_quotes_gpc()) { @set_magic_quotes_runtime(false); } @@ -329,6 +351,10 @@ class OC{ self::initPaths(); + register_shutdown_function(array('OC_Log', 'onShutdown')); + set_error_handler(array('OC_Log', 'onError')); + set_exception_handler(array('OC_Log', 'onException')); + // set debug mode if an xdebug session is active if (!defined('DEBUG') || !DEBUG) { if(isset($_COOKIE['XDEBUG_SESSION'])) { @@ -455,6 +481,7 @@ class OC{ OC_App::loadApps(); OC_User::setupBackends(); if(isset($_GET["logout"]) and ($_GET["logout"])) { + OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']); OC_User::logout(); header("Location: ".OC::$WEBROOT.'/'); }else{ @@ -500,20 +527,31 @@ class OC{ protected static function handleLogin() { OC_App::loadApps(array('prelogin')); - $error = false; + $error = array(); // remember was checked after last login if (OC::tryRememberLogin()) { - // nothing more to do + $error[] = 'invalidcookie'; // Someone wants to log in : } elseif (OC::tryFormLogin()) { - $error = true; + $error[] = 'invalidpassword'; // The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP } elseif (OC::tryBasicAuthLogin()) { - $error = true; + $error[] = 'invalidpassword'; + } + OC_Util::displayLoginPage(array_unique($error)); + } + + protected static function cleanupLoginTokens($user) { + $cutoff = time() - OC_Config::getValue('remember_login_cookie_lifetime', 60*60*24*15); + $tokens = OC_Preferences::getKeys($user, 'login_token'); + foreach($tokens as $token) { + $time = OC_Preferences::getValue($user, 'login_token', $token); + if ($time < $cutoff) { + OC_Preferences::deleteKey($user, 'login_token', $token); + } } - OC_Util::displayLoginPage($error); } protected static function tryRememberLogin() { @@ -529,15 +567,30 @@ class OC{ OC_Log::write('core', 'Trying to login from cookie', OC_Log::DEBUG); } // confirm credentials in cookie - if(isset($_COOKIE['oc_token']) && OC_User::userExists($_COOKIE['oc_username']) && - OC_Preferences::getValue($_COOKIE['oc_username'], "login", "token") === $_COOKIE['oc_token']) - { - OC_User::setUserId($_COOKIE['oc_username']); - OC_Util::redirectToDefaultPage(); - } - else { - OC_User::unsetMagicInCookie(); + if(isset($_COOKIE['oc_token']) && OC_User::userExists($_COOKIE['oc_username'])) { + // delete outdated cookies + self::cleanupLoginTokens($_COOKIE['oc_username']); + // get stored tokens + $tokens = OC_Preferences::getKeys($_COOKIE['oc_username'], 'login_token'); + // test cookies token against stored tokens + if (in_array($_COOKIE['oc_token'], $tokens, true)) { + // replace successfully used token with a new one + OC_Preferences::deleteKey($_COOKIE['oc_username'], 'login_token', $_COOKIE['oc_token']); + $token = OC_Util::generate_random_bytes(32); + OC_Preferences::setValue($_COOKIE['oc_username'], 'login_token', $token, time()); + OC_User::setMagicInCookie($_COOKIE['oc_username'], $token); + // login + OC_User::setUserId($_COOKIE['oc_username']); + OC_Util::redirectToDefaultPage(); + // doesn't return + } + // if you reach this point you have changed your password + // or you are an attacker + // we can not delete tokens here because users may reach + // this point multiple times after a password change + OC_Log::write('core', 'Authentication cookie rejected for user '.$_COOKIE['oc_username'], OC_Log::WARN); } + OC_User::unsetMagicInCookie(); return true; } @@ -552,12 +605,13 @@ class OC{ OC_User::setupBackends(); if(OC_User::login($_POST["user"], $_POST["password"])) { + self::cleanupLoginTokens($_POST['user']); if(!empty($_POST["remember_login"])) { if(defined("DEBUG") && DEBUG) { OC_Log::write('core', 'Setting remember login to cookie', OC_Log::DEBUG); } - $token = md5($_POST["user"].time().$_POST['password']); - OC_Preferences::setValue($_POST['user'], 'login', 'token', $token); + $token = OC_Util::generate_random_bytes(32); + OC_Preferences::setValue($_POST['user'], 'login_token', $token, time()); OC_User::setMagicInCookie($_POST["user"], $token); } else { diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 4fff3ba51b8c7f3411062a759b49c0fcafb3d2ce..3df85b2bbbe28cf7aae24c6b7595a996a945c9b9 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -200,7 +200,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa public function getProperties($properties) { $props = parent::getProperties($properties); if (in_array(self::GETETAG_PROPERTYNAME, $properties) && !isset($props[self::GETETAG_PROPERTYNAME])) { - $props[self::GETETAG_PROPERTYNAME] + $props[self::GETETAG_PROPERTYNAME] = OC_Connector_Sabre_Node::getETagPropertyForPath($this->path); } return $props; diff --git a/lib/connector/sabre/principal.php b/lib/connector/sabre/principal.php index ee95ae6330670968eaaa775802529f2222becabb..763503721f8225db4abe149ec1e04caec2a7a0a4 100644 --- a/lib/connector/sabre/principal.php +++ b/lib/connector/sabre/principal.php @@ -115,11 +115,11 @@ class OC_Connector_Sabre_Principal implements Sabre_DAVACL_IPrincipalBackend { public function setGroupMemberSet($principal, array $members) { throw new Sabre_DAV_Exception('Setting members of the group is not supported yet'); } - + function updatePrincipal($path, $mutations) { return 0; } - + function searchPrincipals($prefixPath, array $searchProperties) { return 0; } diff --git a/lib/db.php b/lib/db.php index 6c9eec5637d50839dd17bc6ae47f39989b863459..a43f2ad20b2fddef4b673f46794115b45ab212b0 100644 --- a/lib/db.php +++ b/lib/db.php @@ -476,7 +476,7 @@ class OC_DB { public static function updateDbFromStructure($file) { $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); - + self::connectScheme(); // read file @@ -683,7 +683,7 @@ class OC_DB { return false; } } - + /** * returns the error code and message as a string for logging * works with MDB2 and PDOException diff --git a/lib/fileproxy/fileoperations.php b/lib/fileproxy/fileoperations.php index fe7edafad2b5c8f36e7c5dd04c3445a39a44acd1..23fb63fcfb114383631da82cb3c1d8dbb78738cc 100644 --- a/lib/fileproxy/fileoperations.php +++ b/lib/fileproxy/fileoperations.php @@ -1,37 +1,37 @@ <?php -/** - * ownCloud - * - * @author Bjoern Schiessle - * @copyright 2012 Bjoern Schiessle <schiessle@owncloud.com> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -/** - * check if standard file operations +/** + * ownCloud + * + * @author Bjoern Schiessle + * @copyright 2012 Bjoern Schiessle <schiessle@owncloud.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * */ - -class OC_FileProxy_FileOperations extends OC_FileProxy{ - static $rootView; - public function premkdir($path) { - if(!self::$rootView){ - self::$rootView = new OC_FilesystemView(''); +/** + * check if standard file operations + */ + +class OC_FileProxy_FileOperations extends OC_FileProxy{ + static $rootView; + + public function premkdir($path) { + if(!self::$rootView){ + self::$rootView = new OC_FilesystemView(''); } - return !self::$rootView->file_exists($path); + return !self::$rootView->file_exists($path); } - + } \ No newline at end of file diff --git a/lib/helper.php b/lib/helper.php index 88bff5dc4a29a73e3189aa83a636449ee67c3cd6..55db1c73e1ce2edf1c5784f88454a9269eea40a8 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -100,6 +100,17 @@ class OC_Helper { return OC_Request::serverProtocol(). '://' . OC_Request::serverHost() . $url; } + /** + * @brief Creates an url for remote use + * @param string $service id + * @return string the url + * + * Returns a url to the given service. + */ + public static function linkToRemoteBase( $service ) { + return self::linkTo( '', 'remote.php') . '/' . $service; + } + /** * @brief Creates an absolute url for remote use * @param string $service id @@ -108,7 +119,7 @@ class OC_Helper { * Returns a absolute url to the given service. */ public static function linkToRemote( $service, $add_slash = true ) { - return self::linkToAbsolute( '', 'remote.php') . '/' . $service . (($add_slash && $service[strlen($service)-1]!='/')?'/':''); + return self::makeURLAbsolute(self::linkToRemoteBase($service)) . (($add_slash && $service[strlen($service)-1]!='/')?'/':''); } /** diff --git a/lib/image.php b/lib/image.php index 94fe3ce827ae5a0310897ac21151248689c3f972..7c1a097cfd6484235fd2c798034853c89064d676 100644 --- a/lib/image.php +++ b/lib/image.php @@ -669,7 +669,7 @@ class OC_Image { $newWidth = min($maxWidth, $ratio*$maxHeight); $newHeight = min($maxHeight, $maxWidth/$ratio); - + $this->preciseResize(round($newWidth), round($newHeight)); return true; } diff --git a/lib/json.php b/lib/json.php index 518c3c87c49932b660c0d69f3a3918e1389e4397..cc504907261a59ca51fc855ac3f3d9cb93348c25 100644 --- a/lib/json.php +++ b/lib/json.php @@ -58,6 +58,7 @@ class OC_JSON{ */ public static function checkAdminUser() { self::checkLoggedIn(); + self::verifyUser(); if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); @@ -70,6 +71,7 @@ class OC_JSON{ */ public static function checkSubAdminUser() { self::checkLoggedIn(); + self::verifyUser(); if(!OC_Group::inGroup(OC_User::getUser(),'admin') && !OC_SubAdmin::isSubAdmin(OC_User::getUser())) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); @@ -77,6 +79,19 @@ class OC_JSON{ } } + /** + * Check if the user verified the login with his password + */ + public static function verifyUser() { + if(OC_Config::getValue('enhancedauth', true) === true) { + if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { + $l = OC_L10N::get('lib'); + self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); + exit(); + } + } + } + /** * Send json error msg */ diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..8c81be165821ab2b651e66067515b11c51865fe0 --- /dev/null +++ b/lib/l10n/de_DE.php @@ -0,0 +1,28 @@ +<?php $TRANSLATIONS = array( +"Help" => "Hilfe", +"Personal" => "Persönlich", +"Settings" => "Einstellungen", +"Users" => "Benutzer", +"Apps" => "Apps", +"Admin" => "Administrator", +"ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", +"Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", +"Back to Files" => "Zurück zu \"Dateien\"", +"Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", +"Application is not enabled" => "Die Anwendung ist nicht aktiviert", +"Authentication error" => "Authentifizierungs-Fehler", +"Token expired. Please reload page." => "Token abgelaufen. Bitte lade die Seite neu.", +"seconds ago" => "Vor wenigen Sekunden", +"1 minute ago" => "Vor einer Minute", +"%d minutes ago" => "Vor %d Minuten", +"today" => "Heute", +"yesterday" => "Gestern", +"%d days ago" => "Vor %d Tag(en)", +"last month" => "Letzten Monat", +"months ago" => "Vor Monaten", +"last year" => "Letztes Jahr", +"years ago" => "Vor Jahren", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s ist verfügbar. <a href=\"%s\">Weitere Informationen</a>", +"up to date" => "aktuell", +"updates check is disabled" => "Die Update-Überprüfung ist ausgeschaltet" +); diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index f751a41d5eb2beeb90c879eb7491f569c124d04b..c43ada258d4695deefd39f5c7c4bb79e774a3e0b 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -21,5 +21,8 @@ "last month" => "forrige måned", "months ago" => "måneder siden", "last year" => "i fjor", -"years ago" => "år siden" +"years ago" => "år siden", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s er tilgjengelig. Få <a href=\"%s\">mer informasjon</a>", +"up to date" => "oppdatert", +"updates check is disabled" => "versjonssjekk er avslått" ); diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index c650071c03cfcbd3b2f38e4f4753adacf45f5c63..583956c66e687534f3e5b479318d30f79914da87 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -4,7 +4,7 @@ "Settings" => "Instellingen", "Users" => "Gebruikers", "Apps" => "Apps", -"Admin" => "Administrator", +"Admin" => "Beheerder", "ZIP download is turned off." => "ZIP download is uitgeschakeld.", "Files need to be downloaded one by one." => "Bestanden moeten één voor één worden gedownload.", "Back to Files" => "Terug naar bestanden", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 33b329c30bbf7e6ab63cf402131684969ec6e85e..8c77e82b7a63dd6cbd457f752e6d0b59a7a6f69a 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -11,6 +11,7 @@ "Selected files too large to generate zip file." => "Zvolené súbory sú príliž veľké na vygenerovanie zip súboru.", "Application is not enabled" => "Aplikácia nie je zapnutá", "Authentication error" => "Chyba autentifikácie", +"seconds ago" => "pred sekundami", "1 minute ago" => "pred 1 minútou", "%d minutes ago" => "pred %d minútami", "today" => "dnes", diff --git a/lib/log.php b/lib/log.php index 6de99b4ea6bd07977e4f1b8e4de2a13eb1643cac..4bba62cf4b2e08ff3fab88aff932496774f18784 100644 --- a/lib/log.php +++ b/lib/log.php @@ -39,4 +39,26 @@ class OC_Log { $log_class::write($app, $message, $level); } } + + //Fatal errors handler + public static function onShutdown(){ + $error = error_get_last(); + if($error) { + //ob_end_clean(); + self::write('PHP', $error['message'] . ' at ' . $error['file'] . '#' . $error['line'], self::FATAL); + } else { + return true; + } + } + + // Uncaught exception handler + public static function onException($exception){ + self::write('PHP', $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), self::FATAL); + } + + //Recoverable errors handler + public static function onError($number, $message, $file, $line){ + self::write('PHP', $message . ' at ' . $file . '#' . $line, self::WARN); + + } } diff --git a/lib/migration/content.php b/lib/migration/content.php index 89b1e782d86a8ee94affb55285daf1d00341151c..87f8da68c9d6c376dcdf2945821f9291e5d83bb9 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -48,7 +48,7 @@ class OC_Migration_Content{ // @brief prepares the db // @param $query the sql query to prepare public function prepare( $query ) { - + // Only add database to tmpfiles if actually used if( !is_null( $this->db ) ) { // Get db path @@ -57,7 +57,7 @@ class OC_Migration_Content{ $this->tmpfiles[] = $db; } } - + // Optimize the query $query = $this->processQuery( $query ); diff --git a/lib/ocsclient.php b/lib/ocsclient.php index 794bc972f579956d51b04ed39468393a28fbabb5..3c80f319662bc223002945109f2bbee1904667e5 100644 --- a/lib/ocsclient.php +++ b/lib/ocsclient.php @@ -62,7 +62,7 @@ class OC_OCSClient{ 'timeout' => 10 ) ) - ); + ); $data=@file_get_contents($url, 0, $ctx); return($data); } diff --git a/lib/public/share.php b/lib/public/share.php index 7c4ede5e8822fb026eaddeb85b3cc9e8d2375726..d27802b52f7c9bb2544783eeafae08b2f8c52983 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1,1251 +1,1267 @@ -<?php -/** -* ownCloud -* -* @author Michael Gapczynski -* @copyright 2012 Michael Gapczynski mtgap@owncloud.com -* -* This library is free software; you can redistribute it and/or -* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE -* License as published by the Free Software Foundation; either -* version 3 of the License, or any later version. -* -* This library is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU AFFERO GENERAL PUBLIC LICENSE for more details. -* -* You should have received a copy of the GNU Affero General Public -* License along with this library. If not, see <http://www.gnu.org/licenses/>. -*/ -namespace OCP; - -\OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); -\OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); -\OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); -\OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup'); - -/** -* This class provides the ability for apps to share their content between users. -* Apps must create a backend class that implements OCP\Share_Backend and register it with this class. -*/ -class Share { - - const SHARE_TYPE_USER = 0; - const SHARE_TYPE_GROUP = 1; - const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; - const SHARE_TYPE_CONTACT = 5; - const SHARE_TYPE_REMOTE = 6; - - /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask - * Construct permissions for share() and setPermissions with Or (|) e.g. Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE - * Check if permission is granted with And (&) e.g. Check if delete is granted: if ($permissions & PERMISSION_DELETE) - * Remove permissions with And (&) and Not (~) e.g. Remove the update permission: $permissions &= ~PERMISSION_UPDATE - * Apps are required to handle permissions on their own, this class only stores and manages the permissions of shares - */ - const PERMISSION_CREATE = 4; - const PERMISSION_READ = 1; - const PERMISSION_UPDATE = 2; - const PERMISSION_DELETE = 8; - const PERMISSION_SHARE = 16; - - const FORMAT_NONE = -1; - const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; - - private static $shareTypeUserAndGroups = -1; - private static $shareTypeGroupUserUnique = 2; - private static $backends = array(); - private static $backendTypes = array(); - - /** - * @brief Register a sharing backend class that implements OCP\Share_Backend for an item type - * @param string Item type - * @param string Backend class - * @param string (optional) Depends on item type - * @param array (optional) List of supported file extensions if this item type depends on files - * @return Returns true if backend is registered or false if error - */ - public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { - if (self::isEnabled()) { - if (!isset(self::$backendTypes[$itemType])) { - self::$backendTypes[$itemType] = array('class' => $class, 'collectionOf' => $collectionOf, 'supportedFileExtensions' => $supportedFileExtensions); - if(count(self::$backendTypes) === 1) { - \OC_Util::addScript('core', 'share'); - \OC_Util::addStyle('core', 'share'); - } - return true; - } - \OC_Log::write('OCP\Share', 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'].' is already registered for '.$itemType, \OC_Log::WARN); - } - return false; - } - - /** - * @brief Check if the Share API is enabled - * @return Returns true if enabled or false - * - * The Share API is enabled by default if not configured - * - */ - public static function isEnabled() { - if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { - return true; - } - return false; - } - - /** - * @brief Get the items of item type shared with the current user - * @param string Item type - * @param int Format (optional) Format type must be defined by the backend - * @param int Number of items to return (optional) Returns all by default - * @return Return depends on format - */ - public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, $limit, $includeCollections); - } - - /** - * @brief Get the item of item type shared with the current user - * @param string Item type - * @param string Item target - * @param int Format (optional) Format type must be defined by the backend - * @return Return depends on format - */ - public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections); - } - - /** - * @brief Get the item of item type shared with the current user by source - * @param string Item type - * @param string Item source - * @param int Format (optional) Format type must be defined by the backend - * @return Return depends on format - */ - public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections, true); - } - - /** - * @brief Get the item of item type shared by a link - * @param string Item type - * @param string Item source - * @param string Owner of link - * @return Item - */ - public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { - return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1); - } - - /** - * @brief Get the shared items of item type owned by the current user - * @param string Item type - * @param int Format (optional) Format type must be defined by the backend - * @param int Number of items to return (optional) Returns all by default - * @return Return depends on format - */ - public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, $parameters, $limit, $includeCollections); - } - - /** - * @brief Get the shared item of item type owned by the current user - * @param string Item type - * @param string Item source - * @param int Format (optional) Format type must be defined by the backend - * @return Return depends on format - */ - public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, $parameters, -1, $includeCollections); - } - - /** - * @brief Share an item with a user, group, or via private link - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param int CRUDS permissions - * @return bool Returns true on success or false on failure - */ - public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions) { - $uidOwner = \OC_User::getUser(); - $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); - // Verify share type and sharing conditions are met - if ($shareType === self::SHARE_TYPE_USER) { - if ($shareWith == $uidOwner) { - $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the item owner'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if (!\OC_User::userExists($shareWith)) { - $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if ($sharingPolicy == 'groups_only') { - $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); - if (empty($inGroup)) { - $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Check if the item source is already shared with the user, either from the same owner or a different user - if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same owner and is not a user share, this use case is for increasing permissions for a specific user - if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - } else if ($shareType === self::SHARE_TYPE_GROUP) { - if (!\OC_Group::groupExists($shareWith)) { - $message = 'Sharing '.$itemSource.' failed, because the group '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { - $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner.' is not a member of the group '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // Check if the item source is already shared with the group, either from the same owner or a different user - // The check for each user in the group is done inside the put() function - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same owner and is not a group share, this use case is for increasing permissions for a specific user - if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Convert share with into an array with the keys group and users - $group = $shareWith; - $shareWith = array(); - $shareWith['group'] = $group; - $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); - } else if ($shareType === self::SHARE_TYPE_LINK) { - if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1)) { - // If password is set delete the old link - if (isset($shareWith)) { - self::delete($checkExists['id']); - } else { - $message = 'Sharing '.$itemSource.' failed, because this item is already shared with a link'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Generate hash of password - same method as user passwords - if (isset($shareWith)) { - $forcePortable = (CRYPT_BLOWFISH != 1); - $hasher = new \PasswordHash(8, $forcePortable); - $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); - } - return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions); - } - $message = 'Sharing '.$itemSource.' failed, because sharing with links is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - return false; -// } else if ($shareType === self::SHARE_TYPE_CONTACT) { -// if (!\OC_App::isEnabled('contacts')) { -// $message = 'Sharing '.$itemSource.' failed, because the contacts app is not enabled'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// return false; -// } -// $vcard = \OC_Contacts_App::getContactVCard($shareWith); -// if (!isset($vcard)) { -// $message = 'Sharing '.$itemSource.' failed, because the contact does not exist'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// throw new \Exception($message); -// } -// $details = \OC_Contacts_VCard::structureContact($vcard); -// // TODO Add ownCloud user to contacts vcard -// if (!isset($details['EMAIL'])) { -// $message = 'Sharing '.$itemSource.' failed, because no email address is associated with the contact'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// throw new \Exception($message); -// } -// return self::shareItem($itemType, $itemSource, self::SHARE_TYPE_EMAIL, $details['EMAIL'], $permissions); - } else { - // Future share types need to include their own conditions - $message = 'Share type '.$shareType.' is not valid for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // If the item is a folder, scan through the folder looking for equivalent item types - if ($itemType == 'folder') { - $parentFolder = self::put('folder', $itemSource, $shareType, $shareWith, $uidOwner, $permissions, true); - if ($parentFolder && $files = \OC_Files::getDirectoryContent($itemSource)) { - for ($i = 0; $i < count($files); $i++) { - $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource)); - if ($files[$i]['mimetype'] == 'httpd/unix-directory' && $children = \OC_Files::getDirectoryContent($name, '/')) { - // Continue scanning into child folders - array_push($files, $children); - } else { - // Check file extension for an equivalent item type to convert to - $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1)); - foreach (self::$backends as $type => $backend) { - if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) { - $itemType = $type; - break; - } - } - // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted - self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder); - } - } - return true; - } - return false; - } else { - // Put the item into the database - return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions); - } - } - - /** - * @brief Unshare an item from a user, group, or delete a private link - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @return Returns true on success or false on failure - */ - public static function unshare($itemType, $itemSource, $shareType, $shareWith) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1)) { - self::delete($item['id']); - return true; - } - return false; - } - - /** - * @brief Unshare an item shared with the current user - * @param string Item type - * @param string Item target - * @return Returns true on success or false on failure - * - * Unsharing from self is not allowed for items inside collections - * - */ - public static function unshareFromSelf($itemType, $itemTarget) { - if ($item = self::getItemSharedWith($itemType, $itemTarget)) { - if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - // Insert an extra row for the group share and set permission to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], $item['id'], self::$shareTypeGroupUserUnique, \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], $item['file_target'])); - \OC_DB::insertid('*PREFIX*share'); - // Delete all reshares by this user of the group share - self::delete($item['id'], true, \OC_User::getUser()); - } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { - // Set permission to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); - $query->execute(array(0, $item['id'])); - self::delete($item['id'], true); - } else { - self::delete($item['id']); - } - return true; - } - return false; - } - - /** - * @brief Set the permissions of an item for a specific user or group - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param int CRUDS permissions - * @return Returns true on success or false on failure - */ - public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { - // Check if this item is a reshare and verify that the permissions granted don't exceed the parent shared item - if (isset($item['parent'])) { - $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); - $result = $query->execute(array($item['parent']))->fetchRow(); - if (~(int)$result['permissions'] & $permissions) { - $message = 'Setting permissions for '.$itemSource.' failed, because the permissions exceed permissions granted to '.\OC_User::getUser(); - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); - $query->execute(array($permissions, $item['id'])); - // Check if permissions were removed - if ($item['permissions'] & ~$permissions) { - // If share permission is removed all reshares must be deleted - if (($item['permissions'] & self::PERMISSION_SHARE) && (~$permissions & self::PERMISSION_SHARE)) { - self::delete($item['id'], true); - } else { - $ids = array(); - $parents = array($item['id']); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - // Reset parents array, only go through loop again if items are found that need permissions removed - $parents = array(); - while ($item = $result->fetchRow()) { - // Check if permissions need to be removed - if ($item['permissions'] & ~$permissions) { - // Add to list of items that need permissions removed - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - } - // Remove the permissions for all reshares of this item - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ? WHERE `id` IN ('.$ids.')'); - $query->execute(array($permissions)); - } - } - } - return true; - } - $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - public static function setExpirationDate($itemType, $itemSource, $date) { - if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false)) { - if (!empty($items)) { - if ($date == '') { - $date = null; - } else { - $date = new \DateTime($date); - $date = date('Y-m-d H:i', $date->format('U') - $date->getOffset()); - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); - foreach ($items as $item) { - $query->execute(array($date, $item['id'])); - } - return true; - } - } - return false; - } - - /** - * @brief Get the backend class for the specified item type - * @param string Item type - * @return Sharing backend object - */ - private static function getBackend($itemType) { - if (isset(self::$backends[$itemType])) { - return self::$backends[$itemType]; - } else if (isset(self::$backendTypes[$itemType]['class'])) { - $class = self::$backendTypes[$itemType]['class']; - if (class_exists($class)) { - self::$backends[$itemType] = new $class; - if (!(self::$backends[$itemType] instanceof Share_Backend)) { - $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - return self::$backends[$itemType]; - } else { - $message = 'Sharing backend '.$class.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - $message = 'Sharing backend for '.$itemType.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * @brief Get a list of collection item types for the specified item type - * @param string Item type - * @return array - */ - private static function getCollectionItemTypes($itemType) { - $collectionTypes = array($itemType); - foreach (self::$backendTypes as $type => $backend) { - if (in_array($backend['collectionOf'], $collectionTypes)) { - $collectionTypes[] = $type; - } - } - if (!self::getBackend($itemType) instanceof Share_Backend_Collection) { - unset($collectionTypes[0]); - } - // Return array if collections were found or the item type is a collection itself - collections can be inside collections - if (count($collectionTypes) > 0) { - return $collectionTypes; - } - return false; - } - - /** - * @brief Get shared items from the database - * @param string Item type - * @param string Item source or target (optional) - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique - * @param string User or group the item is being shared with - * @param string User that is the owner of shared items (optional) - * @param int Format to convert items to with formatItems() - * @param mixed Parameters to pass to formatItems() - * @param int Number of items to return, -1 to return all matches (optional) - * @param bool Include collection item types (optional) - * @return mixed - * - * See public functions getItem(s)... for parameter usage - * - */ - private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false) { - if (!self::isEnabled()) { - if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } else { - return array(); - } - } - $backend = self::getBackend($itemType); - // Get filesystem root to add it to the file target and remove from the file source, match file_source with the file cache - if ($itemType == 'file' || $itemType == 'folder') { - $root = \OC\Files\Filesystem::getRoot(); - $where = 'INNER JOIN `*PREFIX*fscache` ON `file_source` = `*PREFIX*fscache`.`id`'; - if (!isset($item)) { - $where .= ' WHERE `file_target` IS NOT NULL'; - } - $fileDependent = true; - $queryArgs = array(); - } else { - $fileDependent = false; - $root = ''; - if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { - // If includeCollections is true, find collections of this item type, e.g. a music album contains songs - if (!in_array($itemType, $collectionTypes)) { - $itemTypes = array_merge(array($itemType), $collectionTypes); - } else { - $itemTypes = $collectionTypes; - } - $placeholders = join(',', array_fill(0, count($itemTypes), '?')); - $where .= ' WHERE item_type IN ('.$placeholders.'))'; - $queryArgs = $itemTypes; - } else { - $where = ' WHERE `item_type` = ?'; - $queryArgs = array($itemType); - } - } - if (isset($shareType)) { - // Include all user and group items - if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { - $where .= ' AND `share_type` IN (?,?,?)'; - $queryArgs[] = self::SHARE_TYPE_USER; - $queryArgs[] = self::SHARE_TYPE_GROUP; - $queryArgs[] = self::$shareTypeGroupUserUnique; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - $placeholders = join(',', array_fill(0, count($userAndGroups), '?')); - $where .= ' AND `share_with` IN ('.$placeholders.')'; - $queryArgs = array_merge($queryArgs, $userAndGroups); - // Don't include own group shares - $where .= ' AND `uid_owner` != ?'; - $queryArgs[] = $shareWith; - } else { - $where .= ' AND `share_type` = ?'; - $queryArgs[] = $shareType; - if (isset($shareWith)) { - $where .= ' AND `share_with` = ?'; - $queryArgs[] = $shareWith; - } - } - } - if (isset($uidOwner)) { - $where .= ' AND `uid_owner` = ?'; - $queryArgs[] = $uidOwner; - if (!isset($shareType)) { - // Prevent unique user targets for group shares from being selected - $where .= ' AND `share_type` != ?'; - $queryArgs[] = self::$shareTypeGroupUserUnique; - } - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_source'; - } else { - $column = 'item_source'; - } - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - } else { - $column = 'item_target'; - } - } - if (isset($item)) { - if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { - $where .= ' AND ('; - } else { - $where .= ' AND'; - } - // If looking for own shared items, check item_source else check item_target - if (isset($uidOwner) || $itemShareWithBySource) { - // If item type is a file, file source needs to be checked in case the item was converted - if ($itemType == 'file' || $itemType == 'folder') { - $where .= ' `file_source` = ?'; - $column = 'file_source'; - } else { - $where .= ' `item_source` = ?'; - $column = 'item_source'; - } - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $where .= ' `file_target` = ?'; - $item = \OC\Files\Filesystem::normalizePath($item); - } else { - $where .= ' `item_target` = ?'; - } - } - $queryArgs[] = $item; - if ($includeCollections && $collectionTypes) { - $placeholders = join(',', array_fill(0, count($collectionTypes), '?')); - $where .= ' OR item_type IN ('.$placeholders.'))'; - $queryArgs = array_merge($queryArgs, $collectionTypes); - } - } - if ($limit != -1 && !$includeCollections) { - if ($shareType == self::$shareTypeUserAndGroups) { - // Make sure the unique user target is returned if it exists, unique targets should follow the group share in the database - // If the limit is not 1, the filtering can be done later - $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; - } - // The limit must be at least 3, because filtering needs to be done - if ($limit < 3) { - $queryLimit = 3; - } else { - $queryLimit = $limit; - } - } else { - $queryLimit = null; - } - // TODO Optimize selects - if ($format == self::FORMAT_STATUSES) { - if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `file_source`, `path`, `expiration`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`'; - } - } else { - if (isset($uidOwner)) { - if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`, `stime`, `file_source`, `expiration`'; - } - } else { - if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { - $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`'; - } else { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`'; - } - } else { - $select = '*'; - } - } - } - $root = strlen($root); - $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); - $result = $query->execute($queryArgs); - $items = array(); - $targets = array(); - while ($row = $result->fetchRow()) { - // Filter out duplicate group shares for users with unique targets - if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { - $row['share_type'] = self::SHARE_TYPE_GROUP; - $row['share_with'] = $items[$row['parent']]['share_with']; - // Remove the parent group share - unset($items[$row['parent']]); - if ($row['permissions'] == 0) { - continue; - } - } else if (!isset($uidOwner)) { - // Check if the same target already exists - if (isset($targets[$row[$column]])) { - // Check if the same owner shared with the user twice through a group and user share - this is allowed - $id = $targets[$row[$column]]; - if ($items[$id]['uid_owner'] == $row['uid_owner']) { - // Switch to group share type to ensure resharing conditions aren't bypassed - if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { - $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; - $items[$id]['share_with'] = $row['share_with']; - } - // Switch ids if sharing permission is granted on only one share to ensure correct parent is used if resharing - if (~(int)$items[$id]['permissions'] & self::PERMISSION_SHARE && (int)$row['permissions'] & self::PERMISSION_SHARE) { - $items[$row['id']] = $items[$id]; - unset($items[$id]); - $id = $row['id']; - } - // Combine the permissions for the item - $items[$id]['permissions'] |= (int)$row['permissions']; - continue; - } - } else { - $targets[$row[$column]] = $row['id']; - } - } - // Remove root from file source paths if retrieving own shared items - if (isset($uidOwner) && isset($row['path'])) { - if (isset($row['parent'])) { - $row['path'] = '/Shared/'.basename($row['path']); - } else { - $row['path'] = substr($row['path'], $root); - } - } - if (isset($row['expiration'])) { - $time = new \DateTime(); - if ($row['expiration'] < date('Y-m-d H:i', $time->format('U') - $time->getOffset())) { - self::delete($row['id']); - continue; - } - } - $items[$row['id']] = $row; - } - if (!empty($items)) { - $collectionItems = array(); - foreach ($items as &$row) { - // Return only the item instead of a 2-dimensional array - if ($limit == 1 && $row['item_type'] == $itemType && $row[$column] == $item) { - if ($format == self::FORMAT_NONE) { - return $row; - } else { - break; - } - } - // Check if this is a collection of the requested item type - if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { - if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof Share_Backend_Collection) { - // Collections can be inside collections, check if the item is a collection - if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { - $collectionItems[] = $row; - } else { - $collection = array(); - $collection['item_type'] = $row['item_type']; - if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { - $collection['path'] = basename($row['path']); - } - $row['collection'] = $collection; - // Fetch all of the children sources - $children = $collectionBackend->getChildren($row[$column]); - foreach ($children as $child) { - $childItem = $row; - $childItem['item_type'] = $itemType; - if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') { - $childItem['item_source'] = $child['source']; - $childItem['item_target'] = $child['target']; - } - if ($backend instanceof Share_Backend_File_Dependent) { - if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { - $childItem['file_source'] = $child['source']; - } else { - $childItem['file_source'] = \OC_FileCache::getId($child['file_path']); - } - $childItem['file_target'] = \OC\Files\Filesystem::normalizePath($child['file_path']); - } - if (isset($item)) { - if ($childItem[$column] == $item) { - // Return only the item instead of a 2-dimensional array - if ($limit == 1) { - if ($format == self::FORMAT_NONE) { - return $childItem; - } else { - // Unset the items array and break out of both loops - $items = array(); - $items[] = $childItem; - break 2; - } - } else { - $collectionItems[] = $childItem; - } - } - } else { - $collectionItems[] = $childItem; - } - } - } - } - // Remove collection item - unset($items[$row['id']]); - } - } - if (!empty($collectionItems)) { - $items = array_merge($items, $collectionItems); - } - if ($format == self::FORMAT_NONE) { - return $items; - } else if ($format == self::FORMAT_STATUSES) { - $statuses = array(); - // Switch column to path for files and folders, used for determining statuses inside of folders - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'path'; - } - foreach ($items as $item) { - if ($item['share_type'] == self::SHARE_TYPE_LINK) { - $statuses[$item[$column]] = true; - } else if (!isset($statuses[$item[$column]])) { - $statuses[$item[$column]] = false; - } - } - return $statuses; - } else { - return $backend->formatItems($items, $format, $parameters); - } - } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } - return array(); - } - - /** - * @brief Put shared item into the database - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param int CRUDS permissions - * @param bool|array Parent folder target (optional) - * @return bool Returns true on success or false on failure - */ - private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null) { - $backend = self::getBackend($itemType); - // Check if this is a reshare - if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { - // Check if attempting to share back to owner - if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { - $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the original sharer'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // Check if share permissions is granted - if ((int)$checkReshare['permissions'] & self::PERMISSION_SHARE) { - if (~(int)$checkReshare['permissions'] & $permissions) { - $message = 'Sharing '.$itemSource.' failed, because the permissions exceed permissions granted to '.$uidOwner; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } else { - // TODO Don't check if inside folder - $parent = $checkReshare['id']; - $itemSource = $checkReshare['item_source']; - $fileSource = $checkReshare['file_source']; - $suggestedItemTarget = $checkReshare['item_target']; - $suggestedFileTarget = $checkReshare['file_target']; - $filePath = $checkReshare['file_target']; - } - } else { - $message = 'Sharing '.$itemSource.' failed, because resharing is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } else { - $parent = null; - $suggestedItemTarget = null; - $suggestedFileTarget = null; - if (!$backend->isValidSource($itemSource, $uidOwner)) { - $message = 'Sharing '.$itemSource.' failed, because the sharing backend for '.$itemType.' could not find its source'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - $parent = null; - if ($backend instanceof Share_Backend_File_Dependent) { - $filePath = $backend->getFilePath($itemSource, $uidOwner); - if ($itemType == 'file' || $itemType == 'folder') { - $fileSource = $itemSource; - } else { - $fileSource = \OC_FileCache::getId($filePath); - } - if ($fileSource == -1) { - $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } else { - $filePath = null; - $fileSource = null; - } - } - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - // Share with a group - if ($shareType == self::SHARE_TYPE_GROUP) { - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); - // Set group default file target for future use - $parentFolders[0]['folder'] = $groupFileTarget; - } else { - // Get group default file target - $groupFileTarget = $parentFolder[0]['folder'].$itemSource; - $parent = $parentFolder[0]['id']; - } - } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); - } - } else { - $groupFileTarget = null; - } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget)); - // Save this id, any extra rows for this group share will need to reference it - $parent = \OC_DB::insertid('*PREFIX*share'); - // Loop through all users of this group in case we need to add an extra row - foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent); - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); - if ($fileTarget != $groupFileTarget) { - $parentFolders[$uid]['folder'] = $fileTarget; - } - } else if (isset($parentFolder[$uid])) { - $fileTarget = $parentFolder[$uid]['folder'].$itemSource; - $parent = $parentFolder[$uid]['id']; - } - } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); - } - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), $fileSource, $fileTarget)); - \OC_DB::insertid('*PREFIX*share'); - } - } - if ($parentFolder === true) { - // Return parent folders to preserve file target paths for potential children - return $parentFolders; - } - } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); - $parentFolders['folder'] = $fileTarget; - } else { - $fileTarget = $parentFolder['folder'].$itemSource; - $parent = $parentFolder['id']; - } - } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); - } - } else { - $fileTarget = null; - } - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, $permissions, time(), $fileSource, $fileTarget)); - $id = \OC_DB::insertid('*PREFIX*share'); - if ($parentFolder === true) { - $parentFolders['id'] = $id; - // Return parent folder to preserve file target paths for potential children - return $parentFolders; - } - } - return true; - } - - /** - * @brief Generate a unique target for the item - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param string The suggested target originating from a reshare (optional) - * @param int The id of the parent group share (optional) - * @return string Item target - */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) { - $backend = self::getBackend($itemType); - if ($shareType == self::SHARE_TYPE_LINK) { - if (isset($suggestedTarget)) { - return $suggestedTarget; - } - return $backend->generateTarget($itemSource, false); - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - $columnSource = 'file_source'; - } else { - $column = 'item_target'; - $columnSource = 'item_source'; - } - if ($shareType == self::SHARE_TYPE_USER) { - // Share with is a user, so set share type to user and groups - $shareType = self::$shareTypeUserAndGroups; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - } else { - $userAndGroups = false; - } - $exclude = null; - // Backend has 3 opportunities to generate a unique target - for ($i = 0; $i < 2; $i++) { - // Check if suggested target exists first - if ($i == 0 && isset($suggestedTarget)) { - $target = $suggestedTarget; - } else { - if ($shareType == self::SHARE_TYPE_GROUP) { - $target = $backend->generateTarget($itemSource, false, $exclude); - } else { - $target = $backend->generateTarget($itemSource, $shareWith, $exclude); - } - if (is_array($exclude) && in_array($target, $exclude)) { - break; - } - } - // Check if target already exists - $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); - if (!empty($checkTarget)) { - foreach ($checkTarget as $item) { - // Skip item if it is the group parent row - if (isset($groupParent) && $item['id'] == $groupParent) { - if (count($checkTarget) == 1) { - return $target; - } else { - continue; - } - } - if ($item['uid_owner'] == $uidOwner) { - if ($itemType == 'file' || $itemType == 'folder') { - if ($item['file_source'] == \OC_FileCache::getId($itemSource)) { - return $target; - } - } else if ($item['item_source'] == $itemSource) { - return $target; - } - } - } - if (!isset($exclude)) { - $exclude = array(); - } - // Find similar targets to improve backend's chances to generate a unqiue target - if ($userAndGroups) { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); - } - } else { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); - } - } - while ($row = $result->fetchRow()) { - $exclude[] = $row[$column]; - } - } else { - return $target; - } - } - } - $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * @brief Delete all reshares of an item - * @param int Id of item to delete - * @param bool If true, exclude the parent from the delete (optional) - * @param string The user that the parent was shared with (optinal) - */ - private static function delete($parent, $excludeParent = false, $uidOwner = null) { - $ids = array($parent); - $parents = array($parent); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - // Check the owner on the first search of reshares, useful for finding and deleting the reshares by a single user of a group share - if (count($ids) == 1 && isset($uidOwner)) { - $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); - $result = $query->execute(array($uidOwner)); - } else { - $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - } - // Reset parents array, only go through loop again if items are found - $parents = array(); - while ($item = $result->fetchRow()) { - // Search for a duplicate parent share, this occurs when an item is shared to the same user through a group and user or the same item is shared by different users - $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `item_type` = ? AND `item_target` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\') AND `uid_owner` != ? AND `id` != ?'); - $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, $item['uid_owner'], $item['parent']))->fetchRow(); - if ($duplicateParent) { - // Change the parent to the other item id if share permission is granted - if ($duplicateParent['permissions'] & self::PERMISSION_SHARE) { - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); - $query->execute(array($duplicateParent['id'], $item['id'])); - continue; - } - } - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - if ($excludeParent) { - unset($ids[0]); - } - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); - $query->execute(); - } - } - - /** - * Hook Listeners - */ - - public static function post_deleteUser($arguments) { - // Delete any items shared with the deleted user - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); - $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); - // Delete any items the deleted user shared - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); - $result = $query->execute(array($arguments['uid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } - } - - public static function post_addToGroup($arguments) { - // Find the group shares and check if the user needs a unique target - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - while ($item = $result->fetchRow()) { - if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { - $itemTarget = null; - } else { - $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); - } - if (isset($item['file_source'])) { - $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { - $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], $item['stime'], $item['file_source'], $fileTarget)); - \OC_DB::insertid('*PREFIX*share'); - } - } - } - - public static function post_removeFromGroup($arguments) { - // TODO Don't call if user deleted? - $query = \OC_DB::prepare('SELECT `id`, `share_type` FROM `*PREFIX*share` WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'], self::$shareTypeGroupUserUnique, $arguments['uid'])); - while ($item = $result->fetchRow()) { - if ($item['share_type'] == self::SHARE_TYPE_GROUP) { - // Delete all reshares by this user of the group share - self::delete($item['id'], true, $arguments['uid']); - } else { - self::delete($item['id']); - } - } - } - - public static function post_deleteGroup($arguments) { - $query = \OC_DB::prepare('SELECT id FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } - } - -} - -/** -* Interface that apps must implement to share content. -*/ -interface Share_Backend { - - /** - * @brief Get the source of the item to be stored in the database - * @param string Item source - * @param string Owner of the item - * @return mixed|array|false Source - * - * Return an array if the item is file dependent, the array needs two keys: 'item' and 'file' - * Return false if the item does not exist for the user - * - * The formatItems() function will translate the source returned back into the item - */ - public function isValidSource($itemSource, $uidOwner); - - /** - * @brief Get a unique name of the item for the specified user - * @param string Item source - * @param string|false User the item is being shared with - * @param array|null List of similar item names already existing as shared items - * @return string Target name - * - * This function needs to verify that the user does not already have an item with this name. - * If it does generate a new name e.g. name_# - */ - public function generateTarget($itemSource, $shareWith, $exclude = null); - - /** - * @brief Converts the shared item sources back into the item in the specified format - * @param array Shared items - * @param int Format - * @return ? - * - * The items array is a 3-dimensional array with the item_source as the first key and the share id as the second key to an array with the share info. - * The key/value pairs included in the share info depend on the function originally called: - * If called by getItem(s)Shared: id, item_type, item, item_source, share_type, share_with, permissions, stime, file_source - * If called by getItem(s)SharedWith: id, item_type, item, item_source, item_target, share_type, share_with, permissions, stime, file_source, file_target - * This function allows the backend to control the output of shared items with custom formats. - * It is only called through calls to the public getItem(s)Shared(With) functions. - */ - public function formatItems($items, $format, $parameters = null); - -} - -/** -* Interface for share backends that share content that is dependent on files. -* Extends the Share_Backend interface. -*/ -interface Share_Backend_File_Dependent extends Share_Backend { - - /** - * @brief Get the file path of the item - * @param - * @param - * @return - */ - public function getFilePath($itemSource, $uidOwner); - -} - -/** -* Interface for collections of of items implemented by another share backend. -* Extends the Share_Backend interface. -*/ -interface Share_Backend_Collection extends Share_Backend { - - /** - * @brief Get the sources of the children of the item - * @param string Item source - * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable - */ - public function getChildren($itemSource); - -} +<?php +/** +* ownCloud +* +* @author Michael Gapczynski +* @copyright 2012 Michael Gapczynski mtgap@owncloud.com +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see <http://www.gnu.org/licenses/>. +*/ +namespace OCP; + +\OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); +\OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); +\OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); +\OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup'); + +/** +* This class provides the ability for apps to share their content between users. +* Apps must create a backend class that implements OCP\Share_Backend and register it with this class. +*/ +class Share { + + const SHARE_TYPE_USER = 0; + const SHARE_TYPE_GROUP = 1; + const SHARE_TYPE_LINK = 3; + const SHARE_TYPE_EMAIL = 4; + const SHARE_TYPE_CONTACT = 5; + const SHARE_TYPE_REMOTE = 6; + + /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask + * Construct permissions for share() and setPermissions with Or (|) e.g. Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE + * Check if permission is granted with And (&) e.g. Check if delete is granted: if ($permissions & PERMISSION_DELETE) + * Remove permissions with And (&) and Not (~) e.g. Remove the update permission: $permissions &= ~PERMISSION_UPDATE + * Apps are required to handle permissions on their own, this class only stores and manages the permissions of shares + */ + const PERMISSION_CREATE = 4; + const PERMISSION_READ = 1; + const PERMISSION_UPDATE = 2; + const PERMISSION_DELETE = 8; + const PERMISSION_SHARE = 16; + + const FORMAT_NONE = -1; + const FORMAT_STATUSES = -2; + const FORMAT_SOURCES = -3; + + private static $shareTypeUserAndGroups = -1; + private static $shareTypeGroupUserUnique = 2; + private static $backends = array(); + private static $backendTypes = array(); + + /** + * @brief Register a sharing backend class that implements OCP\Share_Backend for an item type + * @param string Item type + * @param string Backend class + * @param string (optional) Depends on item type + * @param array (optional) List of supported file extensions if this item type depends on files + * @return Returns true if backend is registered or false if error + */ + public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { + if (self::isEnabled()) { + if (!isset(self::$backendTypes[$itemType])) { + self::$backendTypes[$itemType] = array('class' => $class, 'collectionOf' => $collectionOf, 'supportedFileExtensions' => $supportedFileExtensions); + if(count(self::$backendTypes) === 1) { + \OC_Util::addScript('core', 'share'); + \OC_Util::addStyle('core', 'share'); + } + return true; + } + \OC_Log::write('OCP\Share', 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'].' is already registered for '.$itemType, \OC_Log::WARN); + } + return false; + } + + /** + * @brief Check if the Share API is enabled + * @return Returns true if enabled or false + * + * The Share API is enabled by default if not configured + * + */ + public static function isEnabled() { + if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { + return true; + } + return false; + } + + /** + * @brief Get the items of item type shared with the current user + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param int Number of items to return (optional) Returns all by default + * @return Return depends on format + */ + public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, $limit, $includeCollections); + } + + /** + * @brief Get the item of item type shared with the current user + * @param string Item type + * @param string Item target + * @param int Format (optional) Format type must be defined by the backend + * @return Return depends on format + */ + public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections); + } + + /** + * @brief Get the item of item type shared with the current user by source + * @param string Item type + * @param string Item source + * @param int Format (optional) Format type must be defined by the backend + * @return Return depends on format + */ + public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, $parameters, 1, $includeCollections, true); + } + + /** + * @brief Get the item of item type shared by a link + * @param string Item type + * @param string Item source + * @param string Owner of link + * @return Item + */ + public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { + return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1); + } + + /** + * @brief Get the shared items of item type owned by the current user + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param int Number of items to return (optional) Returns all by default + * @return Return depends on format + */ + public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, $parameters, $limit, $includeCollections); + } + + /** + * @brief Get the shared item of item type owned by the current user + * @param string Item type + * @param string Item source + * @param int Format (optional) Format type must be defined by the backend + * @return Return depends on format + */ + public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, $parameters, -1, $includeCollections); + } + + /** + * @brief Share an item with a user, group, or via private link + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @return bool Returns true on success or false on failure + */ + public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions) { + $uidOwner = \OC_User::getUser(); + $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); + // Verify share type and sharing conditions are met + if ($shareType === self::SHARE_TYPE_USER) { + if ($shareWith == $uidOwner) { + $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the item owner'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if (!\OC_User::userExists($shareWith)) { + $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' does not exist'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($sharingPolicy == 'groups_only') { + $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); + if (empty($inGroup)) { + $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Check if the item source is already shared with the user, either from the same owner or a different user + if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { + // Only allow the same share to occur again if it is the same owner and is not a user share, this use case is for increasing permissions for a specific user + if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { + $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + } else if ($shareType === self::SHARE_TYPE_GROUP) { + if (!\OC_Group::groupExists($shareWith)) { + $message = 'Sharing '.$itemSource.' failed, because the group '.$shareWith.' does not exist'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { + $message = 'Sharing '.$itemSource.' failed, because '.$uidOwner.' is not a member of the group '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Check if the item source is already shared with the group, either from the same owner or a different user + // The check for each user in the group is done inside the put() function + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { + // Only allow the same share to occur again if it is the same owner and is not a group share, this use case is for increasing permissions for a specific user + if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { + $message = 'Sharing '.$itemSource.' failed, because this item is already shared with '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Convert share with into an array with the keys group and users + $group = $shareWith; + $shareWith = array(); + $shareWith['group'] = $group; + $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); + } else if ($shareType === self::SHARE_TYPE_LINK) { + if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, null, 1)) { + // If password is set delete the old link + if (isset($shareWith)) { + self::delete($checkExists['id']); + } else { + $message = 'Sharing '.$itemSource.' failed, because this item is already shared with a link'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Generate hash of password - same method as user passwords + if (isset($shareWith)) { + $forcePortable = (CRYPT_BLOWFISH != 1); + $hasher = new \PasswordHash(8, $forcePortable); + $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); + } + return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions); + } + $message = 'Sharing '.$itemSource.' failed, because sharing with links is not allowed'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + return false; +// } else if ($shareType === self::SHARE_TYPE_CONTACT) { +// if (!\OC_App::isEnabled('contacts')) { +// $message = 'Sharing '.$itemSource.' failed, because the contacts app is not enabled'; +// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); +// return false; +// } +// $vcard = \OC_Contacts_App::getContactVCard($shareWith); +// if (!isset($vcard)) { +// $message = 'Sharing '.$itemSource.' failed, because the contact does not exist'; +// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); +// throw new \Exception($message); +// } +// $details = \OC_Contacts_VCard::structureContact($vcard); +// // TODO Add ownCloud user to contacts vcard +// if (!isset($details['EMAIL'])) { +// $message = 'Sharing '.$itemSource.' failed, because no email address is associated with the contact'; +// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); +// throw new \Exception($message); +// } +// return self::shareItem($itemType, $itemSource, self::SHARE_TYPE_EMAIL, $details['EMAIL'], $permissions); + } else { + // Future share types need to include their own conditions + $message = 'Share type '.$shareType.' is not valid for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // If the item is a folder, scan through the folder looking for equivalent item types + if ($itemType == 'folder') { + $parentFolder = self::put('folder', $itemSource, $shareType, $shareWith, $uidOwner, $permissions, true); + if ($parentFolder && $files = \OC_Files::getDirectoryContent($itemSource)) { + for ($i = 0; $i < count($files); $i++) { + $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource)); + if ($files[$i]['mimetype'] == 'httpd/unix-directory' && $children = \OC_Files::getDirectoryContent($name, '/')) { + // Continue scanning into child folders + array_push($files, $children); + } else { + // Check file extension for an equivalent item type to convert to + $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1)); + foreach (self::$backends as $type => $backend) { + if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) { + $itemType = $type; + break; + } + } + // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted + self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder); + } + } + return true; + } + return false; + } else { + // Put the item into the database + return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions); + } + } + + /** + * @brief Unshare an item from a user, group, or delete a private link + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @return Returns true on success or false on failure + */ + public static function unshare($itemType, $itemSource, $shareType, $shareWith) { + if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1)) { + self::delete($item['id']); + return true; + } + return false; + } + + /** + * @brief Unshare an item from all users, groups, and remove all links + * @param string Item type + * @param string Item source + * @return Returns true on success or false on failure + */ + public static function unshareAll($itemType, $itemSource) { + if ($shares = self::getItemShared($itemType, $itemSource)) { + foreach ($shares as $share) { + self::delete($share['id']); + } + return true; + } + return false; + } + + /** + * @brief Unshare an item shared with the current user + * @param string Item type + * @param string Item target + * @return Returns true on success or false on failure + * + * Unsharing from self is not allowed for items inside collections + * + */ + public static function unshareFromSelf($itemType, $itemTarget) { + if ($item = self::getItemSharedWith($itemType, $itemTarget)) { + if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { + // Insert an extra row for the group share and set permission to 0 to prevent it from showing up for the user + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], $item['id'], self::$shareTypeGroupUserUnique, \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], $item['file_target'])); + \OC_DB::insertid('*PREFIX*share'); + // Delete all reshares by this user of the group share + self::delete($item['id'], true, \OC_User::getUser()); + } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { + // Set permission to 0 to prevent it from showing up for the user + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); + $query->execute(array(0, $item['id'])); + self::delete($item['id'], true); + } else { + self::delete($item['id']); + } + return true; + } + return false; + } + + /** + * @brief Set the permissions of an item for a specific user or group + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @return Returns true on success or false on failure + */ + public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { + if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { + // Check if this item is a reshare and verify that the permissions granted don't exceed the parent shared item + if (isset($item['parent'])) { + $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); + $result = $query->execute(array($item['parent']))->fetchRow(); + if (~(int)$result['permissions'] & $permissions) { + $message = 'Setting permissions for '.$itemSource.' failed, because the permissions exceed permissions granted to '.\OC_User::getUser(); + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); + $query->execute(array($permissions, $item['id'])); + // Check if permissions were removed + if ($item['permissions'] & ~$permissions) { + // If share permission is removed all reshares must be deleted + if (($item['permissions'] & self::PERMISSION_SHARE) && (~$permissions & self::PERMISSION_SHARE)) { + self::delete($item['id'], true); + } else { + $ids = array(); + $parents = array($item['id']); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + // Reset parents array, only go through loop again if items are found that need permissions removed + $parents = array(); + while ($item = $result->fetchRow()) { + // Check if permissions need to be removed + if ($item['permissions'] & ~$permissions) { + // Add to list of items that need permissions removed + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + } + // Remove the permissions for all reshares of this item + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ? WHERE `id` IN ('.$ids.')'); + $query->execute(array($permissions)); + } + } + } + return true; + } + $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + public static function setExpirationDate($itemType, $itemSource, $date) { + if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false)) { + if (!empty($items)) { + if ($date == '') { + $date = null; + } else { + $date = new \DateTime($date); + $date = date('Y-m-d H:i', $date->format('U') - $date->getOffset()); + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); + foreach ($items as $item) { + $query->execute(array($date, $item['id'])); + } + return true; + } + } + return false; + } + + /** + * @brief Get the backend class for the specified item type + * @param string Item type + * @return Sharing backend object + */ + private static function getBackend($itemType) { + if (isset(self::$backends[$itemType])) { + return self::$backends[$itemType]; + } else if (isset(self::$backendTypes[$itemType]['class'])) { + $class = self::$backendTypes[$itemType]['class']; + if (class_exists($class)) { + self::$backends[$itemType] = new $class; + if (!(self::$backends[$itemType] instanceof Share_Backend)) { + $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + return self::$backends[$itemType]; + } else { + $message = 'Sharing backend '.$class.' not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + $message = 'Sharing backend for '.$itemType.' not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * @brief Get a list of collection item types for the specified item type + * @param string Item type + * @return array + */ + private static function getCollectionItemTypes($itemType) { + $collectionTypes = array($itemType); + foreach (self::$backendTypes as $type => $backend) { + if (in_array($backend['collectionOf'], $collectionTypes)) { + $collectionTypes[] = $type; + } + } + if (!self::getBackend($itemType) instanceof Share_Backend_Collection) { + unset($collectionTypes[0]); + } + // Return array if collections were found or the item type is a collection itself - collections can be inside collections + if (count($collectionTypes) > 0) { + return $collectionTypes; + } + return false; + } + + /** + * @brief Get shared items from the database + * @param string Item type + * @param string Item source or target (optional) + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique + * @param string User or group the item is being shared with + * @param string User that is the owner of shared items (optional) + * @param int Format to convert items to with formatItems() + * @param mixed Parameters to pass to formatItems() + * @param int Number of items to return, -1 to return all matches (optional) + * @param bool Include collection item types (optional) + * @return mixed + * + * See public functions getItem(s)... for parameter usage + * + */ + private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false) { + if (!self::isEnabled()) { + if ($limit == 1 || (isset($uidOwner) && isset($item))) { + return false; + } else { + return array(); + } + } + $backend = self::getBackend($itemType); + // Get filesystem root to add it to the file target and remove from the file source, match file_source with the file cache + if ($itemType == 'file' || $itemType == 'folder') { + $root = \OC_Filesystem::getRoot(); + $where = 'INNER JOIN `*PREFIX*fscache` ON `file_source` = `*PREFIX*fscache`.`id`'; + if (!isset($item)) { + $where .= ' WHERE `file_target` IS NOT NULL'; + } + $fileDependent = true; + $queryArgs = array(); + } else { + $fileDependent = false; + $root = ''; + if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { + // If includeCollections is true, find collections of this item type, e.g. a music album contains songs + if (!in_array($itemType, $collectionTypes)) { + $itemTypes = array_merge(array($itemType), $collectionTypes); + } else { + $itemTypes = $collectionTypes; + } + $placeholders = join(',', array_fill(0, count($itemTypes), '?')); + $where .= ' WHERE item_type IN ('.$placeholders.'))'; + $queryArgs = $itemTypes; + } else { + $where = ' WHERE `item_type` = ?'; + $queryArgs = array($itemType); + } + } + if (isset($shareType)) { + // Include all user and group items + if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { + $where .= ' AND `share_type` IN (?,?,?)'; + $queryArgs[] = self::SHARE_TYPE_USER; + $queryArgs[] = self::SHARE_TYPE_GROUP; + $queryArgs[] = self::$shareTypeGroupUserUnique; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + $placeholders = join(',', array_fill(0, count($userAndGroups), '?')); + $where .= ' AND `share_with` IN ('.$placeholders.')'; + $queryArgs = array_merge($queryArgs, $userAndGroups); + // Don't include own group shares + $where .= ' AND `uid_owner` != ?'; + $queryArgs[] = $shareWith; + } else { + $where .= ' AND `share_type` = ?'; + $queryArgs[] = $shareType; + if (isset($shareWith)) { + $where .= ' AND `share_with` = ?'; + $queryArgs[] = $shareWith; + } + } + } + if (isset($uidOwner)) { + $where .= ' AND `uid_owner` = ?'; + $queryArgs[] = $uidOwner; + if (!isset($shareType)) { + // Prevent unique user targets for group shares from being selected + $where .= ' AND `share_type` != ?'; + $queryArgs[] = self::$shareTypeGroupUserUnique; + } + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_source'; + } else { + $column = 'item_source'; + } + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + } else { + $column = 'item_target'; + } + } + if (isset($item)) { + if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { + $where .= ' AND ('; + } else { + $where .= ' AND'; + } + // If looking for own shared items, check item_source else check item_target + if (isset($uidOwner) || $itemShareWithBySource) { + // If item type is a file, file source needs to be checked in case the item was converted + if ($itemType == 'file' || $itemType == 'folder') { + $where .= ' `file_source` = ?'; + $column = 'file_source'; + } else { + $where .= ' `item_source` = ?'; + $column = 'item_source'; + } + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $where .= ' `file_target` = ?'; + $item = \OC_Filesystem::normalizePath($item); + } else { + $where .= ' `item_target` = ?'; + } + } + $queryArgs[] = $item; + if ($includeCollections && $collectionTypes) { + $placeholders = join(',', array_fill(0, count($collectionTypes), '?')); + $where .= ' OR item_type IN ('.$placeholders.'))'; + $queryArgs = array_merge($queryArgs, $collectionTypes); + } + } + if ($limit != -1 && !$includeCollections) { + if ($shareType == self::$shareTypeUserAndGroups) { + // Make sure the unique user target is returned if it exists, unique targets should follow the group share in the database + // If the limit is not 1, the filtering can be done later + $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; + } + // The limit must be at least 3, because filtering needs to be done + if ($limit < 3) { + $queryLimit = 3; + } else { + $queryLimit = $limit; + } + } else { + $queryLimit = null; + } + // TODO Optimize selects + if ($format == self::FORMAT_STATUSES) { + if ($itemType == 'file' || $itemType == 'folder') { + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `file_source`, `path`, `expiration`'; + } else { + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`'; + } + } else { + if (isset($uidOwner)) { + if ($itemType == 'file' || $itemType == 'folder') { + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`'; + } else { + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`, `stime`, `file_source`, `expiration`'; + } + } else { + if ($fileDependent) { + if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { + $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`'; + } else { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`'; + } + } else { + $select = '*'; + } + } + } + $root = strlen($root); + $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); + $result = $query->execute($queryArgs); + $items = array(); + $targets = array(); + while ($row = $result->fetchRow()) { + // Filter out duplicate group shares for users with unique targets + if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { + $row['share_type'] = self::SHARE_TYPE_GROUP; + $row['share_with'] = $items[$row['parent']]['share_with']; + // Remove the parent group share + unset($items[$row['parent']]); + if ($row['permissions'] == 0) { + continue; + } + } else if (!isset($uidOwner)) { + // Check if the same target already exists + if (isset($targets[$row[$column]])) { + // Check if the same owner shared with the user twice through a group and user share - this is allowed + $id = $targets[$row[$column]]; + if ($items[$id]['uid_owner'] == $row['uid_owner']) { + // Switch to group share type to ensure resharing conditions aren't bypassed + if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { + $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; + $items[$id]['share_with'] = $row['share_with']; + } + // Switch ids if sharing permission is granted on only one share to ensure correct parent is used if resharing + if (~(int)$items[$id]['permissions'] & self::PERMISSION_SHARE && (int)$row['permissions'] & self::PERMISSION_SHARE) { + $items[$row['id']] = $items[$id]; + unset($items[$id]); + $id = $row['id']; + } + // Combine the permissions for the item + $items[$id]['permissions'] |= (int)$row['permissions']; + continue; + } + } else { + $targets[$row[$column]] = $row['id']; + } + } + // Remove root from file source paths if retrieving own shared items + if (isset($uidOwner) && isset($row['path'])) { + if (isset($row['parent'])) { + $row['path'] = '/Shared/'.basename($row['path']); + } else { + $row['path'] = substr($row['path'], $root); + } + } + if (isset($row['expiration'])) { + $time = new \DateTime(); + if ($row['expiration'] < date('Y-m-d H:i', $time->format('U') - $time->getOffset())) { + self::delete($row['id']); + continue; + } + } + $items[$row['id']] = $row; + } + if (!empty($items)) { + $collectionItems = array(); + foreach ($items as &$row) { + // Return only the item instead of a 2-dimensional array + if ($limit == 1 && $row['item_type'] == $itemType && $row[$column] == $item) { + if ($format == self::FORMAT_NONE) { + return $row; + } else { + break; + } + } + // Check if this is a collection of the requested item type + if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { + if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof Share_Backend_Collection) { + // Collections can be inside collections, check if the item is a collection + if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { + $collectionItems[] = $row; + } else { + $collection = array(); + $collection['item_type'] = $row['item_type']; + if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { + $collection['path'] = basename($row['path']); + } + $row['collection'] = $collection; + // Fetch all of the children sources + $children = $collectionBackend->getChildren($row[$column]); + foreach ($children as $child) { + $childItem = $row; + $childItem['item_type'] = $itemType; + if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') { + $childItem['item_source'] = $child['source']; + $childItem['item_target'] = $child['target']; + } + if ($backend instanceof Share_Backend_File_Dependent) { + if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { + $childItem['file_source'] = $child['source']; + } else { + $childItem['file_source'] = \OC_FileCache::getId($child['file_path']); + } + $childItem['file_target'] = \OC_Filesystem::normalizePath($child['file_path']); + } + if (isset($item)) { + if ($childItem[$column] == $item) { + // Return only the item instead of a 2-dimensional array + if ($limit == 1) { + if ($format == self::FORMAT_NONE) { + return $childItem; + } else { + // Unset the items array and break out of both loops + $items = array(); + $items[] = $childItem; + break 2; + } + } else { + $collectionItems[] = $childItem; + } + } + } else { + $collectionItems[] = $childItem; + } + } + } + } + // Remove collection item + unset($items[$row['id']]); + } + } + if (!empty($collectionItems)) { + $items = array_merge($items, $collectionItems); + } + if ($format == self::FORMAT_NONE) { + return $items; + } else if ($format == self::FORMAT_STATUSES) { + $statuses = array(); + // Switch column to path for files and folders, used for determining statuses inside of folders + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'path'; + } + foreach ($items as $item) { + if ($item['share_type'] == self::SHARE_TYPE_LINK) { + $statuses[$item[$column]] = true; + } else if (!isset($statuses[$item[$column]])) { + $statuses[$item[$column]] = false; + } + } + return $statuses; + } else { + return $backend->formatItems($items, $format, $parameters); + } + } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { + return false; + } + return array(); + } + + /** + * @brief Put shared item into the database + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @param bool|array Parent folder target (optional) + * @return bool Returns true on success or false on failure + */ + private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null) { + $backend = self::getBackend($itemType); + // Check if this is a reshare + if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { + // Check if attempting to share back to owner + if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { + $message = 'Sharing '.$itemSource.' failed, because the user '.$shareWith.' is the original sharer'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Check if share permissions is granted + if ((int)$checkReshare['permissions'] & self::PERMISSION_SHARE) { + if (~(int)$checkReshare['permissions'] & $permissions) { + $message = 'Sharing '.$itemSource.' failed, because the permissions exceed permissions granted to '.$uidOwner; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } else { + // TODO Don't check if inside folder + $parent = $checkReshare['id']; + $itemSource = $checkReshare['item_source']; + $fileSource = $checkReshare['file_source']; + $suggestedItemTarget = $checkReshare['item_target']; + $suggestedFileTarget = $checkReshare['file_target']; + $filePath = $checkReshare['file_target']; + } + } else { + $message = 'Sharing '.$itemSource.' failed, because resharing is not allowed'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } else { + $parent = null; + $suggestedItemTarget = null; + $suggestedFileTarget = null; + if (!$backend->isValidSource($itemSource, $uidOwner)) { + $message = 'Sharing '.$itemSource.' failed, because the sharing backend for '.$itemType.' could not find its source'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + $parent = null; + if ($backend instanceof Share_Backend_File_Dependent) { + $filePath = $backend->getFilePath($itemSource, $uidOwner); + if ($itemType == 'file' || $itemType == 'folder') { + $fileSource = $itemSource; + } else { + $fileSource = \OC_FileCache::getId($filePath); + } + if ($fileSource == -1) { + $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } else { + $filePath = null; + $fileSource = null; + } + } + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + // Share with a group + if ($shareType == self::SHARE_TYPE_GROUP) { + $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); + // Set group default file target for future use + $parentFolders[0]['folder'] = $groupFileTarget; + } else { + // Get group default file target + $groupFileTarget = $parentFolder[0]['folder'].$itemSource; + $parent = $parentFolder[0]['id']; + } + } else { + $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); + } + } else { + $groupFileTarget = null; + } + $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget)); + // Save this id, any extra rows for this group share will need to reference it + $parent = \OC_DB::insertid('*PREFIX*share'); + // Loop through all users of this group in case we need to add an extra row + foreach ($shareWith['users'] as $uid) { + $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent); + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); + if ($fileTarget != $groupFileTarget) { + $parentFolders[$uid]['folder'] = $fileTarget; + } + } else if (isset($parentFolder[$uid])) { + $fileTarget = $parentFolder[$uid]['folder'].$itemSource; + $parent = $parentFolder[$uid]['id']; + } + } else { + $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); + } + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), $fileSource, $fileTarget)); + \OC_DB::insertid('*PREFIX*share'); + } + } + if ($parentFolder === true) { + // Return parent folders to preserve file target paths for potential children + return $parentFolders; + } + } else { + $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); + $parentFolders['folder'] = $fileTarget; + } else { + $fileTarget = $parentFolder['folder'].$itemSource; + $parent = $parentFolder['id']; + } + } else { + $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); + } + } else { + $fileTarget = null; + } + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, $permissions, time(), $fileSource, $fileTarget)); + $id = \OC_DB::insertid('*PREFIX*share'); + if ($parentFolder === true) { + $parentFolders['id'] = $id; + // Return parent folder to preserve file target paths for potential children + return $parentFolders; + } + } + return true; + } + + /** + * @brief Generate a unique target for the item + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string The suggested target originating from a reshare (optional) + * @param int The id of the parent group share (optional) + * @return string Item target + */ + private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedTarget = null, $groupParent = null) { + $backend = self::getBackend($itemType); + if ($shareType == self::SHARE_TYPE_LINK) { + if (isset($suggestedTarget)) { + return $suggestedTarget; + } + return $backend->generateTarget($itemSource, false); + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + $columnSource = 'file_source'; + } else { + $column = 'item_target'; + $columnSource = 'item_source'; + } + if ($shareType == self::SHARE_TYPE_USER) { + // Share with is a user, so set share type to user and groups + $shareType = self::$shareTypeUserAndGroups; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + } else { + $userAndGroups = false; + } + $exclude = null; + // Backend has 3 opportunities to generate a unique target + for ($i = 0; $i < 2; $i++) { + // Check if suggested target exists first + if ($i == 0 && isset($suggestedTarget)) { + $target = $suggestedTarget; + } else { + if ($shareType == self::SHARE_TYPE_GROUP) { + $target = $backend->generateTarget($itemSource, false, $exclude); + } else { + $target = $backend->generateTarget($itemSource, $shareWith, $exclude); + } + if (is_array($exclude) && in_array($target, $exclude)) { + break; + } + } + // Check if target already exists + $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); + if (!empty($checkTarget)) { + foreach ($checkTarget as $item) { + // Skip item if it is the group parent row + if (isset($groupParent) && $item['id'] == $groupParent) { + if (count($checkTarget) == 1) { + return $target; + } else { + continue; + } + } + if ($item['uid_owner'] == $uidOwner) { + if ($itemType == 'file' || $itemType == 'folder') { + if ($item['file_source'] == \OC_FileCache::getId($itemSource)) { + return $target; + } + } else if ($item['item_source'] == $itemSource) { + return $target; + } + } + } + if (!isset($exclude)) { + $exclude = array(); + } + // Find similar targets to improve backend's chances to generate a unqiue target + if ($userAndGroups) { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + } + } else { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` IN (\'file\', \'folder\') AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share` WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); + } + } + while ($row = $result->fetchRow()) { + $exclude[] = $row[$column]; + } + } else { + return $target; + } + } + } + $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * @brief Delete all reshares of an item + * @param int Id of item to delete + * @param bool If true, exclude the parent from the delete (optional) + * @param string The user that the parent was shared with (optinal) + */ + private static function delete($parent, $excludeParent = false, $uidOwner = null) { + $ids = array($parent); + $parents = array($parent); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + // Check the owner on the first search of reshares, useful for finding and deleting the reshares by a single user of a group share + if (count($ids) == 1 && isset($uidOwner)) { + $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); + $result = $query->execute(array($uidOwner)); + } else { + $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + } + // Reset parents array, only go through loop again if items are found + $parents = array(); + while ($item = $result->fetchRow()) { + // Search for a duplicate parent share, this occurs when an item is shared to the same user through a group and user or the same item is shared by different users + $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share` WHERE `item_type` = ? AND `item_target` = ? AND `share_type` IN (?,?,?) AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\') AND `uid_owner` != ? AND `id` != ?'); + $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, $item['uid_owner'], $item['parent']))->fetchRow(); + if ($duplicateParent) { + // Change the parent to the other item id if share permission is granted + if ($duplicateParent['permissions'] & self::PERMISSION_SHARE) { + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); + $query->execute(array($duplicateParent['id'], $item['id'])); + continue; + } + } + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + if ($excludeParent) { + unset($ids[0]); + } + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); + $query->execute(); + } + } + + /** + * Hook Listeners + */ + + public static function post_deleteUser($arguments) { + // Delete any items shared with the deleted user + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); + $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); + // Delete any items the deleted user shared + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); + $result = $query->execute(array($arguments['uid'])); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + + public static function post_addToGroup($arguments) { + // Find the group shares and check if the user needs a unique target + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + while ($item = $result->fetchRow()) { + if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { + $itemTarget = null; + } else { + $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + } + if (isset($item['file_source'])) { + $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { + $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], $item['stime'], $item['file_source'], $fileTarget)); + \OC_DB::insertid('*PREFIX*share'); + } + } + } + + public static function post_removeFromGroup($arguments) { + // TODO Don't call if user deleted? + $query = \OC_DB::prepare('SELECT `id`, `share_type` FROM `*PREFIX*share` WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'], self::$shareTypeGroupUserUnique, $arguments['uid'])); + while ($item = $result->fetchRow()) { + if ($item['share_type'] == self::SHARE_TYPE_GROUP) { + // Delete all reshares by this user of the group share + self::delete($item['id'], true, $arguments['uid']); + } else { + self::delete($item['id']); + } + } + } + + public static function post_deleteGroup($arguments) { + $query = \OC_DB::prepare('SELECT id FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + +} + +/** +* Interface that apps must implement to share content. +*/ +interface Share_Backend { + + /** + * @brief Get the source of the item to be stored in the database + * @param string Item source + * @param string Owner of the item + * @return mixed|array|false Source + * + * Return an array if the item is file dependent, the array needs two keys: 'item' and 'file' + * Return false if the item does not exist for the user + * + * The formatItems() function will translate the source returned back into the item + */ + public function isValidSource($itemSource, $uidOwner); + + /** + * @brief Get a unique name of the item for the specified user + * @param string Item source + * @param string|false User the item is being shared with + * @param array|null List of similar item names already existing as shared items + * @return string Target name + * + * This function needs to verify that the user does not already have an item with this name. + * If it does generate a new name e.g. name_# + */ + public function generateTarget($itemSource, $shareWith, $exclude = null); + + /** + * @brief Converts the shared item sources back into the item in the specified format + * @param array Shared items + * @param int Format + * @return ? + * + * The items array is a 3-dimensional array with the item_source as the first key and the share id as the second key to an array with the share info. + * The key/value pairs included in the share info depend on the function originally called: + * If called by getItem(s)Shared: id, item_type, item, item_source, share_type, share_with, permissions, stime, file_source + * If called by getItem(s)SharedWith: id, item_type, item, item_source, item_target, share_type, share_with, permissions, stime, file_source, file_target + * This function allows the backend to control the output of shared items with custom formats. + * It is only called through calls to the public getItem(s)Shared(With) functions. + */ + public function formatItems($items, $format, $parameters = null); + +} + +/** +* Interface for share backends that share content that is dependent on files. +* Extends the Share_Backend interface. +*/ +interface Share_Backend_File_Dependent extends Share_Backend { + + /** + * @brief Get the file path of the item + * @param + * @param + * @return + */ + public function getFilePath($itemSource, $uidOwner); + +} + +/** +* Interface for collections of of items implemented by another share backend. +* Extends the Share_Backend interface. +*/ +interface Share_Backend_Collection extends Share_Backend { + + /** + * @brief Get the sources of the children of the item + * @param string Item source + * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable + */ + public function getChildren($itemSource); + +} diff --git a/lib/setup.php b/lib/setup.php index 16b9ec68df68aceb10c95b8e4965dbd1a5daafb9..3c92e9c5599112a93a98f1facd514281b8ac9296 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -5,12 +5,19 @@ $hasMySQL = is_callable('mysql_connect'); $hasPostgreSQL = is_callable('pg_connect'); $hasOracle = is_callable('oci_connect'); $datadir = OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data'); + +// Test if .htaccess is working +$content = "deny from all"; +file_put_contents(OC::$SERVERROOT.'/data/.htaccess', $content); + $opts = array( 'hasSQLite' => $hasSQLite, 'hasMySQL' => $hasMySQL, 'hasPostgreSQL' => $hasPostgreSQL, 'hasOracle' => $hasOracle, 'directory' => $datadir, + 'secureRNG' => OC_Util::secureRNG_available(), + 'htaccessWorking' => OC_Util::ishtaccessworking(), 'errors' => array(), ); @@ -383,7 +390,7 @@ class OC_Setup { if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) { self::createHtaccess(); } - + //and we are done OC_Config::setValue('installed', true); } diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 4f26775b48e149286cd36af8443f829106100dd7..78893457f478511f6b483e79acfb9957028f35ba 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -49,7 +49,7 @@ class OC_TemplateLayout extends OC_Template { $jsfiles = self::findJavascriptFiles(OC_Util::$scripts); $this->assign('jsfiles', array(), false); if (!empty(OC_Util::$core_scripts)) { - $this->append( 'jsfiles', OC_Helper::linkToRemote('core.js', false)); + $this->append( 'jsfiles', OC_Helper::linkToRemoteBase('core.js', false)); } foreach($jsfiles as $info) { $root = $info[0]; @@ -62,7 +62,7 @@ class OC_TemplateLayout extends OC_Template { $cssfiles = self::findStylesheetFiles(OC_Util::$styles); $this->assign('cssfiles', array()); if (!empty(OC_Util::$core_styles)) { - $this->append( 'cssfiles', OC_Helper::linkToRemote('core.css', false)); + $this->append( 'cssfiles', OC_Helper::linkToRemoteBase('core.css', false)); } foreach($cssfiles as $info) { $root = $info[0]; diff --git a/lib/updater.php b/lib/updater.php index b3b289ef276d9eded961b47a1eefd921dcf333b5..cb22da4f906de487ec33d959c023b958a39d0554 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -45,12 +45,12 @@ class OC_Updater{ // set a sensible timeout of 10 sec to stay responsive even if the update server is down. $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); $xml=@file_get_contents($url, 0, $ctx); if($xml==FALSE) { return array(); diff --git a/lib/user.php b/lib/user.php index 7de2a4b7fe63475d4c84d839a533fde9ab931bb8..77bfe0de92a031de6d544bd67e69b5aaad1dcbfa 100644 --- a/lib/user.php +++ b/lib/user.php @@ -210,6 +210,10 @@ class OC_User { } // Delete the user's keys in preferences OC_Preferences::deleteUser($uid); + + // Delete user files in /data/ + OC_Helper::rmdirr(OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ) . '/'.$uid.'/'); + // Emit and exit OC_Hook::emit( "OC_User", "post_deleteUser", array( "uid" => $uid )); return true; @@ -329,6 +333,8 @@ class OC_User { } } } + // invalidate all login cookies + OC_Preferences::deleteApp($uid, 'login_token'); OC_Hook::emit( "OC_User", "post_setPassword", array( "uid" => $uid, "password" => $password )); return $success; } @@ -472,9 +478,10 @@ class OC_User { */ public static function setMagicInCookie($username, $token) { $secure_cookie = OC_Config::getValue("forcessl", false); - setcookie("oc_username", $username, time()+60*60*24*15, '', '', $secure_cookie); - setcookie("oc_token", $token, time()+60*60*24*15, '', '', $secure_cookie); - setcookie("oc_remember_login", true, time()+60*60*24*15, '', '', $secure_cookie); + $expires = time() + OC_Config::getValue('remember_login_cookie_lifetime', 60*60*24*15); + setcookie("oc_username", $username, $expires, '', '', $secure_cookie); + setcookie("oc_token", $token, $expires, '', '', $secure_cookie, true); + setcookie("oc_remember_login", true, $expires, '', '', $secure_cookie); } /** diff --git a/lib/util.php b/lib/util.php index a787a79e52a77ca3428f4ac61e2fde582fd31cfc..62a0580070b7774bd650695418d9e068ed6a1671 100755 --- a/lib/util.php +++ b/lib/util.php @@ -303,9 +303,11 @@ class OC_Util { return $errors; } - public static function displayLoginPage($display_lostpassword) { + public static function displayLoginPage($errors = array()) { $parameters = array(); - $parameters['display_lostpassword'] = $display_lostpassword; + foreach( $errors as $key => $value ) { + $parameters[$value] = true; + } if (!empty($_POST['user'])) { $parameters["username"] = OC_Util::sanitizeHTML($_POST['user']).'"'; @@ -352,6 +354,7 @@ class OC_Util { public static function checkAdminUser() { // Check if we are a user self::checkLoggedIn(); + self::verifyUser(); if( !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php' )); exit(); @@ -365,6 +368,7 @@ class OC_Util { public static function checkSubAdminUser() { // Check if we are a user self::checkLoggedIn(); + self::verifyUser(); if(OC_Group::inGroup(OC_User::getUser(),'admin')) { return true; } @@ -375,6 +379,40 @@ class OC_Util { return true; } + /** + * Check if the user verified the login with his password in the last 15 minutes + * If not, the user will be shown a password verification page + */ + public static function verifyUser() { + if(OC_Config::getValue('enhancedauth', true) === true) { + // Check password to set session + if(isset($_POST['password'])) { + if (OC_User::login(OC_User::getUser(), $_POST["password"] ) === true) { + $_SESSION['verifiedLogin']=time() + OC_Config::getValue('enhancedauthtime', 15 * 60); + } + } + + // Check if the user verified his password + if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { + OC_Template::printGuestPage("", "verify", array('username' => OC_User::getUser())); + exit(); + } + } + } + + /** + * Check if the user verified the login with his password + * @return bool + */ + public static function isUserVerified() { + if(OC_Config::getValue('enhancedauth', true) === true) { + if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { + return false; + } + return true; + } + } + /** * Redirect to the user default page */ @@ -419,7 +457,7 @@ class OC_Util { * @description * Also required for the client side to compute the piont in time when to * request a fresh token. The client will do so when nearly 97% of the - * timespan coded here has expired. + * timespan coded here has expired. */ public static $callLifespan = 3600; // 3600 secs = 1 hour @@ -548,30 +586,62 @@ class OC_Util { } } - /* - * @brief Generates random bytes with "openssl_random_pseudo_bytes" with a fallback for systems without openssl - * Inspired by gorgo on php.net - * @param Int with the length of the random - * @return String with the random bytes + /** + * @brief Generates a cryptographical secure pseudorandom string + * @param Int with the length of the random string + * @return String + * Please also update secureRNG_available if you change something here */ public static function generate_random_bytes($length = 30) { - if(function_exists('openssl_random_pseudo_bytes')) { + + // Try to use openssl_random_pseudo_bytes + if(function_exists('openssl_random_pseudo_bytes')) { $pseudo_byte = bin2hex(openssl_random_pseudo_bytes($length, $strong)); if($strong == TRUE) { return substr($pseudo_byte, 0, $length); // Truncate it to match the length } } - // fallback to mt_rand() + // Try to use /dev/urandom + $fp = @file_get_contents('/dev/urandom', false, null, 0, $length); + if ($fp !== FALSE) { + $string = substr(bin2hex($fp), 0, $length); + return $string; + } + + // Fallback to mt_rand() $characters = '0123456789'; - $characters .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; + $characters .= 'abcdefghijklmnopqrstuvwxyz'; $charactersLength = strlen($characters)-1; $pseudo_byte = ""; // Select some random characters for ($i = 0; $i < $length; $i++) { $pseudo_byte .= $characters[mt_rand(0, $charactersLength)]; - } + } return $pseudo_byte; } + + /** + * @brief Checks if a secure random number generator is available + * @return bool + */ + public static function secureRNG_available() { + + // Check openssl_random_pseudo_bytes + if(function_exists('openssl_random_pseudo_bytes')) { + openssl_random_pseudo_bytes(1, $strong); + if($strong == TRUE) { + return true; + } + } + + // Check /dev/urandom + $fp = @file_get_contents('/dev/urandom', false, null, 0, 1); + if ($fp !== FALSE) { + return true; + } + + return false; + } } diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index b251fea504b9e89df86543affc05effa70818802..12d3b67037ab92aa253e036cc568ee84f1c4ec0d 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -2,16 +2,15 @@ // Init owncloud require_once '../../lib/base.php'; + +// Check if we are a user OCP\JSON::callCheck(); +OC_JSON::checkLoggedIn(); $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); $password = $_POST["password"]; $oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; -// Check if we are a user -OC_JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - $userstatus = null; if(OC_Group::inGroup(OC_User::getUser(), 'admin')) { $userstatus = 'admin'; @@ -19,8 +18,15 @@ if(OC_Group::inGroup(OC_User::getUser(), 'admin')) { if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $userstatus = 'subadmin'; } -if(OC_User::getUser() == $username && OC_User::checkPassword($username, $oldPassword)) { - $userstatus = 'user'; +if(OC_User::getUser() === $username) { + if (OC_User::checkPassword($username, $oldPassword)) + { + $userstatus = 'user'; + } else { + if (!OC_Util::isUserVerified()) { + $userstatus = null; + } + } } if(is_null($userstatus)) { @@ -28,6 +34,10 @@ if(is_null($userstatus)) { exit(); } +if($userstatus === 'admin' || $userstatus === 'subadmin') { + OC_JSON::verifyUser(); +} + // Return Success story if( OC_User::setPassword( $username, $password )) { OC_JSON::success(array("data" => array( "username" => $username ))); diff --git a/settings/ajax/creategroup.php b/settings/ajax/creategroup.php index 83733ac4d2d58c130f447504b07bf5c02c6cb85d..431b449a8113e335549ebfecc220f96c1392e27d 100644 --- a/settings/ajax/creategroup.php +++ b/settings/ajax/creategroup.php @@ -3,14 +3,7 @@ // Init owncloud require_once '../../lib/base.php'; OCP\JSON::callCheck(); - -// Check if we are a user -if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { - OC_JSON::error(array("data" => array( "message" => $l->t("Authentication error") ))); - exit(); -} - -OCP\JSON::callCheck(); +OC_JSON::checkAdminUser(); $groupname = $_POST["groupname"]; diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php index bdf7e4983ac5fd5f12674bb0db9a721de01442f3..b3e5c23de541d9bd01c30d65808d15431298129f 100644 --- a/settings/ajax/createuser.php +++ b/settings/ajax/createuser.php @@ -3,13 +3,7 @@ // Init owncloud require_once '../../lib/base.php'; OCP\JSON::callCheck(); - -// Check if we are a user -if( !OC_User::isLoggedIn() || (!OC_Group::inGroup( OC_User::getUser(), 'admin' ) && !OC_SubAdmin::isSubAdmin(OC_User::getUser()))) { - OC_JSON::error(array("data" => array( "message" => "Authentication error" ))); - exit(); -} -OCP\JSON::callCheck(); +OC_JSON::checkSubAdminUser(); $isadmin = OC_Group::inGroup(OC_User::getUser(), 'admin')?true:false; diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 391dcc95c1feb1feb9c14fc6c1b5801b886c1635..13ada5d35e5c0ef9da16a975df8e439b66fc67d6 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", -"Authentication error" => "Fehler bei der Anmeldung", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", "Could not enable app. " => "App konnte nicht aktiviert werden.", @@ -9,6 +8,7 @@ "OpenID Changed" => "OpenID geändert", "Invalid request" => "Ungültige Anfrage", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", +"Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", "Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", @@ -16,9 +16,9 @@ "Disable" => "Deaktivieren", "Enable" => "Aktivieren", "Saving..." => "Speichern...", -"__language_name__" => "Deutsch", +"__language_name__" => "Deutsch (Persönlich)", "Security Warning" => "Sicherheitshinweis", -"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." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", +"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." => "Dein Datenverzeichnis ist möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Dir dringend, dass Du Deinen Webserver dahingehend konfigurieren, dass Dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Cron" => "Cron-Jobs", "Execute one task with each page loaded" => "Führe eine Aufgabe bei jeder geladenen Seite aus.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Ruf die Seite cron.php im ownCloud-Root minütlich per HTTP auf.", @@ -60,7 +60,7 @@ "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", -"use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden.", +"use this address to connect to your ownCloud in your file manager" => "Verwende diese Adresse, um Deine ownCloud mit Deinem Dateimanager zu verbinden.", "Name" => "Name", "Password" => "Passwort", "Groups" => "Gruppen", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php new file mode 100644 index 0000000000000000000000000000000000000000..100cbfd113f73f50514b5349de06a89e5a5e80a7 --- /dev/null +++ b/settings/l10n/de_DE.php @@ -0,0 +1,73 @@ +<?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Group already exists" => "Gruppe existiert bereits", +"Unable to add group" => "Gruppe konnte nicht angelegt werden", +"Could not enable app. " => "App konnte nicht aktiviert werden.", +"Email saved" => "E-Mail Adresse gespeichert", +"Invalid email" => "Ungültige E-Mail Adresse", +"OpenID Changed" => "OpenID geändert", +"Invalid request" => "Ungültige Anfrage", +"Unable to delete group" => "Gruppe konnte nicht gelöscht werden", +"Authentication error" => "Fehler bei der Anmeldung", +"Unable to delete user" => "Benutzer konnte nicht gelöscht werden", +"Language changed" => "Sprache geändert", +"Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", +"Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", +"Disable" => "Deaktivieren", +"Enable" => "Aktivieren", +"Saving..." => "Speichern...", +"__language_name__" => "Deutsch (Förmlich)", +"Security Warning" => "Sicherheitshinweis", +"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." => "Ihr Datenverzeichnis ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", +"Cron" => "Cron-Jobs", +"Execute one task with each page loaded" => "Führt eine Aufgabe bei jeder geladenen Seite aus.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Ruf die Seite cron.php im ownCloud-Root minütlich per HTTP auf.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Verwenden Sie den System-Crondienst. Bitte rufen Sie die cron.php im ownCloud-Ordner über einen System-Cronjob minütlich auf.", +"Sharing" => "Freigabe", +"Enable Share API" => "Freigabe-API aktivieren", +"Allow apps to use the Share API" => "Erlaubt Anwendungen, die Freigabe-API zu nutzen", +"Allow links" => "Links erlauben", +"Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links öffentlich zu teilen", +"Allow resharing" => "Erneutes Teilen erlauben", +"Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", +"Allow users to share with anyone" => "Erlaubet Nutzern mit jedem zu Teilen", +"Allow users to only share with users in their groups" => "Erlaubet Nutzern nur das Teilen in ihrer Gruppe", +"Log" => "Log", +"More" => "Mehr", +"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>." => "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.", +"Add your App" => "Fügen Sie Ihre Anwendung hinzu", +"More Apps" => "Weitere Anwendungen", +"Select an App" => "Wählen Sie eine Anwendung aus", +"See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lizenziert von <span class=\"author\"></span>", +"Documentation" => "Dokumentation", +"Managing Big Files" => "Große Dateien verwalten", +"Ask a question" => "Stellen Sie eine Frage", +"Problems connecting to help database." => "Probleme bei der Verbindung zur Hilfe-Datenbank.", +"Go there manually." => "Datenbank direkt besuchen.", +"Answer" => "Antwort", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s<strong>", +"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", +"Download" => "Download", +"Your password was changed" => "Ihr Passwort wurde geändert.", +"Unable to change your password" => "Passwort konnte nicht geändert werden", +"Current password" => "Aktuelles Passwort", +"New password" => "Neues Passwort", +"show" => "zeigen", +"Change password" => "Passwort ändern", +"Email" => "E-Mail", +"Your email address" => "Ihre E-Mail-Adresse", +"Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", +"Language" => "Sprache", +"Help translate" => "Hilf bei der Übersetzung", +"use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden.", +"Name" => "Name", +"Password" => "Passwort", +"Groups" => "Gruppen", +"Create" => "Anlegen", +"Default Quota" => "Standard-Quota", +"Other" => "Andere", +"Group Admin" => "Gruppenadministrator", +"Quota" => "Quota", +"Delete" => "Löschen" +); diff --git a/settings/l10n/el.php b/settings/l10n/el.php index c6bb9857100c0605dd7c84bd144f9de10ade0358..bf74d0bde2121f3bbe79dac5e35d6db21f33ed16 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -4,7 +4,7 @@ "Group already exists" => "Η ομάδα υπάρχει ήδη", "Unable to add group" => "Αδυναμία προσθήκης ομάδας", "Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", -"Email saved" => "Το Email αποθηκεύτηκε ", +"Email saved" => "Το email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "OpenID Changed" => "Το OpenID άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", @@ -33,14 +33,15 @@ "Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε", "Allow users to only share with users in their groups" => "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Log" => "Αρχείο καταγραφής", -"More" => "Περισσότερο", +"More" => "Περισσότερα", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Αναπτύχθηκε από την <a href=\"http://ownCloud.org/contact\" target=\"_blank\">κοινότητα ownCloud</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>.", -"Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", -"Select an App" => "Επιλέξτε μια εφαρμογή", -"See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", +"Add your App" => "Πρόσθεστε τη Δικιά σας Εφαρμογή", +"More Apps" => "Περισσότερες Εφαρμογές", +"Select an App" => "Επιλέξτε μια Εφαρμογή", +"See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-άδεια από <span class=\"author\"></span>", "Documentation" => "Τεκμηρίωση", -"Managing Big Files" => "Διαχείριση μεγάλων αρχείων", +"Managing Big Files" => "Διαχείριση Μεγάλων Αρχείων", "Ask a question" => "Ρωτήστε μια ερώτηση", "Problems connecting to help database." => "Προβλήματα κατά τη σύνδεση με τη βάση δεδομένων βοήθειας.", "Go there manually." => "Χειροκίνητη μετάβαση.", @@ -55,18 +56,18 @@ "show" => "εμφάνιση", "Change password" => "Αλλαγή συνθηματικού", "Email" => "Email", -"Your email address" => "Διεύθυνση ηλεκτρονικού ταχυδρομείου σας", +"Your email address" => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", "Language" => "Γλώσσα", -"Help translate" => "Βοηθήστε στην μετάφραση", -"use this address to connect to your ownCloud in your file manager" => "χρησιμοποιήστε αυτή τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας", +"Help translate" => "Βοηθήστε στη μετάφραση", +"use this address to connect to your ownCloud in your file manager" => "χρησιμοποιήστε αυτήν τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας", "Name" => "Όνομα", "Password" => "Συνθηματικό", "Groups" => "Ομάδες", "Create" => "Δημιουργία", -"Default Quota" => "Προεπιλεγμένο όριο", +"Default Quota" => "Προεπιλεγμένο Όριο", "Other" => "Άλλα", "Group Admin" => "Ομάδα Διαχειριστών", -"Quota" => "Σύνολο χώρου", +"Quota" => "Σύνολο Χώρου", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 7052bf34c92c78bf6e701907a2362f307d3aeffb..2c8263d292ff3f1b746b0a405fa659fc57ad9c2d 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,30 +1,50 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ne eblis ŝargi liston el aplikaĵovendejo", "Authentication error" => "Aŭtentiga eraro", +"Group already exists" => "La grupo jam ekzistas", +"Unable to add group" => "Ne eblis aldoni la grupon", +"Could not enable app. " => "Ne eblis kapabligi la aplikaĵon.", "Email saved" => "La retpoŝtadreso konserviĝis", "Invalid email" => "Nevalida retpoŝtadreso", "OpenID Changed" => "La agordo de OpenID estas ŝanĝita", "Invalid request" => "Nevalida peto", +"Unable to delete group" => "Ne eblis forigi la grupon", +"Unable to delete user" => "Ne eblis forigi la uzanton", "Language changed" => "La lingvo estas ŝanĝita", +"Unable to add user to group %s" => "Ne eblis aldoni la uzanton al la grupo %s", +"Unable to remove user from group %s" => "Ne eblis forigi la uzantan el la grupo %s", "Disable" => "Malkapabligi", "Enable" => "Kapabligi", "Saving..." => "Konservante...", "__language_name__" => "Esperanto", "Security Warning" => "Sekureca averto", "Cron" => "Cron", +"Sharing" => "Kunhavigo", +"Enable Share API" => "Kapabligi API-on por Kunhavigo", +"Allow apps to use the Share API" => "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo", +"Allow links" => "Kapabligi ligilojn", +"Allow users to share items to the public with links" => "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile", +"Allow resharing" => "Kapabligi rekunhavigon", +"Allow users to share items shared with them again" => "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili", +"Allow users to share with anyone" => "Kapabligi uzantojn kunhavigi kun ĉiu ajn", +"Allow users to only share with users in their groups" => "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj", "Log" => "Protokolo", "More" => "Pli", "Add your App" => "Aldonu vian aplikaĵon", +"More Apps" => "Pli da aplikaĵoj", "Select an App" => "Elekti aplikaĵon", "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"</span>-permesilhavigita de <span class=\"author\"></span>", "Documentation" => "Dokumentaro", "Managing Big Files" => "Administrante grandajn dosierojn", "Ask a question" => "Faru demandon", "Problems connecting to help database." => "Problemoj okazis dum konektado al la helpa datumbazo.", "Go there manually." => "Iri tien mane.", "Answer" => "Respondi", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Vi uzas <strong>%s</strong> el la haveblaj <strong>%s</strong>", "Desktop and Mobile Syncing Clients" => "Labortablaj kaj porteblaj sinkronigoklientoj", "Download" => "Elŝuti", +"Your password was changed" => "Via pasvorto ŝanĝiĝis", "Unable to change your password" => "Ne eblis ŝanĝi vian pasvorton", "Current password" => "Nuna pasvorto", "New password" => "Nova pasvorto", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index b81f545b13eb96f8d2e00d77ea2f7181a450d03f..3a7bf0749bfb23a77fc65b89b34eb26e307f7a4d 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store", -"Authentication error" => "Erreur d'authentification", "Group already exists" => "Ce groupe existe déjà", "Unable to add group" => "Impossible d'ajouter le groupe", "Could not enable app. " => "Impossible d'activer l'Application", @@ -9,6 +8,7 @@ "OpenID Changed" => "Identifiant OpenID changé", "Invalid request" => "Requête invalide", "Unable to delete group" => "Impossible de supprimer le groupe", +"Authentication error" => "Erreur d'authentification", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", "Unable to add user to group %s" => "Impossible d'ajouter l'utilisateur au groupe %s", @@ -36,6 +36,7 @@ "More" => "Plus", "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>." => "Développé par la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">communauté ownCloud</a>, le <a href=\"https://github.com/owncloud\" target=\"_blank\">code source</a> est publié sous license <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Add your App" => "Ajoutez votre application", +"More Apps" => "Plus d'applications…", "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "Distribué sous licence <span class=\"licence\"></span>, par <span class=\"author\"></span>", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 72f79837d90e0d04fab263db93f4d1cc9a312ade..81b7861a3be767d0a90c1b83833a356f599f239a 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "アプリストアからリストをロードできません", -"Authentication error" => "認証エラー", "Group already exists" => "グループは既に存在しています", "Unable to add group" => "グループを追加できません", "Could not enable app. " => "アプリを有効にできませんでした。", @@ -9,6 +8,7 @@ "OpenID Changed" => "OpenIDが変更されました", "Invalid request" => "無効なリクエストです", "Unable to delete group" => "グループを削除できません", +"Authentication error" => "認証エラー", "Unable to delete user" => "ユーザを削除できません", "Language changed" => "言語が変更されました", "Unable to add user to group %s" => "ユーザをグループ %s に追加できません", @@ -36,6 +36,7 @@ "More" => "もっと", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>により開発されています、<a href=\"https://github.com/owncloud\" target=\"_blank\">ソースコード</a>ライセンスは、<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> ライセンスにより提供されています。", "Add your App" => "アプリを追加", +"More Apps" => "さらにアプリを表示", "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-ライセンス: <span class=\"author\"></span>", @@ -45,7 +46,7 @@ "Problems connecting to help database." => "ヘルプデータベースへの接続時に問題が発生しました", "Go there manually." => "手動で移動してください。", "Answer" => "解答", -"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "現在、<strong>%s</strong> / <strong>%s<strong> を利用しています", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "現在、 <strong>%s</strong> / <strong>%s<strong> を利用しています", "Desktop and Mobile Syncing Clients" => "デスクトップおよびモバイル用の同期クライアント", "Download" => "ダウンロード", "Your password was changed" => "パスワードを変更しました", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index d7bd4267ac131d7b002cbd623af48907519f83db..d24c4f04ad1548c706ecbf12f82dae02e83d60c7 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -67,7 +67,7 @@ "Create" => "Creëer", "Default Quota" => "Standaard limiet", "Other" => "Andere", -"Group Admin" => "Groep Administrator", +"Group Admin" => "Groep beheerder", "Quota" => "Limieten", "Delete" => "verwijderen" ); diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php new file mode 100644 index 0000000000000000000000000000000000000000..451fb8a98580886882beb3d17ec75d12e3da88a7 --- /dev/null +++ b/settings/l10n/si_LK.php @@ -0,0 +1,15 @@ +<?php $TRANSLATIONS = array( +"Invalid request" => "අවලංගු අයදුම", +"Language changed" => "භාෂාව ාවනස් කිරීම", +"Answer" => "පිළිතුර", +"Current password" => "නූතන මුරපදය", +"New password" => "නව මුරපදය", +"show" => "ප්රදර්ශනය කිරීම", +"Change password" => "මුරපදය වෙනස් කිරීම", +"Language" => "භාෂාව", +"Name" => "නාමය", +"Password" => "මුරපදය", +"Groups" => "සමූහය", +"Create" => "තනනවා", +"Delete" => "මකා දමනවා" +); diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 4dd824a8088d75d1fa9eeaf61d3174ddc1ef0fb5..cbbc04e00958df0f78c6ee8b973c3945a8b00c86 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Nie je možné nahrať zoznam z App Store", -"Authentication error" => "Chyba pri autentifikácii", "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možné pridať skupinu", "Could not enable app. " => "Nie je možné zapnúť aplikáciu.", @@ -9,6 +8,7 @@ "OpenID Changed" => "OpenID zmenené", "Invalid request" => "Neplatná požiadavka", "Unable to delete group" => "Nie je možné zmazať skupinu", +"Authentication error" => "Chyba pri autentifikácii", "Unable to delete user" => "Nie je možné zmazať užívateľa", "Language changed" => "Jazyk zmenený", "Unable to add user to group %s" => "Nie je možné pridať užívateľa do skupiny %s", @@ -18,6 +18,7 @@ "Saving..." => "Ukladám...", "__language_name__" => "Slovensky", "Security Warning" => "Bezpečnostné varovanie", +"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." => "Váš priečinok s dátami a vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera.", "Execute one task with each page loaded" => "Vykonať jednu úlohu každým nahraním stránky", "Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Používať systémovú službu cron. Každú minútu bude spustený súbor cron.php v priečinku owncloud pomocou systémového programu cronjob.", "Sharing" => "Zdieľanie", @@ -34,19 +35,19 @@ "Add your App" => "Pridať vašu aplikáciu", "More Apps" => "Viac aplikácií", "Select an App" => "Vyberte aplikáciu", -"See application page at apps.owncloud.com" => "Pozrite si stránku aplikácie na apps.owncloud.com", +"See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencované <span class=\"author\"></span>", "Documentation" => "Dokumentácia", -"Managing Big Files" => "Spravovanie veľké súbory", +"Managing Big Files" => "Správa veľkých súborov", "Ask a question" => "Opýtajte sa otázku", -"Problems connecting to help database." => "Problémy spojené s pomocnou databázou.", +"Problems connecting to help database." => "Problémy s pripojením na databázu pomocníka.", "Go there manually." => "Prejsť tam ručne.", "Answer" => "Odpoveď", "You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Použili ste <strong>%s</strong> dostupného <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Klienti pre synchronizáciu", "Download" => "Stiahnúť", "Your password was changed" => "Heslo bolo zmenené", -"Unable to change your password" => "Nedokážem zmeniť vaše heslo", +"Unable to change your password" => "Nie je možné zmeniť vaše heslo", "Current password" => "Aktuálne heslo", "New password" => "Nové heslo", "show" => "zobraziť", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 18de6a6068f425ab8cf4c46e5543315667e3e722..7486f7f8d140fd31b9eb64053d706622d1df236e 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,13 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Không thể tải danh sách ứng dụng từ App Store", -"Authentication error" => "Lỗi xác thực", "Group already exists" => "Nhóm đã tồn tại", "Unable to add group" => "Không thể thêm nhóm", +"Could not enable app. " => "không thể kích hoạt ứng dụng.", "Email saved" => "Lưu email", "Invalid email" => "Email không hợp lệ", "OpenID Changed" => "Đổi OpenID", "Invalid request" => "Yêu cầu không hợp lệ", "Unable to delete group" => "Không thể xóa nhóm", +"Authentication error" => "Lỗi xác thực", "Unable to delete user" => "Không thể xóa người dùng", "Language changed" => "Ngôn ngữ đã được thay đổi", "Unable to add user to group %s" => "Không thể thêm người dùng vào nhóm %s", @@ -19,6 +20,10 @@ "Security Warning" => "Cảnh bảo bảo mật", "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." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ internet. Tập tin .htaccess của ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ webserver của bạn để thư mục dữ liệu không còn bị truy cập hoặc bạn di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Thực thi tác vụ mỗi khi trang được tải", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php đã được đăng ký tại một dịch vụ webcron. Gọi trang cron.php mỗi phút một lần thông qua giao thức http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Sử dụng dịch vụ cron của hệ thống. Gọi tệp tin cron.php mỗi phút một lần.", +"Sharing" => "Chia sẻ", "Enable Share API" => "Bật chia sẻ API", "Allow apps to use the Share API" => "Cho phép các ứng dụng sử dụng chia sẻ API", "Allow links" => "Cho phép liên kết", @@ -31,6 +36,7 @@ "More" => "nhiều hơn", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Được phát triển bởi <a href=\"http://ownCloud.org/contact\" target=\"_blank\">cộng đồng ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">mã nguồn </a> đã được cấp phép theo chuẩn <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Add your App" => "Thêm ứng dụng của bạn", +"More Apps" => "Nhiều ứng dụng hơn", "Select an App" => "Chọn một ứng dụng", "See application page at apps.owncloud.com" => "Xem ứng dụng tại apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-Giấy phép được cấp bởi <span class=\"author\"></span>", @@ -40,8 +46,10 @@ "Problems connecting to help database." => "Vấn đề kết nối đến cơ sở dữ liệu.", "Go there manually." => "Đến bằng thủ công", "Answer" => "trả lời", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Bạn đã sử dụng <strong>%s</strong> trong <strong>%s</strong> được phép.", "Desktop and Mobile Syncing Clients" => "Đồng bộ dữ liệu", "Download" => "Tải về", +"Your password was changed" => "Mật khẩu của bạn đã được thay đổi.", "Unable to change your password" => "Không thể đổi mật khẩu", "Current password" => "Mật khẩu cũ", "New password" => "Mật khẩu mới ", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 26bfbbd7ae50e9fdd1929af60f778fed409d2794..ea4d00bfcd303b9d4620c4a244aab9c93b23e466 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "不能从App Store 中加载列表", -"Authentication error" => "认证错误", "Group already exists" => "群组已存在", "Unable to add group" => "未能添加群组", "Could not enable app. " => "未能启用应用", @@ -9,6 +8,7 @@ "OpenID Changed" => "OpenID 改变了", "Invalid request" => "非法请求", "Unable to delete group" => "未能删除群组", +"Authentication error" => "认证错误", "Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", "Unable to add user to group %s" => "未能添加用户到群组 %s", @@ -36,6 +36,7 @@ "More" => "更多", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "由 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社区</a>开发,<a href=\"https://github.com/owncloud\" target=\"_blank\">s源代码</a> 以 <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 许可协议发布。", "Add your App" => "添加你的应用程序", +"More Apps" => "更多应用", "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>授权协议 <span class=\"author\"></span>", diff --git a/settings/languageCodes.php b/settings/languageCodes.php index 6d3b6ebe634574c70948291d35232f7b18fe5e00..221aa13cf6aef716bb2d358b7a0c115060b7d9c2 100644 --- a/settings/languageCodes.php +++ b/settings/languageCodes.php @@ -9,7 +9,8 @@ return array( 'ca'=>'Català', 'cs_CZ'=>'Čeština', 'da'=>'Dansk', -'de'=>'Deutsch', +'de'=>'Deutsch (Persönlich)', +'de_DE'=>'Deutsch (Förmlich)', 'el'=>'Ελληνικά', 'en'=>'English', 'es'=>'Español', diff --git a/settings/personal.php b/settings/personal.php index 54002d87c5929634ac9de968b0ae7592666eb2f0..c73a3dd37018d97ef3f7c514c933f45bab61424e 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -18,12 +18,7 @@ OC_App::setActiveNavigationEntry( 'personal' ); // calculate the disc space $rootInfo=OC_FileCache::get(''); $sharedInfo=OC_FileCache::get('/Shared'); -if (!isset($sharedInfo['size'])) { - $sharedSize = 0; -} else { - $sharedSize = $sharedInfo['size']; -} -$used=$rootInfo['size']-$sharedSize; +$used=$rootInfo['size']; if($used<0) $used=0; $free=\OC\Files\Filesystem::free_space(); $total=$free+$used; diff --git a/settings/settings.php b/settings/settings.php index 24099ef574227c2cc4605914b8b348abe8a682e9..68c07ff60f0733a8a39f62b5bcef468e8ae8b195 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -7,6 +7,7 @@ require_once '../lib/base.php'; OC_Util::checkLoggedIn(); +OC_Util::verifyUser(); OC_Util::addStyle( 'settings', 'settings' ); OC_App::setActiveNavigationEntry( 'settings' ); diff --git a/tests/bootstrap.php b/tests/bootstrap.php index f8364b71ef79697f46d51887f7e5a2214b7870f0..16ed6cdb3c71c368a52eab71c44f2882db81a1cc 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,5 +1,7 @@ <?php +global $RUNTIME_NOAPPS; +$RUNTIME_NOAPPS = true; require_once __DIR__.'/../lib/base.php'; if(!class_exists('PHPUnit_Framework_TestCase')){ diff --git a/tests/lib/geo.php b/tests/lib/geo.php new file mode 100644 index 0000000000000000000000000000000000000000..2b3599ab9b9fbd5920ac83808d56164924ad88c7 --- /dev/null +++ b/tests/lib/geo.php @@ -0,0 +1,19 @@ +<?php +/** + * Copyright (c) 2012 Lukas Reschke <lukas@statuscode.ch> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Geo extends UnitTestCase { + function testTimezone() { + $result = OC_Geo::timezone(3,3); + $expected = 'Africa/Porto-Novo'; + $this->assertEquals($result, $expected); + + $result = OC_Geo::timezone(-3,-3333); + $expected = 'Pacific/Enderbury'; + $this->assertEquals($result, $expected); + } +} \ No newline at end of file diff --git a/tests/lib/helper.php b/tests/lib/helper.php new file mode 100644 index 0000000000000000000000000000000000000000..cfb9a7995795f0611e5b4d276e85c2716302c91f --- /dev/null +++ b/tests/lib/helper.php @@ -0,0 +1,140 @@ +<?php +/** + * Copyright (c) 2012 Lukas Reschke <lukas@statuscode.ch> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Helper extends UnitTestCase { + + function testHumanFileSize() { + $result = OC_Helper::humanFileSize(0); + $expected = '0 B'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::humanFileSize(1024); + $expected = '1 kB'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::humanFileSize(10000000); + $expected = '9.5 MB'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::humanFileSize(500000000000); + $expected = '465.7 GB'; + $this->assertEquals($result, $expected); + } + + function testComputerFileSize() { + $result = OC_Helper::computerFileSize("0 B"); + $expected = '0.0'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::computerFileSize("1 kB"); + $expected = '1024.0'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::computerFileSize("9.5 MB"); + $expected = '9961472.0'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::computerFileSize("465.7 GB"); + $expected = '500041567436.8'; + $this->assertEquals($result, $expected); + } + + function testGetMimeType() { + $dir=OC::$SERVERROOT.'/tests/data'; + $result = OC_Helper::getMimeType($dir."/"); + $expected = 'httpd/unix-directory'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::getMimeType($dir."/data.tar.gz"); + $expected = 'application/x-gzip'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::getMimeType($dir."/data.zip"); + $expected = 'application/zip'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::getMimeType($dir."/logo-wide.svg"); + $expected = 'image/svg+xml'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::getMimeType($dir."/logo-wide.png"); + $expected = 'image/png'; + $this->assertEquals($result, $expected); + } + + function testGetStringMimeType() { + $result = OC_Helper::getStringMimeType("/data/data.tar.gz"); + $expected = 'text/plain; charset=us-ascii'; + $this->assertEquals($result, $expected); + } + + function testIssubdirectory() { + $result = OC_Helper::issubdirectory("./data/", "/anotherDirectory/"); + $this->assertFalse($result); + + $result = OC_Helper::issubdirectory("./data/", "./data/"); + $this->assertTrue($result); + + mkdir("data/TestSubdirectory", 0777); + $result = OC_Helper::issubdirectory("data/TestSubdirectory/", "data"); + rmdir("data/TestSubdirectory"); + $this->assertTrue($result); + } + + function testMb_array_change_key_case() { + $arrayStart = array( + "Foo" => "bar", + "Bar" => "foo", + ); + $arrayResult = array( + "foo" => "bar", + "bar" => "foo", + ); + $result = OC_Helper::mb_array_change_key_case($arrayStart); + $expected = $arrayResult; + $this->assertEquals($result, $expected); + + $arrayStart = array( + "foo" => "bar", + "bar" => "foo", + ); + $arrayResult = array( + "FOO" => "bar", + "BAR" => "foo", + ); + $result = OC_Helper::mb_array_change_key_case($arrayStart, MB_CASE_UPPER); + $expected = $arrayResult; + $this->assertEquals($result, $expected); + } + + function testMb_substr_replace() { + $result = OC_Helper::mb_substr_replace("This is a teststring", "string", 5); + $expected = "This string is a teststring"; + $this->assertEquals($result, $expected); + } + + function testMb_str_replace() { + $result = OC_Helper::mb_str_replace("teststring", "string", "This is a teststring"); + $expected = "This is a string"; + $this->assertEquals($result, $expected); + } + + function testRecursiveArraySearch() { + $haystack = array( + "Foo" => "own", + "Bar" => "Cloud", + ); + + $result = OC_Helper::recursiveArraySearch($haystack, "own"); + $expected = "Foo"; + $this->assertEquals($result, $expected); + + $result = OC_Helper::recursiveArraySearch($haystack, "NotFound"); + $this->assertFalse($result); + } +} diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index 7f6784f8df7ca1f9e56ea00d96335e603ad4a5ba..3cad3a286807b82a52f6122c073a91fe27f6ca6e 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -33,10 +33,10 @@ class Test_Share extends UnitTestCase { public function setUp() { OC_User::clearBackends(); OC_User::useBackend('dummy'); - $this->user1 = uniqid('user_'); - $this->user2 = uniqid('user_'); - $this->user3 = uniqid('user_'); - $this->user4 = uniqid('user_'); + $this->user1 = uniqid('user1_'); + $this->user2 = uniqid('user2_'); + $this->user3 = uniqid('user3_'); + $this->user4 = uniqid('user4_'); OC_User::createUser($this->user1, 'pass'); OC_User::createUser($this->user2, 'pass'); OC_User::createUser($this->user3, 'pass'); @@ -66,7 +66,7 @@ class Test_Share extends UnitTestCase { try { OCP\Share::shareItem('test', 'test.txt', 'foobar', $this->user2, OCP\Share::PERMISSION_READ); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } } @@ -76,43 +76,43 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('foobar', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } try { OCP\Share::getItemsSharedWith('foobar'); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } try { OCP\Share::getItemSharedWith('foobar', 'test.txt'); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } try { OCP\Share::getItemSharedWithBySource('foobar', 'test.txt'); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } try { OCP\Share::getItemShared('foobar', 'test.txt'); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } try { OCP\Share::unshare('foobar', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } try { OCP\Share::setPermissions('foobar', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_UPDATE); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } } @@ -123,28 +123,28 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user1, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } $message = 'Sharing test.txt failed, because the user foobar does not exist'; try { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, 'foobar', OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } $message = 'Sharing foobar failed, because the sharing backend for test could not find its source'; try { OCP\Share::shareItem('test', 'foobar', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Valid share $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_READ)); - $this->assertEqual(OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE)); // Attempt to share again OC_User::setUserId($this->user1); @@ -153,7 +153,7 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Attempt to share back @@ -163,7 +163,7 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user1, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Unshare @@ -178,7 +178,7 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user3, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Owner grants share and update permission @@ -192,15 +192,15 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user3, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_DELETE); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Valid reshare $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user3, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE)); - $this->assertEqual(OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE)); OC_User::setUserId($this->user3); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), array('test.txt')); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE)); + $this->assertEquals(array('test.txt'), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); // Attempt to escalate permissions OC_User::setUserId($this->user2); @@ -209,22 +209,22 @@ class Test_Share extends UnitTestCase { OCP\Share::setPermissions('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user3, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_DELETE); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Remove update permission OC_User::setUserId($this->user1); $this->assertTrue(OCP\Share::setPermissions('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); OC_User::setUserId($this->user3); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); // Remove share permission OC_User::setUserId($this->user1); $this->assertTrue(OCP\Share::setPermissions('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_READ)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); OC_User::setUserId($this->user3); $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); @@ -248,7 +248,7 @@ class Test_Share extends UnitTestCase { OC_User::setUserId($this->user2); $to_test = OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET); - $this->assertEqual(count($to_test), 2); + $this->assertEquals(2, count($to_test)); $this->assertTrue(in_array('test.txt', $to_test)); $this->assertTrue(in_array('test1.txt', $to_test)); @@ -256,7 +256,7 @@ class Test_Share extends UnitTestCase { OC_User::setUserId($this->user1); OC_User::deleteUser($this->user1); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test1.txt')); + $this->assertEquals(array('test1.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); } public function testShareWithGroup() { @@ -266,7 +266,7 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, 'foobar', OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } $policy = OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); OC_Appconfig::setValue('core', 'shareapi_share_policy', 'groups_only'); @@ -275,17 +275,17 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group2, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } OC_Appconfig::setValue('core', 'shareapi_share_policy', $policy); // Valid share $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ)); - $this->assertEqual(OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemShared('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE)); OC_User::setUserId($this->user3); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE)); // Attempt to share again OC_User::setUserId($this->user1); @@ -294,7 +294,7 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Attempt to share back to owner of group share @@ -304,7 +304,7 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user1, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Attempt to share back to group @@ -313,7 +313,7 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Attempt to share back to member of group @@ -322,7 +322,7 @@ class Test_Share extends UnitTestCase { OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user3, OCP\Share::PERMISSION_READ); $this->fail('Exception was expected: '.$message); } catch (Exception $exception) { - $this->assertEqual($exception->getMessage(), $message); + $this->assertEquals($message, $exception->getMessage()); } // Unshare @@ -333,76 +333,76 @@ class Test_Share extends UnitTestCase { $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_DELETE | OCP\Share::PERMISSION_SHARE)); $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE | OCP\Share::PERMISSION_DELETE | OCP\Share::PERMISSION_SHARE)); + $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE | OCP\Share::PERMISSION_DELETE | OCP\Share::PERMISSION_SHARE), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); OC_User::setUserId($this->user3); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE)); + $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); // Valid reshare OC_User::setUserId($this->user2); $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user4, OCP\Share::PERMISSION_READ)); OC_User::setUserId($this->user4); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); // Unshare from user only OC_User::setUserId($this->user1); $this->assertTrue(OCP\Share::unshare('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); OC_User::setUserId($this->user4); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array()); + $this->assertEquals(array(), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); // Valid share with same person - group then user OC_User::setUserId($this->user1); $this->assertTrue(OCP\Share::shareItem('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_DELETE)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE | OCP\Share::PERMISSION_DELETE)); + $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_UPDATE | OCP\Share::PERMISSION_DELETE), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); // Unshare from group only OC_User::setUserId($this->user1); $this->assertTrue(OCP\Share::unshare('test', 'test.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS), array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_DELETE)); + $this->assertEquals(array(OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_DELETE), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); // Attempt user specific target conflict OC_User::setUserId($this->user3); $this->assertTrue(OCP\Share::shareItem('test', 'share.txt', OCP\Share::SHARE_TYPE_GROUP, $this->group1, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE)); OC_User::setUserId($this->user2); $to_test = OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET); - $this->assertEqual(count($to_test), 2); + $this->assertEquals(2, count($to_test)); $this->assertTrue(in_array('test.txt', $to_test)); $this->assertTrue(in_array('test1.txt', $to_test)); // Valid reshare $this->assertTrue(OCP\Share::shareItem('test', 'share.txt', OCP\Share::SHARE_TYPE_USER, $this->user4, OCP\Share::PERMISSION_READ | OCP\Share::PERMISSION_SHARE)); OC_User::setUserId($this->user4); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test1.txt')); + $this->assertEquals(array('test1.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); // Remove user from group OC_Group::removeFromGroup($this->user2, $this->group1); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); OC_User::setUserId($this->user4); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array()); + $this->assertEquals(array(), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); // Add user to group OC_Group::addToGroup($this->user4, $this->group1); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); // Unshare from self $this->assertTrue(OCP\Share::unshareFromSelf('test', 'test.txt')); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array()); + $this->assertEquals(array(), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); OC_User::setUserId($this->user2); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array('test.txt')); + $this->assertEquals(array('test.txt'), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); // Remove group OC_Group::deleteGroup($this->group1); OC_User::setUserId($this->user4); - $this->assertEqual(OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET), array()); + $this->assertEquals(array(), OCP\Share::getItemsSharedWith('test', Test_Share_Backend::FORMAT_TARGET)); OC_User::setUserId($this->user3); - $this->assertEqual(OCP\Share::getItemsShared('test'), array()); + $this->assertEquals(array(), OCP\Share::getItemsShared('test')); } } diff --git a/tests/lib/util.php b/tests/lib/util.php new file mode 100644 index 0000000000000000000000000000000000000000..23fe29036130ae7419f0bf99f0ccf2a724821daf --- /dev/null +++ b/tests/lib/util.php @@ -0,0 +1,45 @@ +<?php +/** + * Copyright (c) 2012 Lukas Reschke <lukas@statuscode.ch> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Util extends UnitTestCase { + + // Constructor + function Test_Util() { + date_default_timezone_set("UTC"); + } + + function testFormatDate() { + $result = OC_Util::formatDate(1350129205); + $expected = 'October 13, 2012, 11:53'; + $this->assertEquals($result, $expected); + + $result = OC_Util::formatDate(1102831200, true); + $expected = 'December 12, 2004'; + $this->assertEquals($result, $expected); + } + + function testCallRegister() { + $result = strlen(OC_Util::callRegister()); + $this->assertEquals($result, 20); + } + + function testSanitizeHTML() { + $badString = "<script>alert('Hacked!');</script>"; + $result = OC_Util::sanitizeHTML($badString); + $this->assertEquals($result, "<script>alert('Hacked!');</script>"); + + $goodString = "This is an harmless string."; + $result = OC_Util::sanitizeHTML($goodString); + $this->assertEquals($result, "This is an harmless string."); + } + + function testGenerate_random_bytes() { + $result = strlen(OC_Util::generate_random_bytes(59)); + $this->assertEquals($result, 59); + } +} \ No newline at end of file